Linux 下安装oracle数据库
摘要:原文出处 http://www.linuxidc.com/Linux/2015-02/113222.html需要安装OracleDataGuard,所以先要安装单台Oracle11g,下面是Linux下单台Oracle11g的详细安装过程。1,安装环境硬件环境:2台linux虚拟机,CentO...
阅读全文
在CentoOS中安装g++ 并连接Oracle数据库
摘要:1、安装运行环境# yum install gcc-c++备注:此时会将gcc-c++和libstdc++-devel都安装上。2、查看g++是否安装成功[root@MyRHEL 桌面]# g++ -v使用内建 specs。目标:x86_64-RedHat-linux配置为:../configure...
阅读全文
PL/SQL文档
摘要:http://www.oracle.com/technetwork/database/features/plsql/index.html注册表学习http://itlab.idcquan.com/windows/Special/registry/Index.html
阅读全文
oracle spoof用法
摘要:关于SPOOL(SPOOL是SQLPLUS的命令,不是SQL语法里面的东西。)对于SPOOL数据的SQL,最好要自己定义格式,以方便程序直接导入,SQL语句如:select taskindex||'|'||commonindex||'|'||tasktype||'|'||to_number(to_c...
阅读全文
查看并设置oracle并发连接数
摘要:1.Sql代码1.select count(*) from v$process select count(*) from v$process --当前的数据库连接数2.Sql代码1.select value from v$parameter where name = 'processes' sele...
阅读全文