Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1606599
  • 博文数量: 409
  • 博客积分: 6240
  • 博客等级: 准将
  • 技术积分: 4908
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-01 00:04
文章分类

全部博文(409)

文章存档

2021年(1)

2019年(1)

2017年(1)

2016年(13)

2015年(22)

2013年(4)

2012年(240)

2011年(127)

发布时间: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不是这么写的。......【阅读全文】

阅读(1497) | 评论(0) | 转发(0)

发布时间:2015-05-26 14:24:44

通过delete数据,是不能降低hwm、不能释放表空间(一般情况下都是,极端情况下除外),但可以通过drop table tbname、truncate table tbname来释放表空间,而且执行效率非常高,远远超过delete。truncate之后,表结构还存在。hwm介绍:HWM(high water mark),高水标记,这个概念在segment的存储内容中是比较重要的.简单来.........【阅读全文】

阅读(1875) | 评论(0) | 转发(0)

发布时间:2015-05-20 19:21:11

启动丽奴性,没有网络启动网卡......【阅读全文】

阅读(1272) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(1658) | 评论(0) | 转发(1)

发布时间:2015-05-07 11:17:59

......【阅读全文】

阅读(1608) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

milknunu2013-03-29 14:37

你真是运维技术牛人啊,我只做过linux培训,想好好学习运维,很佩服你,也想跟着你做事情,可以收留吗,

回复  |  举报
留言热议
请登录后留言。

登录 注册