萌萌妈妈 发表于 2015-1-16 22:35:28

MSSQL网页编程之V$system_event中Wait事务的一段话和re...

目前的方案是用mysqlbinlog工具,增加一个flashback参数,输出结果为一个新的binlog文件――姑且叫做flashbacklog,这个flashbacklog顺序执行,可制定某张表和执行到哪个pos,来实现数据库的闪回。V$SYSTEM_EVENTshowsthetotalnumberofwaitsandtimeouts,andthetotal
waitingtimerecordedforeachtypeofevent,accumulatedforallprocessesover
thelifeoftheinstance.Itisnormaltoordertheeventswaitedforindescending
orderofthetotaltimewaited,asanindicatorofthepotentialseverityofeach
typeofwait.
However,thetotaltimewaitedisreallyonlymeaningfulforthosethatindicate
waitingforresources.Ifprocesseshavebeenwaitingbecausetheyhavenowork
todo,thenthetimewaitedisimmaterial.Iftheyhavebeenwaitingforroutine
operations,suchasdiskI/O,thenthetotaltimewaitedwilldependonthe
workload.Insuchcases,theaveragetimewaitedismuchmoreinterestingthan
thetotaltimewaited.
Thisclassificationofwaittypesintoidlewaits,routinewaits,andresourcewaits
isvitaltoacorrectunderstandingofthewaitstatistics.Accordingly,APThas
separatescriptsforresourcewaitsandroutinewaits,andignoresidlewaits
altogether.Theroutine_waits.sqlscriptshowsonlytheaveragetimewaitedfor
eachtypeofroutinewait.Theresource_waits.sqlscript(seeExample2.1)shows
thetypesofresourceswaitedforindescendingorderofthetotaltimewaited,but
alsoshowstheaveragetimewaited.


resources_wait.sql:


-----------------------------------------------------------------------------------Script:resource_waits.sql--Purpose:toshowthetotalwaitingtimeforresourcetypes----Copyright:(c)1998IxoraPtyLtd--Author:SteveAdams---------------------------------------------------------------------------------@reset_sqlpluscolumnaverage_waitformat9999990.00selectsubstr(e.event,1,40)event,e.time_waited,e.time_waited/(e.total_waits-decode(e.event,latchfree,0,e.total_timeouts))average_waitfromsys.v_$system_evente,sys.v_$instanceiwheree.event=bufferbusywaitsore.event=enqueueore.event=freebufferwaitsore.event=globalcachefreelistwaitore.event=latchfreeore.event=logbufferspaceore.event=parallelqueryqreflatchore.event=pipeputore.event=writecompletewaitsore.eventlikelibrarycache%ore.eventlikelogfileswitch%or(e.event=rowcachelockandi.parallel=NO)unionallselectnon-routinelogfilesyncs,round(e.average_wait*greatest(e.total_waits-s.value,0)),e.average_waitfromsys.v_$system_evente,sys.v_$sysstatswheree.event=logfilesyncands.name=usercommitsorderby2desc/@reset_sqlplus个中和reset_sqlplus是:

-----------------------------------------------------------------------------------Script:reset_sqlplus.sql--Purpose:toresetsqlplussettings----Copyright:(c)1998IxoraPtyLtd--Author:SteveAdams---------------------------------------------------------------------------------clearbreaksclearcolumnsclearcomputessetfeedbackoffsetverifyoff
材料Oracle8iInternalServices













操作被同步到从库上后,则主从都“回天无力”。

老尸 发表于 2015-1-19 17:54:59

这一点很好的加强了profiler的功能。但是提到profiler提醒大家注意一点。windows2003要安装sp1补丁才能启动profiler。否则点击没有反应。

透明 发表于 2015-1-24 16:57:44

但是随着数据量的增大,这种成本差距会逐渐减小,趋于相等。(500万数量级只相差10%左右)

小魔女 发表于 2015-2-2 11:24:33

作了些试验,发现使用CLR的存储过程或函数在达到一定的阀值的时候,系统性能会呈指数级下滑!这是非常危险的!只使用几个可能没有问题,当一旦大规模使用会造成严重的系统性能问题!

仓酷云 发表于 2015-2-7 18:55:58

需要注意的一点,也是我使用过程中发现的一个问题。在建立function->schema->table后,如果在现有的分区表上建立没有显式声明的聚集索引时,分区表会自动变为非分区表。这一点很让我纳闷。

飘飘悠悠 发表于 2015-2-23 00:07:26

比如,MicrosoftSQLServer2008的某一个版本可以满足现在的这个业务的需要,而且价格还比Oracle11g要便宜,那么这一产品就是适合的。

小妖女 发表于 2015-3-7 04:44:24

如果是将来做数据库的开发设计,就应该详细学习T-SQL的各种细节,包括T-SQL的程序设计、存储过程、触发器以及具体使用某个开发语言来访问数据库。

飘灵儿 发表于 2015-3-14 12:05:54

只能告诉你,学好数据库语言和原理,多见识几种数据库软件,比一棵树上吊死要好。

海妖 发表于 2015-3-21 06:10:15

连做梦都在想页面结构是怎么样的,绝非虚言
页: [1]
查看完整版本: MSSQL网页编程之V$system_event中Wait事务的一段话和re...