Skip Headers

Oracle® OLAP DML Reference
10g Release 1 (10.1)

Part Number B10339-02
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Feedback

Go to previous page
Previous
Go to next page
Next
View PDF

LIKECASE

The LIKECASE option controls whether the LIKE operator is case sensitive.

Data type

BOOLEAN

Syntax

LIKECASE = {YES|NO}

Arguments

YES

Specifies that the LIKE operator is case sensitive. (Default)

NO

Specifies that the LIKE operator is not case sensitive.

Notes


Newline Characters

The LIKENL option controls whether the LIKE operator recognizes newline characters.

Examples

Example 15-40 The Effect of LIKECASE

The following statements show the use of the LIKECASE option.

LIKECASE = YES
SHOW 'oracle' LIKE 'Oracle%'

The output of this SHOW command is

NO

The SHOW command

SHOW 'ORACLE' LIKE '%orc%'

produces the following output.

NO

The statements

LIKECASE = NO
SHOW 'ORACLE' like 'orc%'

produce the following output.

YES