Created
April 7, 2018 14:24
-
-
Save MikeMKH/e809891151dd7e7078a1a8333336040f to your computer and use it in GitHub Desktop.
SQL Server TSQL to find recent database changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- https://stackoverflow.com/a/23702332/2370606 | |
select * | |
from sys.objects | |
where modify_date > dateadd(d, -1, getdate()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Taken from https://stackoverflow.com/a/23702332/2370606