Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. select * from
  2. (
  3. select [name],create_date,modify_date, 'sp' as ObjType from sys.procedures
  4. union all
  5. select [name],create_date,modify_date, 'table' as ObjType from sys.tables
  6. union all
  7. select [name],create_date,modify_date, 'view' as ObjType from sys.views
  8. ) sub
  9. order by modify_date desc
Add Comment
Please, Sign In to add comment