|
#[/oracle] sqlplus acct/acct
SQL*Plus: Release 9.2.0.4.0 - Production on Tue Mar 9 13:42:01 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> create table test_d as select * from all_tables;
Table created.
SQL> alter table test_d disable table lock;
Table altered.
SQL> drop table test_d;
drop table test_d
*
ERROR at line 1:
ORA-00069: cannot acquire lock -- table locks disabled for TEST_D
SQL> alter table test_d enable table lock;
Table altered.
SQL> drop table test_d;
Table dropped.
SQL> select * from v$version where rownum = 1;
BANNER
--------------------------------------------------------------------------------
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
试了下 9.2.0.4 Linux 正常 |
|