Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?()
第1题:
A.DELETE * FROM TABLE T03
B.DELETE ALL FROM T03
C.DELETE * FROM T03
D.DELETE FROM T03
第2题:
A.REVOKE ALL PRIVILEGES FROM USER tom
B.REVOKE ALL ON EMPLOYEE FROM USER tom
C.REVOKE EXECUTE ON EMPLOYEE FROM USER tom
D.REVOKE PRIVILEGES ON EMPLOYEE FROM USER tom
第3题:
下列哪个语句将赋予用户John向表tab1中插入数据的权限?()
第4题:
Which of the following will DELETE all of the rows from table T03?()
第5题:
Which of the following statements allows USER1 to take away read access on the table ORG.TAB1 from USER2?()
第6题:
Assuming PUBLIC has been granted all privileges on table T1, which of the following statements would continue to permit any user to add rows to table T1, but not remove them?()
第7题:
Your database is in NOARCHIVELOG mode. After which two operations you should take the backup of control file?()
第8题:
The user HR owns the EMP table. The user HR grants privileges to the user SCOTT by using this command: SQL> GRANT SELECT,INSERT,UPDATE ON emp TO scott WITH GRANT OPTION; The user SCOTT executes this command to grant privileges to the user JIM: SQL> GRANT SELECT,INSERT,UPDATE ON hr.emp TO jim; Now, the user HR decides to revoke privileges from JIM using this command: SQL> REVOKE SELECT,INSERT,UPDATE ON emp FROM jim; Which statement is true after HR issues the REVOKE command()
第9题:
REVOKE ACCESS ON DATABASE FROM USER bob
REVOKE CONNECT ON DATABASE FROM USER tom
REVOKE tom FROM ACCESS ON DATABASE BY USER bob
REVOKE tom FROM CONNECT ON DATABASE BY USER bob
第10题:
It fails to delete the records because the records are locked in SHARE mode.
It deletes the rows successfully because the table is locked in SHARE mode
It fails to delete the records because the table is locked in EXCLUSIVE mode.
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
第11题:
REVOKE ALL PRIVILEGES FROM USER tom
REVOKE ALL ON EMPLOYEE FROM USER tom
REVOKE EXECUTE ON EMPLOYEE FROM USER tom
REVOKE PRIVILEGES ON EMPLOYEE FROM USER tom
第12题:
REVOKE DROP ON t1 FROM PUBLIC
REVOKE UPDATE ON t1 FROM PUBLIC
REVOKE DELETE ON t1 FROM PUBLIC
REVOKE CONTROL ON t1 FROM PUBLIC
第13题:
A.REVOKE ACCESS ON DATABASE FROM USER bob
B.REVOKE CONNECT ON DATABASE FROM USER tom
C.REVOKE tom FROM ACCESS ON DATABASE BY USER bob
D.REVOKE tom FROM CONNECT ON DATABASE BY USER bob
第14题:
A.REVOKE ADD, DELETE FROM USER tom ON TABLE tab1
B.REVOKE ADD, DELETE ON TABLE tab1 FROM USER tom
C.REVOKE INSERT, DELETE FROM USER tom ON TABLE tab1
D.REVOKE INSERT, DELETE ON TABLE tab1 FROM USER tom
第15题:
Which of the following statements is used to grant user TOM and Application team APPGRP the ability to add data to table TAB1?()
第16题:
Which of the following statements allows BOB to revoke access to the SAMPLE database from user TOM?()
第17题:
Which of the following statements is used to revoke all DML privileges on table EMPLOYEE from user TOM?()
第18题:
Given the following two tables: TAB1 C1 C2 1 Antarctica 2 Africa 3 Asia 4 Australia TAB2 CX CY 5 Europe 6 North America 7 South America Which of the following SQL statements will insert all rows found in table TAB2 into table TAB1?()
第19题:
User A executes the following command to drop a large table in your database:SQL> DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table:SQL> DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()
第20题:
User A executes the following command to drop a large table in your database: SQL> DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table: SQL> DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()
第21题:
REVOKE ADD, DELETE FROM USER tom ON TABLE tab1
REVOKE ADD, DELETE ON TABLE tab1 FROM USER tom
REVOKE INSERT, DELETE FROM USER tom ON TABLE tab1
REVOKE INSERT, DELETE ON TABLE tab1 FROM USER tom
第22题:
REVOKE SELECT FROM user2 ON TABLE org.tab1
REVOKE SELECT ON TABLE org.tab1 FROM user2
REVOKE READ ACCESS FROM user2 ON TABLE org.tab1
REVOKE READ ACCESS ON TABLE org.tab1 FROM user2
第23题:
It fails with a Resource Busy error.
It deletes the rows successfully because the table is locked in SHARE mode.
It fails to delete the records because the table is locked in EXCLUSIVE mode.
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.