当前位置: 代码迷 >> Oracle认证考试 >> 50分提问OCA解决方法
  详细解决方案

50分提问OCA解决方法

热度:5557   发布时间:2013-02-26 00:00:00.0
50分提问OCA

159. View the Exhibit.
The DBA creates a new user as follows:
SQL> CREATE USER manfus IDENTIFIED BY manfus TEMPORARY TABLESPACE temp;
User manfus creates a table as follows:
SQL> CREATE TABLE material (id NUMBER (3));
In which tablespace will the material table be created? 
   
 答案是:C, 我奇怪为什么不是A,因为此时,USER manfus 被分配给了临时表空间? 
   
A) TEMP
B) PROD
C) USERS
D) SYSAUX
E) SYSTEM


------解决方案--------------------------------------------------------
因为建ACCOUNT时没有指定表空间,所以当创建表时会放在默认的表空间Users下面
http://space.itpub.net/7199859/viewspace-262946
引用楼主 ladamansuosi 的帖子:
159. View the Exhibit.
The DBA creates a new user as follows:
SQL> CREATE USER manfus IDENTIFIED BY manfus TEMPORARY TABLESPACE temp;
User manfus creates a table as follows:
SQL> CREATE TABLE material (id NUMBER (3));
In which tablespace will the material table be created?

答案是:C, 我奇怪为什么不是A,因为此时,USER manfus 被分配给了临时表空间? 

A) TEMP
B) PROD

  相关解决方案