自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 oracle 数据库模式对象,索引,序列,同义词,查看用户拥有的表,聚簇,数据库链接

数据库模式对象:   TABLE   表   用于存储数据的基本结构  VIEW    视图  以不同的侧面反映表的数据,是一种逻辑上的表  INDEX   索引  加快表的查询速度  CLUSTER 聚簇  将不同表的字段并用的一种特殊结构的表集合  SEQUENCE    序列  生成数字序列,用于在插入时自动填充表的字段  SYNONYM 同义词 为简化和便于记忆,给对象起的别名

2014-01-06 14:55:25 1257

原创 use Exists in sql

Exists is much like In but much more efficient select * from exl a where name like 'SMLS%' and not exists (select name from name_alias where name=a.name ) equal to select * from exl a

2013-10-18 09:43:55 349

原创 How to handle the space in column with awk?

It happens when check non version controlled files in SVN folder and some file names are with space like: ?      ABC DEF ?      HIUHOJ ?      NDJIH JI The main point is to get the file name li

2013-10-15 15:20:28 425

原创 How to kill session by keywords?

keywords="install" session_list=ps -ef | grep "${keywords}" | awk '{print $2}' for session in ${session_list[*]} do kill -9 $session  if [ $? != 0 ];then echo kill $session successfully el

2013-10-10 11:38:45 410

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除