all groups > sql server dts > march 2007 >
You're in the

sql server dts

group:

SSIS - SQL Server configuration


SSIS - SQL Server configuration SQL Learner
3/13/2007 2:39:04 PM
sql server dts:
Using SSIS, I want to store my configuration in a database table.
I opened Package Configuration Wizard, and selected
Configuration Type: SQL Server,
Configuration location is stored in an environment variable.

Next I created an environment variable SSIS1_CONFIG

For integrated security, server MyServer, database ConfigDB, schema
dbo, and table SSIS1_Config, what should be the value in that
environment variable?

TIA
Re: SSIS - SQL Server configuration SQL Learner
3/13/2007 3:23:24 PM
[quoted text, click to view]


Allan,

yes I created the following:

CREATE TABLE [dbo].[SSIS1_Config]
(
ConfigurationFilter NVARCHAR(255) NOT NULL,
ConfiguredValue NVARCHAR(255) NULL,
PackagePath NVARCHAR(255) NOT NULL,
ConfiguredValueType NVARCHAR(20) NOT NULL
)

Re: SSIS - SQL Server configuration Allan Mitchell
3/13/2007 10:11:39 PM

Ok I think you jumped a few steps.

Did you actually create the table in the SQL Server database that will
hold the configuration info. You need to do that before "Indirect"ly
pointing a configuration somewhere.



--


Allan Mitchell
http://wiki.sqlis.com | http://www.sqlis.com | http://www.sqldts.com |
http://www.konesans.com



[quoted text, click to view]
Re: SSIS - SQL Server configuration Allan Mitchell
3/13/2007 10:39:40 PM
Ok so it probably wants to look like this

"localhost.tempdb";"[dbo].[SSIS1_Config]";"MyConfigFilterValue";

"localhost.tempdb" = Connection Manager name
[dbo].[SSIS1_Config] = Table to find the config info
MyConfigFilterValue = filter for the config. Remember SQL Server can
store many configuration filters in the same table.




--


Allan Mitchell
http://wiki.sqlis.com | http://www.sqlis.com | http://www.sqldts.com |
http://www.konesans.com



[quoted text, click to view]
AddThis Social Bookmark Button