摘要:   SQL SERVER 2005 新特性之一.
        阅读全文
        | 随笔分类 - SQL数据库
摘要:   SQL SERVER 2005 新特性之一.
        阅读全文
 
摘要:    SQL2000数据库还原问题的解决.
    .NET 数据访问体系结构指南.
        阅读全文
 
摘要:--创建用于监视对student表进行插入和更新操作的触发器IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'StudentTest') DROP DATABASE [StudentTest]GOCREATE DATABASE [StudentTest] ON (NAME = N'carTest', FIL...
        阅读全文
 
摘要:1if exists(select name from sysobjects where name='Insert_PicType_T07_Trig' and type='TR') 2DROP TRIGGER Insert_PicType_T07_Trig 3go 4 5CREATE TRIGGER Insert_PicType_T07_Trig ON PicType_T07 6FOR INS...
        阅读全文
 
 |