多項(xiàng)選擇題oracle數(shù)據(jù)庫中,關(guān)于數(shù)據(jù)庫的啟動,下列說法正確的是()。

A.啟動第一步:startup命令后,顯示:ORACLE instance started,這就代表實(shí)例被啟動
B.啟動第二步:Database mounted,這一步控制文件被掛載,這時(shí)候我們可以從控制文件中得知另外兩大數(shù)據(jù)庫核心文件——數(shù)據(jù)文件和日志文件的位置
C.啟動第三步:Database opened,數(shù)據(jù)庫被打開。這一步Oracle會校驗(yàn)數(shù)據(jù)庫文件的一致性,檢查通過,才能正常打開數(shù)據(jù)庫
D.啟動第三步后:如果監(jiān)聽已經(jīng)正確啟動的話,那么就可以提供對外服務(wù)了


您可能感興趣的試卷

你可能感興趣的試題

1.多項(xiàng)選擇題oracle數(shù)據(jù)庫中,快速做一個和原表(old_table)一樣的備份表(new_table),可以使用以下哪些SQL命令?()

A.create table new_table as (select *from old_table);
B.create table new_table as select *from old_table where 1=1;
C.create table new_table as select *from old_table;
D.create table new_table as select from old_table where 1=1;

2.多項(xiàng)選擇題oracle數(shù)據(jù)庫中,什么時(shí)候需要用系統(tǒng)管理員DBA用戶登陸?()

A.創(chuàng)建、查看表空間
B.修改、刪除表空間
C.查看、修改系統(tǒng)參數(shù)
D.oracle數(shù)據(jù)庫打開,關(guān)閉

3.多項(xiàng)選擇題oracle數(shù)據(jù)庫中,將表名old_table修改表名為new_table的SQL命令是()。

A.alter table old_table rename new_table;
B.alter table old_table rename to new_table;
C.rename old_table to new_table;
D.rename old_table new_table;

4.多項(xiàng)選擇題oracle數(shù)據(jù)庫中,下列哪些是監(jiān)聽啟?;虿榭礌顟B(tài)相關(guān)命令?()

A.lsnrctl start
B.lsnrctl stop
C.lsnrctl status
D.lsnrctl restart

5.多項(xiàng)選擇題數(shù)據(jù)操縱語言(DML)命令用來改變數(shù)據(jù)庫中的數(shù)據(jù),它的基本語句有()。

A.CREATE(創(chuàng)建)
B.INSERT(插入)
C.UPDATE(修改)
D.DELETE(刪除)