How To Find That One Week Change in My DataBase we Have Done
Like We Have A database Test I Change Table,Stored Procd.
Then I Find Which SP,Table We Have Edit/Change in Seven
Dayes
Answer / sandeep modapathi
just run this query
SELECT * FROM SYS.OBJECTS
WHERE TYPE='P' AND (CREATE_DATE>'<Date>' OR
MODIFY_DATE>'<Date>')
This query will return all the SPs modified or created
after the date specified. You can change the filter
condition according to your purpose.
For Tables ... use this query
SELECT * FROM SYS.TABLES
WHERE CREATE_DATE>'<Date>' OR MODIFY_DATE>'<Date>'
Is This Answer Correct ? | 0 Yes | 0 No |
How many tables can be joined in SQL Server?
What are database states in ms sql server?
what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration
Can we install sql server 2016 on windows 7?
Is it safe to delete log files?
Mention the differences between local and global temporary tables.
Do you know what is difference between index seek vs. Index scan?
Is mysql the same as sql server?
What is user defined stored procedures?
What is sleeping status in sql server?
What are various aggregate functions that are available?
What is use of attributehierarchyenabled? : sql server analysis services, ssas