Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Invalid Object In SQL Server 2008 database

    OK, i solved my problem:

    USE YOUR_DB

    GO

    SELECT

    OBJECT_NAME(referencing_id) AS CHECKED_PROCEDURE,

    referenced_entity_name AS DEPENDENT_TABLE

    FROM

    sys.sql_expression_dependencies as ed

    WHERE

    is_ambiguous...

  • RE: Invalid Object In SQL Server 2008 database

    Hi Lowell,

    i wrote very similliar procedure as yours in my work to check procedures. My procedure throws RAISERROR when alter can't be done. It helps when it's missing column in...

Viewing 2 posts - 1 through 2 (of 2 total)