摘要:
2008-06-16 18:17来自dudu[code] declare @procName varchar(500) declare cur cursor for select [name] from sys.objects where type = 'p' open cur fetch next from cur into @procName while @@fetch_status = 0 begin if @procName <> 'DeleteAllProcedures' exec('drop procedure ' + @ 阅读全文
posted @ 2012-08-17 10:45
Tyler Wang
阅读(308)评论(0)推荐(0)
摘要:
SQL Restore Error: “Restore failed: System.Data.SqlClient.SqlError: The media set has 2 media families but only 1 are provided. All members must be provided.”This error means that the original backup was done as a striped backup where the backup stream was split into two or more destination files.Wh 阅读全文
posted @ 2012-06-11 23:19
Tyler Wang
阅读(677)评论(0)推荐(0)