DBAsupport.com Forums - Powered by vBulletin
Results 1 to 6 of 6

Thread: how to know the default tablespace?

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Posts
    26

    how to know the default tablespace?

    do have some sql to do?
    for example:
    i have the following tablespace:
    system
    temp
    users
    tools
    data
    ...

    how should i known which tablespace is the system default ?

  2. #2
    Join Date
    Feb 2000
    Location
    Singapore
    Posts
    1,758
    Code:
    SELECT property_value
    FROM database_properties
    WHERE property_name = 'DEFAULT_PERMANENT_TABLESPACE';
    Sanjay G.
    Oracle Certified Professional 8i, 9i.

    "The degree of normality in a database is inversely proportional to that of its DBA"

  3. #3
    Join Date
    Aug 2006
    Posts
    26
    Thanks

  4. #4
    Join Date
    Mar 2006
    Location
    Charlotte, NC
    Posts
    865
    what do you mean 'system default' ?

    Thanks,


    Quote Originally Posted by oldboy
    do have some sql to do?
    for example:
    i have the following tablespace:
    system
    temp
    users
    tools
    data
    ...

    how should i known which tablespace is the system default ?
    Vijay Tummala

    Try hard to get what you like OR you will be forced to like what you get.

  5. #5
    Join Date
    Aug 2006
    Posts
    26
    IT is the default tablespace when add new user dont specify default tablespace.

  6. #6
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    you can only have that in 10g by the way

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width