Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Get DDL for any SQL 2005 table

    When the index is scripted, it doesn't include the schema, i.e. line 566:

    ' ON [' + [object_name] + ']'

    Should be

    ' ON [' + [schema_name] + '].[' + [object_name]...

Viewing post 1 (of 1 total)