• Hi Vinay, nice script.

    Liked both your scripts for objects copying across schemas. Just wanted to share this other way to add SQL objects to multiple database on a server.

    http://www.sqlservercentral.com/Forums/Topic1168030-9-1.aspx

    If you wanted to add a SQL table or view or any SQL object to multiple database on your server and do not want to execute the script over and over again in all the multiple databases than the following SQL script can be used.

    There have been instances where I had to add a stored procedure or a table in multiple client database as a part of the schema change process and this script has come in handy.

    --ADD SQL OBJECTS(TABLES, VIEWS, SPS, UDFS ET AL) TO ALL THE DATABASES ON THE SERVER.

    PRINT '##### BEGIN DB SCRIPT ##### '

    EXEC SP_MSFOREACHDB

    'USE [?]IF ''?'' NOT IN (''MASTER'', ''MODEL'', ''MSDB'', ''TEMPDB'', ''ADVENTUREWORKS'' )

    BEGIN

    IF NOT EXISTS

    (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ''MYTABLE'')

    BEGIN

    CREATE TABLE [DBO].[MYTABLE](COLUMN_1 VARCHAR(50) NULL, COLUMN_2 DATETIME NULL)

    PRINT '' TABLE CREATED IN DATABASE ('' + DB_NAME() + '')''

    END

    ELSE

    PRINT '' TABLE PRESENT IN DATABASE ('' + DB_NAME() + '')''

    END '

    PRINT '##### DB SCRIPT COMPLETED #####'

    🙂

    Regards,

    Mehernosh.