• What's the result from this query?

    SELECT t.name, c.name, c.is_identity

    FROM SCCOE_Order_Progression.sys.columns c

    JOIN SCCOE_Order_Progression.sys.tables t ON c.object_id = t.object_id

    JOIN SCCOE_Order_Progression.sys.schemas s ON t.schema_id = s.schema_id

    WHERE s.name = 'dbo'

    AND t.name = 'ATTU_Sales_organization'

    AND c.name = 'Sales_Organization_ID'

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2