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


Please Help Members By Posting Answers For Below Questions

If you want to send some data from access database to sql server database. What are different component of ssis will you use?

503


How can sql injection be stopped? : sql server security

542


How do I know if localdb is running?

507


Explain how to send email from sql database?

555


How will you monitor replication latency in transactional replication? : sql server replication

601






How to list all field names in the result set using mssql_field_name()?

522


What is policy management?

575


How can I create a report based on a query? : sql server management studio

556


What is left outer join in sql server joins?

549


OPTIMIZATION OF SP,CURSOR,TRIGGERS

2205


Explain sql delete command?

601


What is difference between table aliases and column aliases? Do they affect performance?

505


What programming language would you use to create embedded functions in ssrs?

122


What are the differences between lost updates and uncommitted dependencies?

532


What are the extra roles available in msdb? : sql server security

633