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 Posted / 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 |
Post New Answer View All Answers
What are sql servers used for?
What are different types of table joins?
What is transaction server distributed transaction?
What is a DBMS, query, SQL?
How do I view a stored procedure in sql server query?
List the data types available in mssql?
What are the new features of sql server 2008 r2 reporting service?
What is filestream?
What is an example of a foreign key?
What is the sql server 2000 version number?
How to truncate the log in sql server 2012? : sql server database administration
What does COMMIT command do?
Can we linked SharePoint to a SQL database?
what are the different ways to return the rowcount of a table?
How to use union to merge outputs from two queries together in ms sql server?