摘要:
运行:sql2005中的Configure SQL XML Support in IIS (到MS网站上下载SQLXML 22.0 SP3: http://www.microsoft.com/downloads/details.aspx?FamilyID=51D4A154-8E23-47D2-A033-764259CFB53B&displaylang=en) 设置一个虚拟目录,setting中允许... 阅读全文
摘要:
属性(Attribute) 说明 Bindable Boolean类型,true指示VS.NET将控件显示数据绑定对话框 Browsable Boolea... 阅读全文
摘要:
vs自带命令提示符 加密: aspnet_regiis -pef "connectionStrings" "c:\...\EncryptWebSite" 解密: aspnet_regiid -pdf "connectionStrings" "c:\...\EncryptWebSite" 阅读全文
摘要:
授予权限 必须在MSDB数据库重的QueryNotificationService服务上翔Guest用户授予发送权限 USE MSDB GRANT SEND ON SERVICE:: [http://schemas.microsoft.com/SQL/Notifications/QueryNotificationService] TO GUEST 在数据库服务器上启用CLR 在一个消息到达服务队... 阅读全文
摘要:
1CREATE TRIGGER customer_state 2ON Customers 22FROM INSERT,UPDATE 4AS 5UPDATE Customers 6SET cust_state=Upper(cust_state) 7WHERE Customers.cust_id=inserted.cust_id; 阅读全文
摘要:
1BEGIN TRANSACTION 2INSERT INTO Customers(cust_id,cust_name) 3VALUES('100000010','Toys_Emporium'); 4SAVE TRANSACTION StartOrder; 5INSERT INTO Orders(order_num,order_date,cust_id) 6VALUES(20100,... 阅读全文