Showing posts with label invalid. Show all posts
Showing posts with label invalid. Show all posts

Friday, March 9, 2012

How to find out invalid Objects in sql server databases

Hi,

How to find out invalid objects in sql server databases

What do u mean invalid object?

Wednesday, March 7, 2012

how to find invalid objects --After DDL changes

Hi

I have a SQL Server 2005 database running. When I run some ddl changes, I want to find all the procs/objects that get invalidated because of object not found error.....

Is there any way that I can look up in sysdepends or other tables to find information about this.

Regards

Imtiaz

You can query the system view sys.syscomments for any procedures or functions that reference the objects. The text of each is stored in sys.syscomments.text.