2.从其他Web Agent服务的OWA数据库用户的模式下删除工具箱的PL/SQL包,假如 你已经安装了这些包的话。 connect / drop package HTF; drop package HTP; drop package OWA_UTIL; drop package OWA; 3. 向其他Web Agent服务的OWA数据库用户授与在这些PL/SQL包上的EXECUTE权限。 connect / grant execute on HTF to ; grant execute on HTP to ; grant execute on OWA_UTIL to ; grant execute on OWA to ; 4. 在所有的OWA数据库用户中建立工具箱PL/SQL包的同义词。 connect / create synonym HTF for .HTF; create synonym HTP for .HTP; create synonym OWA_UTIL for .OWA_UTIL; create synonym OWA for .OWA; Security Note 安全要点 PL/SQL 过程以PL/SQL代码的创建者的权限运行。 对于Developer''s Toolkit, 这只关系到owa_util包. 两个子程序, showsource和tableprint,存取用户的数据。此包上的执行权限只能授给答应访问owa_util拥有者的表,视图和PL/SQL存储代码的拥护。
假如你的安装要考虑安全问题,为每个OWA数据库用户安装独立的owa_util包。
作此事的脚本如下:
PUBUTIL.SQL PRIVUTIL.SQL 它们都在OWS治理目录下,应按所列的顺序执行。 List Tags 列表标记 List tags allow you to display information in any of the following ways:
ordered: these lists have numbered items unordered: these lists have bullets to mark each item definition: these lists alternate a term with its definition Note: All the hypertext procedures (HTP) shown in this section are also available as hypertext functions (HTF).
htp.listHeader 语法 htp.listHeader (ctext, cattributes); 作用 Prints an HTML tag at the beginning of the list 参数 ctext in varchar2 cattributes in varchar2 DEFAULT NULL Generates ctext
htp.listItem 语法 htp.listItem (ctext, cclear, cdingbat, csrc, cattributes); 作用 Prints an HTML tag that formats a listed item. 参数 ctext in varchar2 DEFAULT NULL cclear in varchar2 DEFAULT NULL cdingbat in varchar2 DEFAULT NULL csrc in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
ctext
htp.ulistOpen 语法 htp.ulistOpen (cclear, cwrap, cdingbat, csrc, cattributes); 作用 Prints an HTML tag that is used to open an unordered list that presents listed items separated by white space and marked off by bullets. 参数 cclear in varchar2 DEFAULT NULL cwrap in varchar2 DEFAULT NULL cdingbat in varchar2 DEFAULT NULL csrc in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
htp.ulistClose 语法 htp.ulistClose; 作用 Prints an HTML tag that ends the unordered list. 参数 none Generates
htp.olistOpen 语法 htp.olistOpen (cclear, cwrap, cattributes); 作用 Prints an HTML tag that is used to open an ordered list that presents listed items marked off with numbers. 参数 cclear in varchar2 DEFAULT NULL cwrap in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
htp.olistClose 语法 htp.olistClose; 作用 Prints an HTML tag that ends an ordered list. 参数 none Generates
htp.dlistOpen 语法 htp.dlistOpen (cclear, cattributes); 作用 Prints an HTML tag that starts a definition list 参数 cclear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
htp.dlistClose 语法 htp.dlistClose 作用 Prints an HTML tag that Ends a definition list 参数 none Generates
作用 Prints an HTML tag that is used to insert terms, and their corresponding definitions in an indented list format. The htp.dlistTerm must immediately follow this tag. 参数 ctext in varchar2 DEFAULT NULL clear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
ctext
htp.dlistTerm 语法 htp.dlistTerm (ctext, cclear, cattributes); 作用 Prints an HTML tag used to insert the definition term inside the definition list. This tag must immediately follow the htp.dlistDef. 参数 ctext in varchar2 DEFAULT NULL cclear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL Generates
ctext
htp.menulistOpen 语法 htp.menulistOpen; 作用 Prints an HTML tag that begins a list that presents one line per item, and appears more compact than an unordered list. The htp.listItem will follow this tag. 参数 none Generates