If you are working on a SQL database and if suddenly a
developer changes the code and your queries results start
giving errors,how will you check using a T-SQL query (on
system tables) that what has changed in the database.
Answer Posted / sumesh.tc
SELECT syscomments.text AS text
FROM sysobjects INNER JOIN
syscomments ON sysobjects.id =
syscomments.id where sysobjects.name=(stored procedure name)
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What do mean by xml datatype?
Explain what are page splits? : SQL Server Architecture
What is indexed view? How to create it?
How to view the error log for any specific instance? : sql server database administration
How do I create a partition table in sql server?
What is rank function?
Explain hostprotectionattribute in sql server 2005?
Why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it?
How to run queries with sql server management studio express?
Which tcl commands are available on the sql server?
Explain the phases a transaction has to undergo?
What are the 3 types of schema?
How to add the custom code in Report?
What is the chart in report?
Can you type more than one query in the query editor screen at the same time?