全部博文(409)
发布时间:2015-05-27 11:00:50
1、复制表结构create table tb1 as select * from tb where rownum=0;2.复制表中的数据insert into tb1 select * from tb where rownum<3;此句中,不需要as,不需要values关键字。sqlserver、mysql不是这么写的。......【阅读全文】
发布时间:2015-05-26 14:24:44
通过delete数据,是不能降低hwm、不能释放表空间(一般情况下都是,极端情况下除外),但可以通过drop table tbname、truncate table tbname来释放表空间,而且执行效率非常高,远远超过delete。truncate之后,表结构还存在。hwm介绍:HWM(high water mark),高水标记,这个概念在segment的存储内容中是比较重要的.简单来.........【阅读全文】
发布时间:2015-05-20 18:42:42
[yangkai@localhost myshell]$ cat test_dh.exp #!/bin/bash/expect -fset ip 192.168.23.128set password 123456set timeout 3spawn ssh root@$ipexpect {"passw" {send "$password\r";exp_continue}#"de password: " {send "$password\r";exp_continue}"root@" {send "df -h /opt\r";exp_continue}}int.........【阅读全文】