要以自身的模式创建私有同义词,用户必须拥有()系统权限。
第1题:
A.GRANT CREATE ANY TABLE test
B.GRANT CREATE ANY TABLE TO test
C.TAKE CREATE ANY TABLE TO test
D.ALTER CREATE ANY TABLE TO test
第2题:
SQL中创建数据库模式应使用()语句。
第3题:
当需要创建用户时,可以使用如下()语句来完成。
第4题:
以下哪项是系统权限()
第5题:
创建索引使用的语句是()
第6题:
SQL中使用()语句创建索引。
第7题:
假设在数据库中创建了用户test,需要为其授予CREATE ANY TABLE系统权限,可以使用如下()语句。
第8题:
在Oracle中,你以SYSDBA登录,CUSTOMER表位于Mary用户方案中,下面哪条语句为数据库中的所有用户创建CUSTOMER表的同义词()。
第9题:
Mary has a view called EMP_DEPT_LOC_VU that was created based on the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. She granted SELECT privilege to Scott on this view. Which option enables Scott to eliminate the need to qualify the view with the name MARY .EMP_DEP_LOC_VU each time the view is referenced?()
第10题:
想在另一个模式中创建表,用户最少应该具有什么系统权限?()
第11题:
Mary has a view called EMP_DEPT_LOC_VU that was created based on the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. She granted SELECT privilege to Scott on this view. Which option enables Scott to eliminate the need to qualify the view with the name MARY .EMP_DEP_LOC_VU each time the view is referenced?()
第12题:
对用户所有的“雇员”表创建一个公用同义词
对您所有的“雇员”表创建一个私有同义词
对用户Sam所有的“雇员”表创建一个公用同义词
对用户Sam所有的“雇员”表创建一个私有同义词
第13题:
A.CREATE USER
B.CREATE ROLE
C.CREATE PROCESS
D.CREATE LOGIN
第14题:
在Mary的方案中已经存在“客户”表。应使用哪条语句来为所有数据库用户创建一个“客户”表的同义词()
第15题:
下面哪些SQL命令向名为ACCTSUPER的用户授予系统权限()
第16题:
创建模式的语句是()
第17题:
SQL语言中使用()语句创建视图。
第18题:
可以创建视图的是()
第19题:
User Mary has a view called EMP_DEPT_LOC_VU that was created based on the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. She has the privilege to create a public synonym, and would like to create a synonym for this view that can be used by all users of the database.Which SQL statement can Mary use to accomplish that task?()
第20题:
假设需要回收为用户test授予的CREATE ANY TABLE系统权限,可以使用如下()语句。
第21题:
You are granted the CREATE VIEW privilege. What does this allow you to do?()
第22题:
Mary has a view called EMP_DEPT_LOC_VU that was created based on the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. She granted SELECT privilege to Scott on this view. Which option enables Scott to eliminate the need to qualify the view with the name MARY.EMP_DEPT_LOC_VU each time the view is referenced?()
第23题:
Scott can create a synonym for the EMP_DEPT_LOC_VU bus using the command: CREATE PRIVATE SYNONYM EDL_VU FOR mary. EMP DEPT_LOC_VU; then he can prefix the columns with this synonymn.
Scott can create a synonym for the EMP_DEPT_LOC_VU by using the command: CREATE SYNONYM EDL_VU FOR mary. EMP DEPT_LOC_VU; then he can prefix the columns with this synonym.
Scott can create a synonym for the EMP_DEPT_LOC_VU by using the command: CREATE LOCAL SYNONYM EDL_VU FOR mary. EMP DEPT_LOC_VU; then he can prefix the columns with this synonym.
Scott cannot create a synonym because synonyms can be created only for tables.
Scott cannot create any synonym for Mary's view. Mary should create a private synonym for the view and grant SELECT privilege on that synonym to Scott.