Skip to content

Instantly share code, notes, and snippets.

@MikeMKH
Created April 7, 2018 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeMKH/e809891151dd7e7078a1a8333336040f to your computer and use it in GitHub Desktop.
Save MikeMKH/e809891151dd7e7078a1a8333336040f to your computer and use it in GitHub Desktop.
SQL Server TSQL to find recent database changes
-- https://stackoverflow.com/a/23702332/2370606
select *
from sys.objects
where modify_date > dateadd(d, -1, getdate())
@MikeMKH
Copy link
Author

MikeMKH commented Apr 7, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment