Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> 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:shahid.malik_at_pepsi-lahore.com.pk]
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)Received on Mon Jun 25 2001 - 02:09:02 CDT
INET: shahid.malik_at_pepsi-lahore.com.pk
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: ListGuru_at_fatcity.com (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).
![]() |
![]() |