`
文章列表
#!/usr/bin/perl open(group,"<./source/group.unl") or die "group.unl file is not exists\n"; open(corpinfo,">./data/corpinfo.txt") or die "error $1\n"; open(user,"<./source/user.unl") or die "user.unl file is not exists\n"; open(corpm ...
转至:http://www.51testing.com/?uid-280547-action-viewspace-itemid-216224 方案一: ORA-04030:在尝试分配...字节 (hash-join subh,kllcqas:kllsltba) 时进程内存不足。 ORA-04030:out of process memory when trying to allocate string bytes ORA-04030的出现原因及解决方法: ORA-04030出现的基本都是过多的使用memory造成的 Oracle process使用的内存数量是有一定限制的: A. 对于32 BI ...
转:http://blog.chinaunix.net/u/4325/showart_185446.html -------创建表空间 CREATE TABLESPACE MT_MSG_TAB DATAFILE '/data/oracle/product/oradata/orcl/MT_TAB/mt_msg_tab01.dbf' SIZE 2000M DEFAULT STORAGE ( INITIAL 4M NEXT 4M MINEXTENTS 2 MAXEXTENTS UNLIMITED PCTINCREASE 0); alter tablespace DCS_INDEX_SPACE add ...
#!/bin/bash # #date:2010/08/24 #fileName:Demo.sh #----------------------------- 第一题------------------------ function_one() { #判断文件是否存在 if ! [ -e $1 ] then echo "files is not exist" exit fi #获取文件后缀 #-F. 表示以短点为分隔符 #print 表示打印 $NF 当前中的记录数 post ...
oracle 11g使用的是jdk1.5,jdk1.5以后有了一个简便方法来解决这个问题,只需在$JAVA_HOME/jre/lib/fonts/下建一个fallback目录,把你想在java中使用的字体复制到这个目录中即可,在oracle用户下: $ mkdir $ORACLE_HOME/jdk/jre/lib/fonts/fallback 把windows下的字体文件simsun.ttc复制到$ORACLE_HOME/jdk/jre/lib/fonts/fallback目录下并改名 simsun.ttf(注意ms的simsun字体是有版权的,所以商用换其他字体),相应的权限改为oracl ...

打印菱形

初学 shell ,这不刚看到 shell 的控制结构,作为练习写了一DEMO 打印菱形,具体如下: #!/bin/bash echo -n "Please enter number:" read k i=1 #获取中线 count=`expr $k / 2 + $k % 2` #算出中线下行要打印的个数 n=`expr $k - 2` while [ $i -le $k ] do # 判断是否到中线下行 if test $i -gt $count then num=`expr $i - $count` #算出要打印 ...
drop tablespace index including contents cascade constraints; create tablespace index            datafile '/opt/oracle/oradata/raw1' size 200m reuse autoextend on next 512k maxsize unlimited,                     '/opt/oracle/oradata/raw2' size 200m reuse autoextend on next 512k maxsize unlimited,    ...

sql load

sql load 的使用 1、编辑控制文件 xxx.ctl load data                     -- 控制文件标识 infile 'test.txt'             -- 要导入的文件(可以有多个) infile 'test1.txt'     badfile 'bad.txt'             -- 记录无效的数据 append into table tablename   -- 导入那张表, fields terminated by ','         (sql_id,sql_name)             -- 对应的 ...
dbcp 学习记录   1、加载驱动    Class.forName("oracle.jdbc.driver.OracleDriver");   2、创建连接池        GenericObjectPool connectionPool = new GenericObjectPool(null);     connectionPool.setMaxIdle(5); //最大空闲连接数     connectionPool.setMaxWait(1000); //最大等待时间,单位毫秒     connectionPool.setMaxActive(10); //最 ...
1、以root用户 登录 设置系统内核参数 # vi /etc/sysctl.conf   增加如下: fs.file-max = 6553600 kernel.shmall = 2097152 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range=1024 65000 net.core.rmem_default = 4194304 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 262144 #ker ...

oracle utl_file

create or replace directory UTL_FILE_DIR as '/home/websms/utl_file'; --该目录所属组必须为:oracle:dba grant read, write on directory exp_dir to eygle; --赋予读写的权限 CREATE OR REPLACE PROCEDURE emp2file IS   fileID  utl_file.file_type;  BEGIN    fileID := utl_file.fopen('UTL_FILE_DIR', 'example.txt', 'a'); -- ...
最近研究了下,用oracle 怎么生成 xml 的方法,具体如下: ---将数据库中数据 转成 xml ----- create or replace procedure table2xml is   cursor  person_cur is select * from people;   person_data people%rowtype;   doc  xmldom.DOMDocument;   main_node xmldom.DOMNode;   root_node xmldom.DOMNode;   item_node xmldom.DOMNode;   person_node ...
======对进程的管理========== 结束一个进程(可根据进程对应的PID) wmic process where name="notepad.exe" delete wmic process where name="notepad.exe" terminate wmic process where pid="123" delete wmic path win32_process where "name='notepad.exe'" delete 创建一个进程 wmic process cal ...
在oracle 里为了解决误删除或误更改的“尴尬”;请使用Flashback ,在oracle9i以后都有这个特性;Flashback 就不多介绍,主要看下怎么用。 假设我误删掉xxx的所有的数据,假设当前距离删除数据已经有10分钟左右的话: select * from xxxx as of timestamp sysdate 10/1440 通过这个语句可以查看到10之前的记录,这时想恢复这些数据不是很容易吗,呵呵 insert into xxx select * from xxxx as of timestamp sysdate 10/1440就这样数据完全恢复。
snmputil walk 对方ip public .1.3.6.1.2.1.25.4.2.1.2 列出系统进程 snmputil walk 对方ip public .1.3.6.1.4.1.77.1.2.25.1.1 列系统用户列表 snmputil get 对方ip public .1.3.6.1.4.1.77.1.4.1.0 列出域名 snmputil walk 对方ip public .1.3.6.1.2.1.25.6.3.1.2 列出安装的软件 snmputil walk 对方ip public .1.3.6.1.2.1.1 列出系统信息 Snmputil知识      ...
Global site tag (gtag.js) - Google Analytics