Oracle
摘要: EXEC sp_configure 'remote query timeout', 0 ;
GO
RECONFIGURE ;
GO
阅读全文
摘要: 1. 用户提交
2. 有1/3重做日志缓冲区未被写入磁盘
3. 有大于1M的重做日志缓冲区未被写入磁盘
4. 每隔3 秒钟
5. DBWR 需要写入的数据的SCN大于LGWR记录的SCN,DBWR 触发LGWR写入。
阅读全文
摘要: 关闭oracle api 异常侦测 sqlnet.ora
DIAG_ADR_ENABLED=FALSE
DIAG_DDE_ENABLED=FALSE
DIAG_SIGHANDLER_ENABLED=FALSE
DIAG_RESTRICTED=FALSE
阅读全文
摘要: 分析表空间
execute dbms_stats.gather_schema_stats('CORE');
阅读全文
摘要: select * from tables() ;
function 返回成游标
select function(a) from dual ;
阅读全文
摘要: 1.port 被占用了
360看看 kill掉
ps -ax
netstat -an
2. host 主机解析出了问题 linux 上
阅读全文
摘要: 时间
select
trunc(86400*
(to_date('2009-1-1 23:15:01','yyyy-mm-dd hh24:mi:ss') -
to_date('2009-1-1 23:10:00','yyyy-mm-dd hh24:mi:ss'))
)
from dual ;
阅读全文
摘要: plsql developer plsql 调试无法 ..包没加入所有的函数的定义到 包头文件定义.
阅读全文
摘要: lsnrctl services
阅读全文
摘要: 左连接 .如果一边的没有记录, nvl (右边,0) 否则会造成整列无法,无数据.
select d.crunit_ - nvl( a.stkamt_ ,0)
from dl_fundetf d ,
(select c.stkcode_, c.exchgcode_,c.stkamt_ ,c.stkcost_
from acc_proflstk c
where 1=1
and c.fundid_ = '55'
and c.cellid_ = '50001'
and c.proflid_ = '080724113732'
) a
where 1=1
and d.exchgcode_ = 'SH'
and d.fundid_ = '510051'
and a.exchgcode_ (+)= d.exchgcode_
and a.stkcode_ (+)= d.fundid_
阅读全文
摘要: iSQL*Plus URL: -----一般重装 都没问题
http://localhost:5560/isqlplus
系统服务:
iSQL*Plus Application Server
F:\oracle\product\10.2.0\db_1\bin\isqlplussvc.exe
从装会有 问题 ,特别是 主机名修改了.......比较麻烦的
Enteprise Manager 10g Database Control URL:
http://localhost:5500/em
看我修理 .......的文章 ............
OracleDBConsoleidmp
F:\oracle\product\10.2.0\db_1\bin\nmesrvc.exe
阅读全文
摘要: 在脚本中用
SQL> set define off;
是把默认的&绑定变量的功能取消, 可以把'&字符'当成普通字符处理
SQL> set define on;
打开&绑定变量的功能, &后面的字符串当变量使用.
SQL> show define;
阅读全文
摘要: 先备份一下 C:\oracle\product\10.2.0\db_2\dbs
SPFILEIDMP.ORA
alter system set open_cursors=600 scope=spfile;
阅读全文
摘要: select userenv('LANGUAGE'),
userenv('ISDBA'),
userenv('SESSIONID'),
userenv('ENTRYID'),
userenv('LANG'),
userenv('INSTANCE'),
userenv('terminal')
FROM DUAL
阅读全文
摘要: select to_char ( systimestamp , 'yyyy:mm:dd-hh24:mi:sssss' ) from dual ;
SELECT to_char(systimestamp,'YYYY-MM-DD HH24:MI:SS.FF3') FROM DUAL ;
阅读全文
摘要: for 定制循环次数
while 动态判断 条件
阅读全文
Full Oracle Archive