多项选择题
A.启动第一步:startup命令后,显示:ORACLE instance started,这就代表实例被启动B.启动第二步:Database mounted,这一步控制文件被挂载,这时候我们可以从控制文件中得知另外两大数据库核心文件——数据文件和日志文件的位置C.启动第三步:Database opened,数据库被打开。这一步Oracle会校验数据库文件的一致性,检查通过,才能正常打开数据库D.启动第三步后:如果监听已经正确启动的话,那么就可以提供对外服务了
oracle数据库中,快速做一个和原表(old_table)一样的备份表(new_table),可以使用以下哪...
多项选择题oracle数据库中,快速做一个和原表(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;
oracle数据库中,什么时候需要用系统管理员DBA用户登陆?()A.创建、查看表空间B.修改、删除表空间C....
多项选择题oracle数据库中,什么时候需要用系统管理员DBA用户登陆?()
A.创建、查看表空间B.修改、删除表空间C.查看、修改系统参数D.oracle数据库打开,关闭
oracle数据库中,将表名old_table修改表名为new_table的SQL命令是()。A.alter ...
多项选择题oracle数据库中,将表名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;