View the Exhibit for some of the current parameter settings. A user logs in to the HR schema and issues the following commands:SQL> CREATE TABLE emp(empno NUMBER(3),ename VARCHAR2(20),sal NUMBER(8,2));SQL> INSERT INTO emp(empno,ename) VALUES(1,‘JAMES‘);At this moment, a second user also logs in to the HR schema and issues the following command:SQL> ALTER TABLE emp MODIFY sal NUMBER(10,2);What happens in the above scenario?()
A. The second user‘s session immediately produces the resource busy error.
B. The second user‘s command executes successfully.
C. The second user‘s session waits for a time period before producing the resource busy error.
D. A deadlock is created.
第1题:
A. Ctrl+Z
B.Ctrl+]
C.system-view
D.user-view
第2题:
A.system-view
B.router
C.quit
D.user-view
第3题:
在用户视图下键入什么命令可以切换到系统视图?
A.system-view
B.interface
C.quit
D.user-view
第4题:
A.错误
B.正确
第5题:
Who is that man over there? Do you know()name?
Ahis
Bhe’s
Che
第6题:
下列Moore型状态机采用Verilog语言说明部分正确的是:
A.parameter [2:0] s0=0, s1=1,s2=2,s3=3,s4=4; reg [2:0] current_state, next_state;
B.parameter [1:0] s0=0, s1=1,s2=2,s3=3,s4=4; reg [1:0] current_state, next_state;
C.TYPE FSM_ST IS (s0, s1,s2,s3,s4); SIGNAL current_state, next_state: FSM_ST;
D.typedef enum {s0, s1,s2,s3,s4} type_user; type_user current_state, next_state