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
Why are sql functions used?
Explain what are the different index configurations a table can have?
What is sql server management studio? : sql server management studio
What is bit data type?
How will you hide an attribute? : sql server analysis services, ssas
Explain the difference between primary keys and foreign keys?
How secure is sql server database?
Explain transaction server auto commit?
What is resultset concur_updatable?
What is the order by used for?
What is 'Join' and explain its various types.
What are the system database in sql server 2005?
When is update_statistics command used?
what is bit datatype and what's the information that can be stored inside a bit column? : Sql server database administration
What are the types of subscriptions in SQL Server replication?