Advertisement
SQLSoldier

Untitled

Feb 25th, 2015
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. With TranIDs
  3. As (Select [Transaction ID]
  4. From fn_dblog(null, null)
  5. Where [Transaction Name] = 'SetFileSize')
  6. Select *
  7. From fn_dblog(null, null) DBL
  8. Inner Join TranIDs T On T.[Transaction ID] = DBL.[Transaction ID];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement