仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 780|回复: 8
打印 上一主题 下一主题

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

[复制链接]
萌萌妈妈 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:35:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
目前的方案是用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的存储过程或函数在达到一定的阀值的时候,系统性能会呈指数级下滑!这是非常危险的!只使用几个可能没有问题,当一旦大规模使用会造成严重的系统性能问题!
5#
发表于 2015-2-7 18:55:58 | 只看该作者
需要注意的一点,也是我使用过程中发现的一个问题。在建立function->schema->table后,如果在现有的分区表上建立没有显式声明的聚集索引时,分区表会自动变为非分区表。这一点很让我纳闷。
飘飘悠悠 该用户已被删除
6#
发表于 2015-2-23 00:07:26 | 只看该作者
比如,MicrosoftSQLServer2008的某一个版本可以满足现在的这个业务的需要,而且价格还比Oracle11g要便宜,那么这一产品就是适合的。
小妖女 该用户已被删除
7#
发表于 2015-3-7 04:44:24 | 只看该作者
如果是将来做数据库的开发设计,就应该详细学习T-SQL的各种细节,包括T-SQL的程序设计、存储过程、触发器以及具体使用某个开发语言来访问数据库。
飘灵儿 该用户已被删除
8#
发表于 2015-3-14 12:05:54 | 只看该作者
只能告诉你,学好数据库语言和原理,多见识几种数据库软件,比一棵树上吊死要好。
海妖 该用户已被删除
9#
发表于 2015-3-21 06:10:15 | 只看该作者
连做梦都在想页面结构是怎么样的,绝非虚言
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-23 03:36

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表