摘要:
阅读全文
posted @ 2015-12-31 06:32
赵长青
阅读(254)
评论(0)
推荐(0)
|
摘要:
阅读全文
posted @ 2015-12-31 06:32
赵长青
阅读(254)
评论(0)
推荐(0)
摘要:
之前vs2013连接好好的,昨天就发现不行,类似如下错误可能原因及解决办法:1:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG 下的 Machine.config 文件有乱码问题。修改成 2:有防火墙阻止或其它安全软件阻止问题。3:IE代理设... 阅读全文
posted @ 2015-09-18 07:35
赵长青
阅读(1427)
评论(0)
推荐(0)
摘要:
select 'alter table '||table_name||' allocate extent(size 64k);' from tabs t where not exists (select segment_name from user_segments s where s.segme... 阅读全文
posted @ 2015-09-16 14:34
赵长青
阅读(150)
评论(0)
推荐(0)
摘要:
this.datagridLeft.ClearSelection(); this.datagridLeft.Refresh(); this.datagridLeft.EndEdit(); this.datagridRight.ClearSelection(); this.datagridRight.RefreshEdit(); this.datagridRight.EndEdit(); 阅读全文
posted @ 2013-12-12 16:26
赵长青
阅读(447)
评论(0)
推荐(0)
摘要:
HWM和delete,drop,truncate的关系 =========================================================== --------------------------------------------------------------- 今天下午好好看了oracle中的HWM,也就是高水位线,高水位线是一个段内使用和未使用的数据块的分界线。Select * from user_tables where table_name=’TEST03’其中有blocks,empty_blocks,num_rows其中的blocks也就是此表 阅读全文
posted @ 2012-11-15 22:13
赵长青
阅读(504)
评论(0)
推荐(0)
摘要:
Delphi7 PAnsiChar String 结构指针 阅读全文
posted @ 2012-01-27 20:06
赵长青
阅读(619)
评论(0)
推荐(0)
摘要:
从Oracle Database 10g开始,Oracle在建库后就默认创建了一个名为GATHER_STATS_JOB的定时任务,用于自动收集CBO的统计信息。理论上一张表超过10%的数据变动就会被这个job收集一次统计信息这个自动化功能已经影响了很多系统的正常运行,晚上10点对于大部分生产系统也并非空闲时段。而自动分析可能导致极为严重的闩锁竞争,进而可能导致数据库Hang或者Crash。所以建议最好关闭这个自动统计信息收集功能:exec DBMS_SCHEDULER.DISABLE('GATHER_STATS_JOB');1.查询jobSQL> select JOB_N 阅读全文
posted @ 2011-11-03 21:27
赵长青
阅读(295)
评论(0)
推荐(0)
摘要:
arcsde 阅读全文
posted @ 2011-04-19 22:34
赵长青
阅读(792)
评论(2)
推荐(0)
摘要:
Delphi7,ActiveX,vs2008 c#使用 阅读全文
posted @ 2011-04-04 21:46
赵长青
阅读(1167)
评论(3)
推荐(0)
|