單項選擇題oracle數(shù)據(jù)庫中,查看數(shù)據(jù)庫有哪些tablespace的SQL命令是()。

A.select TABLESPACE_NAME from user_tables;
B.select TABLESPACE_NAME from user_tablespaces;
C.select TABLESPACE_NAME from dba_tablespaces;
D.select TABLESPACE_NAME from dba_tables;


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題oracle數(shù)據(jù)庫中,查詢數(shù)據(jù)庫中某個表如TEST所在的表空間(tablespace)的SQL命令是()。

A.select tablespace_name from dba_tablespaces where table_name=’TEST’;
B.select tablespace_name from user_tables where table_name=’TEST’;
C.select tablespace_name from dba_tables where table_name=’TEST’;
D.select tablespace_name from user_tablespaces where table_name=’TEST’;

2.單項選擇題oracle數(shù)據(jù)庫中,快速清空一個大表(非drop表)的SQL命令是()。

A.truncate from table_name;
B.delete table table_name;
C.truncate table_name;
D.truncate table table_name;

3.單項選擇題oracle數(shù)據(jù)庫中,查詢TEST表一共有多少條數(shù)據(jù)的一般用什么SQL命令?()

A.select count from TEST;
B.select cnt from TEST;
C.select count(*)from TEST;
D.select cnt(*)from TEST;

5.單項選擇題oracle數(shù)據(jù)庫中,如何查詢當前用戶下有哪些表的SQL命令?()

A.select table_name from dba_tab;
B.select table_name from dba_tables;
C.select table_name from user_tables;
D.select table_name from user_tab;