Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to identify the tablespace being used by a user?

Status
Not open for further replies.

varajan

Technical User
Oct 5, 2001
42
IN
How to identify the tablespace being used by a user?
 
select distinct tablespace_name from user_segments
if you need all tablespaces where user's objects resides
or
select DEFAULT_TABLESPACE from dba_users where username = your_user
if you need only default tablespace
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top