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 |
explain declarative management framework (dmf) in sql server 2008?
What is index?
How to get the definition of a user defined function back?
Diff between Composite key, Alternate Key, Candidate Key, Primary Key, Unique Key, Super Key, Foreign Key
When does the auto update index statistics feature in sql server turn itself on?q) what specific conditions database should meet, before you can bulk copy data into it using bcp?
Explain trigger and its types?
can you any body tell me why are go for the rebuild the master database.what is the reason?
Define the term DML, DDL and DTL?
What is statement level trigger?
How to fetch the next row from a cursor with a "fetch" statement?
When do u use clustered index and non-clustered index?
What is user-defined function?