发布时间:2015-03-10 12:18:51
SQL> create tablespace test001 datafile '/u01/app/oracle/oradata/test001.dbf' size 1M autoextend on maxsize 10M;Tablespace created.SQL> alter database datafile '/u01/app/oracle/oradata/test001.dbf' resize 20M; Database altered.SQL>SQL> select AUTOEXTENSIBLE, MA.........【阅读全文】
发布时间:2015-03-05 23:52:13
### to check all the existing event rules [nz@vmtest ~]$ nzevent show |more Name On Event Type .........【阅读全文】
发布时间:2015-03-05 18:51:41
drop table test_a;create table test_a(name1 char(1));create table test_m(name1 char(1));select * from test_a;insert into test_a values('a');insert into test_a values('b');insert into test_a values('c');insert into test_a values('d');#### netezza cursor declarecur RECORD beginFOR cu.........【阅读全文】