Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Function Index

RE: Function Index

From: Justin Cave <justin_at_askddbc.com>
Date: Mon, 26 Jul 2004 14:33:48 -0600
Message-Id: <20040726200951.853A672CB97@turing.freelists.org>


Very odd... That's not what I see on my 9i box. Though I do have a different patchset than you.

Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.1.0 - Production

SQL> create user abc identified by abc
  2 ;

User created.

SQL> grant create session, create table to abc;

Grant succeeded.

SQL> alter user abc default tablespace users;

User altered.

SQL> grant unlimited tablespace to abc;

Grant succeeded.

SQL> conn abc/abc
Connected.
SQL> create table x ( col1 VARCHAR2(100) );

Table created.

SQL> create index x_idx on x( UPPER( col1 ) ); create index x_idx on x( UPPER( col1 ) )

                                *

ERROR at line 1:
ORA-01031: insufficient privileges

SQL> conn sys as sysdba
Enter password: ******
Connected.
SQL> grant query rewrite to abc;

Grant succeeded.

SQL> conn abc/abc
Connected.
SQL> create index x_idx on x( UPPER( col1 ) );

Index created.

Justin Cave
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC

-----Original Message-----

From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Fuad Arshad
Sent: Monday, July 26, 2004 2:30 PM
To: oracle-l_at_freelists.org
Subject: RE: Function Index

no special privileges required on 9i
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production With the Partitioning option JServer Release 9.2.0.4.0 - Production SQL> create user abc identified by abc;
User created.
SQL> grant create session to abc;
Grant succeeded.
SQL> grant create table to abc;
Grant succeeded.
SQL> alter user abc default tablespace users; User altered.
SQL> grant unlimited tablespace to abc;
Grant succeeded.

SQL> connect abc/abc;
Connected.    

SQL> create table abc (abc1 varchar2(100)); Table created.
SQL> create index abc_index on abc (upper(abc1)); Index created.
SQL>
SQL> show parameter query

NAME                                 TYPE        VALUE

------------------------------------ -----------
------------------------------
query_rewrite_enabled string FALSE query_rewrite_integrity string enforced
SQL> Hamid Alavi <hamid.alavi_at_quovadx.com> wrote: I am running on Oracle 9.2.0.1 on Windows but still without special = privs user can not create any function index!

Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html


Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
Received on Mon Jul 26 2004 - 15:35:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US