Lightweight Directory Access Protocol (LDAP) is a network protocol for managing directories often used to implement user databases or telephone directories. Here is a list of common LDAP attributes.
To track down pages in Oracle Portal that contain no content you can use the following query. It counts items on a specified page and all its subpages. Those with a count of zero can be identified.
When users have created hundreds of pages it is useful to be able to delete empty pages without have to search for them individually. This script can identify and delete empty pages using PLSQL.
The following query can be used to return all the Oracle Portal pages within a particular page branch, including the level at which they appear in the tree.
The following PLSQL code creates a database function that counts the number of sub-pages on a page (folder) in Oracle Portal. This function can then be called whenever a sub-page count is required.
The following PLSQL code creates a database function that counts the number of items on a page in Oracle Portal. This function can then be called whenever an item count is required.
While developing Oracle applications you may come across any number of error codes. The following PLSQL code can generate the appropriate error message for a group of error codes.
If you need to break up a delimited string within PLSQL into parts then you can use DBMS_UTILITY.comma_to_table. This function breaks up a comma delimited string.
You can create, delete and view browser cookies within PLSQL using an Oracle Web Agent (OWA) package called "owa_cookie". This package can be used within APEX if required.
In PL/SQL, a warning or error condition is called an exception. Exceptions can be predefined or they can be user defined. This article explains how you can define and use your own custom exceptions.