Advertisement
PtiTom

TFS 03 - Mark All

May 14th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.62 KB | None | 0 0
  1. CREATE PROCEDURE SP_SetTransactionLogMarkAll
  2.     @name nvarchar(128)
  3. AS
  4.     BEGIN TRANSACTION
  5.     EXEC ReportServer.dbo.SP_SetTransactionLogMark @name
  6.     EXEC ReportServerTempDB.dbo.SP_SetTransactionLogMark @name
  7.     EXEC WSS_Config.dbo.SP_SetTransactionLogMark @name
  8.     EXEC WSS_AdminContent.dbo.SP_SetTransactionLogMark @name
  9.     EXEC WSS_Content.dbo.SP_SetTransactionLogMark @name
  10.     EXEC Tfs_Configuration.dbo.SP_SetTransactionLogMark @name
  11.     EXEC Tfs_Warehouse.dbo.SP_SetTransactionLogMark @name
  12.     EXEC Tfs_DefaultCollection.dbo.SP_SetTransactionLogMark @name
  13.     EXEC Championnats.dbo.SP_SetTransactionLogMark @name
  14.     COMMIT TRANSACTION
  15. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement