vinodraj
Answered On : Jul 15th, 2011
Code
SELECT * FROM dba_ts_quotas;
-1 identicates the user has quota unlimited.
Login to rate this answer.
Rajashekar
Answered On : Sep 5th, 2011
suppose if we are in need of the users connected to a tablespace called abcdata 6the how to findut?
SELECT USERNAME, TABLESPACE_NAME FROM DBA_USERS WHERE TABLESPACE_NAME='ABCDATA';
this will display the users connected to the tablespace abcdata.
Login to rate this answer.
Sharfuddin
Answered On : Sep 29th, 2011
select username,default tablespace,temporary tablespace from dba_users;
This query executes only if following queries is run in mount stage
1. @ $ORACLE_HOME/rdbms/admin/catalog.sql
2. @ $ORACLE_HOME/rdbms/admin/catproc.sql
3 connect system/manager
@ $ORACLE_HOME/sqlplus/admin/pupbld.sql

1 User has rated as useful.
Login to rate this answer.