Forum Replies Created

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

  • RE: Change Data Capture - SQL Server 2008

    Thanks, you have explained some good basics for me to think about...too bad it's not offered in Standard.

    However, how do schema changes on the tblEmployee table impact the...

  • RE: Create Insert for Existing Rows

    Added some changes..fixed schema syntax, used quotename, changed code to use union all with SELECTs

    DECLARE @TABLE_NAME sysname, @TABLE_SCHEMA sysname

    SELECT @TABLE_SCHEMA='dbo'

    SELECT @TABLE_NAME='Media'

    SET NOCOUNT ON

    DECLARE @CMD nvarchar(max)

    DECLARE @INSCMD nvarchar(max)

    DECLARE @INSVAL varchar(max)

    DECLARE

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