自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

KIN ORACLE

Amateurs practice until they get it right, professionals practice until they can't get it wrong.

  • 博客(7)
  • 资源 (2)
  • 收藏
  • 关注

原创 查询Oracle使用的特性

select name,detected_usages from dba_feature_usage_statistics where detected_usages>0;

2012-06-26 12:57:56 583

原创 MySQL存储过程执行拼接语句

delimiter // create procedure sp_concat() begin declare v_date varchar(4000); declare v_sql varchar(4000); set v_date =(select date_format(now(),'%Y%m%d%H%s%i')); set @v_date =v_date; set v_sql

2012-06-18 22:58:33 1915

原创 Linux开放端口服务

vi /etc/sysconfig/iptables   -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306  -j ACCEPT -A INPUT -s  ip-address  -j ACCEPT   service iptables restart

2012-06-18 14:39:07 623

转载 Oracle估算表大小的小方法

1.创建测试表和索引 SQL> create table t as select * from dba_objects; Table created.   SQL> create index t_ind on t(object_id); Index created.   2.收集统计信息 SQL> exec dbms_stats.gather_table_stats(user,'t

2012-06-13 14:17:56 1776

原创 iperf使用方法

网上看到一测网络带宽的小工具iperf 记录下使用方法. mkdir /usr/local/iperf make && make install   Server: iperf -s Client: iperf -c server IP

2012-06-07 16:18:24 1496 2

原创 Oracle 11g sqlplus error

Platform:CentOS5.5(64bit)+Oracle11g(11.2.0.1)   sqlplus: error while loading shared libraries: /oracle/ora11g/lib/libclntsh.so.11.1: cannot restore segment prot after reloc: Permission denied   So

2012-06-07 09:41:24 683

原创 CentOS6(64bit)sysbench-0.4.12安装注意事项

折腾两天终于把这个软件软件装上,记录一下,同时也让大家少走弯路. 步骤: 1.tar xzvf sysbench-0.4.12.tar.gz 2../autogen.sh 3.vim aclocal.m4 # Always use our own libtool. LIBTOOL='$(SHELL) /usr/bin/libtool' AC_SUBST(LIBTOOL)dnl 问题

2012-06-02 15:38:53 2136

data Guard Concepts and Administration

data Guard Concepts and Administration

2011-08-31

空空如也

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

TA关注的人

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