Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> BITAND function???
Hi,
Any idea, what BITAND function does?
Following is a query which is used to list the names of all reverse key indexes:
SVRMGR> SELECT o.object_name
2> FROM dba_objects o 3> WHERE owner='SCOTT' 4> AND o.object_id IN (SELECT i.obj# 5> FROM ind$ i 6> WHERE BITAND(i.property,4) = 4);
OBJECT_NAME
TIA,
Sandeep.
Riyadh, Saudi Arabia.
Received on Wed Aug 02 2000 - 17:37:51 CDT