摘要:
阅读全文
摘要:
select a.name,b.rows from sysobjects a,sysindexes bwhere a.id=b.id and xtype='U' AND (b.indid IN (0, 1))-- and rows>=8575order by b.rows desc 阅读全文
摘要:
1、web服务器负载均衡 nginx软件负载均衡2、数据库服务负载均衡,如oracle的RAC技术3、服务器故障转移集群 3.1、连接时故障转移集群3.2、非连接时故障转移集群(Data Guard技术) 阅读全文
摘要:
ARP2 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 182.168.1.173)(PORT = 1521)) (ADDRESS = (PROTOCOL = TCP)(HOST =... 阅读全文
摘要:
源代码1、增加AreasChildRegistration类,类继承PortableAreaRegistration2、增加引用MvcContrib3、主项目中Area文件夹下增加Web.config文件 阅读全文
摘要:
修改注册表:HKLM\Software\Microsoft\MicrosoftSQLServer\90\Tools\ShellSEM,把ShellSEM重命名即可如果是64位机器 在HKLM\Software\Wow6432Node\Microsoft\MicrosoftSQLServer\90\T... 阅读全文
摘要:
SET STATISTICS PROFILE ON --SET STATISTICS IO ON --SET STATISTICS TIME ONdeclare @dtm datetimeSQL语句print '添加person临时表数据:'+convert(varchar(10),DATEDIFF... 阅读全文
摘要:
参考:http://www.cnblogs.com/ycsfwhh/archive/2010/12/15/1906507.html1.双方启动MSDTC服务MSDTC(分布式交易协调器),协调跨多个数据库、消息队列、文件系统等资源管理器的事务。该服务的进程名为Msdtc.exe,该进程调用系统Mic... 阅读全文
摘要:
看代码declare @iid intselect @iid=111select top 1 @iid=isnull(IID,0) from YYGL_PCDMX where IID=0print @iid上面的情况,如果iid=0没有记录,则@iid会取111,为了避免这个问题1、在查询前,初始化... 阅读全文
摘要:
1 function funPostBack(srvMethod){ 2 /* 3 var contentNR=$(document.getElementById("reportFrame").contentWindow.document).find("#conte... 阅读全文