摘要:
SQL Server 2005相对于SQL Server 2000来说,无论是性能还是功能都有一个相当大的提高,甚至可以用“革命”来形容这一次升级。SQL Server 2005使 SQL Server 跻身于企业级数据库行列。在数据高可用性方面,SQL Server 2005为用户提供了数据镜像、复制、故障转移群集、日志传送功能。本文向读者简单介绍SQL Server 2005复制功能。 一、复... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--//SingleMdf为数据库名称 --①设置数据库为可更新状态 use master go sp_configure 'allow updates',1 go reconfigure with ov... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnost... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Xml; namespace D... 阅读全文
摘要:
foreach (Control ctrlSingle in this.Controls) { if (ctrlSingle is RadioButton) { if (ctrlSingle.Text == strDeviceType) { (ctrlSingle as RadioButton).Checked = true;... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--建表存储过程 Create Proc [dbo].[PN_CreateHistoryDataTable] AS Begin Declare @Count int Declare @CollCo... 阅读全文