![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Suppose you create a user and no default tablespace and no temporary tablespace are specified for the user. The DB does have a default tablespace and a default temporary tablespace. Where will the user's objects be stored? Where will the user's sort segments be stores? Thanks |
#3
| |||
| |||
|
|
create user grandmother identified by suckeggs; select default_tablespace,temporary_tablespace from user_users where username='GRANDMOTHER'; -- Niall Litchfield Oracle DBA Audit Commission UK "Peter" <peter (AT) nomorenewsspammin (DOT) ca> wrote in message news:5atifvs23kg77r7ke8k48js52n0740aubl (AT) 4ax (DOT) com... Suppose you create a user and no default tablespace and no temporary tablespace are specified for the user. The DB does have a default tablespace and a default temporary tablespace. Where will the user's objects be stored? Where will the user's sort segments be stores? Thanks |
#4
| |||
| |||
|
|
"Niall Litchfield" <n-litchfield (AT) audit-commission (DOT) gov.uk> wrote And the winner is ... SYSTEM TABLESPACE! |
#5
| |||
| |||
|
|
create user grandmother identified by suckeggs; select default_tablespace,temporary_tablespace from user_users where username='GRANDMOTHER'; -- Niall Litchfield Oracle DBA Audit Commission UK "Peter" <peter (AT) nomorenewsspammin (DOT) ca> wrote in message news:5atifvs23kg77r7ke8k48js52n0740aubl (AT) 4ax (DOT) com... Suppose you create a user and no default tablespace and no temporary tablespace are specified for the user. The DB does have a default tablespace and a default temporary tablespace. Where will the user's objects be stored? Where will the user's sort segments be stores? Thanks |
#6
| |||
| |||
|
|
Suppose you create a user and no default tablespace and no temporary tablespace are specified for the user. The DB does have a default tablespace and a default temporary tablespace. Where will the user's objects be stored? Where will the user's sort segments be stores? Thanks |
#7
| |||
| |||
|
|
Dusan Bolek wrote: "Niall Litchfield" <n-litchfield (AT) audit-commission (DOT) gov.uk> wrote in message news:<3ef97dd5$0$18490$ed9e5944 (AT) reading (DOT) news.pipex.net>... And the winner is ... SYSTEM TABLESPACE! Actually - it depends! Latest versions allow system wide defaults - and the OP did specify that these were set. |
#8
| |||
| |||
|
|
No, I don't think there's a system wide default for data tablespaces. Only for temp. In PROPS$ there is only DEFAULT_TEMP_TABLESPACE record, nothing for data. The syntax also supports setting default temp ts. The winner is system. SQL> select value$ from props$ where name like 'DEFAULT%'; VALUE$ ---------------------------------------------------------- TEMP SQL> create user x identified by x; User created. SQL> select default_tablespace, temporary_tablespace from dba_users where username = 'X'; DEFAULT_TABLESPACE TEMPORARY_TABLESPACE ------------------------------ ------------------------------ SYSTEM TEMP Tanel. "Hans Forbrich" <forbrich (AT) telusplanet (DOT) net> wrote in message news:3EF9C134.FA1E0C15 (AT) telusplanet (DOT) net... Dusan Bolek wrote: "Niall Litchfield" <n-litchfield (AT) audit-commission (DOT) gov.uk> wrote in message news:<3ef97dd5$0$18490$ed9e5944 (AT) reading (DOT) news.pipex.net>... And the winner is ... SYSTEM TABLESPACE! Actually - it depends! Latest versions allow system wide defaults - and the OP did specify that these were set. |
#9
| |||
| |||
|
|
On Wed, 25 Jun 2003 10:15:02 GMT, Peter <peter (AT) nomorenewsspammin (DOT) ca wrote: Suppose you create a user and no default tablespace and no temporary tablespace are specified for the user. The DB does have a default tablespace and a default temporary tablespace. Where will the user's objects be stored? Where will the user's sort segments be stores? Thanks Why do you keep asking questions which can be readily answered by *READING* the documentation, as opposed to just LOOKING at it, like you do? Why do you insist on being such an annoying bore? Are you by accident preparing for OCP and do you want to get all the correct answers from this group? GO AWAY, go bore some other forum Sybrand Bakker, Senior Oracle DBA To reply remove -verwijderdit from my e-mail address |
#10
| |||
| |||
|
|
I just want to stimulate discussions here. Reading the manual is nice but not as intelluectually stimulating as discussing openly here. Like I said before, I have read the manual several times. Thanks |
![]() |
| Thread Tools | |
| Display Modes | |
| |