Skip Headers

Oracle® Database Application Developer's Guide - Expression Filter
10g Release 1 (10.1)
Part Number B10821-01
Go to Table of Contents
Contents
Go to Docum
entation Home
Home
Go to Book List
Book List
Go to Index
Index
Go to Master Index
Master&nb sp;Index
Go to Feedback page
Feedback

Go to previous page
Previous
Go to next page
< font size="-2">Next
View PDF

Preface

Oracle Database Application Develope r's Guide - Expression Filter provides usage and reference information about Expression Filter, a feature of Oracle Database tha t stores, indexes, and evaluates conditional expressions in relational tables.

Audience

Application developers and DBAs can save time and labor by using Oracle Expr ession Filter to store and evaluate large sets of conditional expressions in the database. Conditional expressions can describe busin ess rules and interests in expected data for applications involving personalized information distribution, demand analysis, and task assignment.

Documentation Accessibility

Our goal is to make Oracle products, services, and supporting documentation accessible, with good usability, to the disabled community. To that end, our documentation includes features that make information available to users of assistive technology. This d ocumentation is available in HTML format, and contains markup to facilitate access by the disabled community. Standards will continue to evolve over time, and Oracle Corporation is actively engaged with other market-leading technology vendors to address technical ob stacles so that our documentation can be accessible to all of our customers. For additional information, visit the Oracle Accessibili ty Program Web site at

http://www.oracle.com/accessibility/

Accessibility of Code Examples in Documentation< /font>

JAWS, a Windows screen reader, may not always correctly read the code examples in this document. The conventions for w riting code require that closing braces should appear on an otherwise empty line; however, JAWS may not always read a line of text th at consists solely of a bracket or brace.

Acce ssibility of Links to External Web Sites in Documentation

This documentation may contain links to Web sites of other c ompanies or organizations that Oracle Corporation does not own or control. Oracle Corporation neither evaluates nor makes any represe ntations regarding the accessibility of these Web sites.

Related Documentation

Refer to the following documentation for information about related products:

Printed documentation is available for sale i n the Oracle Store at

http://oraclestore.oracle.com/

To downl oad free release notes, installation documentation, white papers, or other collateral, please visit the Oracle Technology Network (OT N). You must register online before using OTN; registration is free and can be done at

http://otn.oracle.com/membership/

If you already have a username and password for OTN, then you can go d irectly to the documentation section of the OTN Web site at

http://otn.or acle.com/documentation/

Conventions

This section describes the conventions used in the text and code examples of thi s document. The following table describes those conventions and provides examples of their use.

< /tr>
Convention Meaning Example
[ ] Brackets enclo se one or more optional items. Do not enter the brackets. DECIMAL (< code>digits [ , precision ])
{ } Braces enclose two or more items, on e of which is required. Do not enter the braces. {ENABLE | DISABLE}
|
A vertical bar represents a choice of two or more options within brackets or braces. Enter one of the options. Do not enter t he vertical bar. {ENABLE | DISABLE}

[COMPRESS | NOCOMPRESS]

... Horizontal ellipsis points indicate either:
  • That we have omitted parts of the code that are not directly related to the example

  • That you can repeat a portion of the code

CREATE TABLE ... AS subquery;< /p>

SELECT col1, col2, ... , coln FROM employees;

.

.

.

Vertical ellipsis points indicate that we have omitted several lin es of code not directly related to the example.
Bold Bold typeface indicates terms that are defined in the text or terms that appear in a glossary, or both. When you specify this clause, you create an index-organized table.
UPPERCASE monospace (fixed-width font) Uppercase monospace typeface indicates elements supplied by the system. You can back up the database by using the BACKUP command.

Query the TABLE_NAME column in the < code>USER_TABLES data dictionary view.

Use the DBMS_STATS.GENERATE_STATS procedure.

lowercase monospace (fixed-width font) Lowercase monospace typeface indicates executables, filenames, directory names, an d sample user-supplied elements. Enter sqlplus to open SQL*Plus.

Bac k up the datafiles and control files in the /disk1/oracle/dbs directory.

The department_id, de partment_name, and location_id columns are in the hr.departments table.

lowercase monospace (fixed-width font) italic Lowercase monospace italic font represents placeholders or variables. You can specify the parallel_clause.

Run Uold_re lease.SQL where old_release refers to the release you installed prior to upgrading.