Forum Replies Created

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

  • RE: SSIS multi-environment configuration in a single SQL Server table

    Also I have added an Environments table and changed the [SSIS_Config]

    CREATE TABLE [dbo].[SSIS_Environments](

    [EnvironmentId] [tinyint] NOT NULL,

    [Environment] [nvarchar](10) NOT NULL,

    [EnvironmentDesc] [varchar](11) NULL,

    [HostName] [nvarchar](20) NULL,

    [InstanceName] [nvarchar](20) NULL,

    [ServerName] AS ([HostName]+coalesce('\'+[InstanceName],'')),

    CONSTRAINT [PK_Environments]...

  • RE: SSIS multi-environment configuration in a single SQL Server table

    I like this solution and I am using it.

    However the solution has a potential problem one needs to be aware of.

    When you edit an existing SQL Server-based configuration from within...

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