Viewing 8 posts - 16 through 24 (of 24 total)
Wow! it worked! thanks so much
December 9, 2004 at 7:42 pm
hm.. haha you're right! thanks for the tip
December 5, 2004 at 5:42 pm
What I meant was to do something like this:
Set objConn1 = DTSGlobalVariables.Parent.Connections("gDBConnection")
objConn1.DataSource = DTSGlobalVariables("gDataSource").Value
objConn1.Catalog = DTSGlobalVariables("gCatalog").Value
objConn1.Username = DTSGlobalVariables("gUsername").Value // <-- doesn't work
objConn1.Password = DTSGlobalVariables("gPassword").Value // <-- doesn't work
Do you know...
November 29, 2004 at 6:19 pm
Hi trey,
I wasn't able to find the details on the event model package on the site, but I tried doing something that involves events as well. I'm not sure if...
November 12, 2004 at 12:19 am
Hm.. no ones answering... does this mean that this can't be done?
November 10, 2004 at 5:30 pm
I'm not sure if this will work for you, but from my code above...
DECLARE @dbName VARCHAR(20)
SELECT @dbName = databaseName FROM GlobalVariables
DECLARE @command VARCHAR(1000)
SET @command = 'SELECT *...
October 3, 2004 at 6:48 pm
the problem with using parameters is that it does not allow parameters to be used as database names... so it does not allow a statement like
SELECT * FROM ?.dbo.Table1
but anyway, I...
September 29, 2004 at 7:23 pm
wow! haha thanks a lot! I tried doing this already but I found out that it cannot detect the Exec Package Name...
September 23, 2004 at 7:04 pm
Viewing 8 posts - 16 through 24 (of 24 total)