Forum Replies Created

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

  • RE: Generate Insert Statements Easily

    small modification for multiple tables to run at once

    alter PROC p_adm_gen_insert

    (@TableList varchar (8000)

    )

    AS

    SET NOCOUNT ON

    DECLARE @position int, @exec_str varchar (2000), @TableName varchar (50)

    DECLARE @name varchar(128), @xtype int, @status...

  • RE: Generate Insert Statements Easily

    thats how it works for me

    alter PROC p_adm_gen_insert

    (@TableList varchar (8000)

    )

    AS

    SET NOCOUNT ON

    DECLARE @position int, @exec_str varchar (2000), @TableName varchar (50)

    DECLARE @name varchar(128), @xtype int, @status tinyint, @IsIdentity tinyint

    DECLARE...

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