Title: RE: Is it possible???

if you are on 8i, then you can define rules in product_user_profile for preventing users from using sql*plus.
like:
    -insert into system.product_user_profile(product, userid, attribute, char_value)
  2  values ('SQL*Plus', 'user', 'SELECT', 'DISABLED');

1 row created.

    -insert into system.product_user_profile(product, userid, attribute, char_value)
  2  values ('SQL*Plus', 'user', 'UPDATE', 'DISABLED');

1 row created.

    -insert into system.product_user_profile(product, userid, attribute, char_value)
  2  values ('SQL*Plus', 'user', 'DELETE' , 'DISABLED');

1 row created.

    -insert into system.product_user_profile(product, userid, attribute, char_value)
  2  values ('SQL*Plus', 'user', 'INSERT', 'DISABLED');

1 row created.

    -COMMIT;



rgds
amar

-----Original Message-----
From: Shahid Malik(IT) [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 25, 2001 10:20 AM
To: Multiple recipients of list ORACLE-L
Subject: Is it possible???


Hi Friends,


     I want that user only access data from application not from sql
prompt.

Any help would be highly appreciated.


Shahid.

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Shahid Malik(IT)
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to