Viewing 15 posts - 31 through 45 (of 53 total)
Thanks Dan. Its really helpful !!! 🙂
April 15, 2011 at 7:49 am
yosiasz (4/14/2011)
I load them programmatically or by editing the config file?
You just need to create separate configuration files for all the environment (dev, qa, test, prod). Change the variables and...
April 15, 2011 at 7:31 am
quillis131 (4/11/2011)
April 12, 2011 at 4:13 am
Great!!!
I completely miss the concept of BIT and make it wrong ... :hehe:
April 8, 2011 at 4:05 am
MyDoggieJessie
UPDATE _ReadyTables
SET Loaded = 1
WHERE [Table] = ?
AND ETLDate = (
SELECT ETLDate FROM dbo._ReadyTables
WHERE [Table] = ? AND Loaded = 0 )
I created a variable:
Variable Name: User::FL_PRICE
Direction: INPUT
Data...
April 8, 2011 at 3:46 am
Walter Tucholski (3/9/2006)
I am using SSIS 2005 and have variables defined at the package level. When I try to execute a query in an Execute SQL Task it doesn't recognize...
April 8, 2011 at 3:41 am
Hey,
In your case you are missing single quotes ('). Your query should be written inside Var_ZZ's expression property like this.
"select A, B, C, D,ADDED_DATE, CLIENT_TYPE from Table1
where CLIENT_TYPE <>...
April 7, 2011 at 9:01 am
Hey,
What is the error that you are getting?
You can also pass parameter in your OLEDB source adapter. Select Data Access mode as 'SQL Command' then write your query like...
April 6, 2011 at 1:23 am
I dont think update statement will work like the way you wanted it to as rows are duplicated & it will update the record with 1st occurrence every time you...
April 6, 2011 at 12:58 am
2) How i can create Parent/Child package(in SSIS), so at the same time i can insert Table1.ORDER_ID and Table2.LOC_ID. Any advise?
Hey rocky,
What is the need to create child...
April 6, 2011 at 12:38 am
ishaan99 (4/5/2011)
thanks yeah i know pivot transformation can be used but just wanted to see how thats set up in SSIS.
This might help you-
April 6, 2011 at 12:24 am
copett86 (4/4/2011)
April 5, 2011 at 9:29 am
Hi,
Actually this can be achieved through number of ways. But what I was thinking will work best when you could create a tracker table in you DB.
Something like this will...
April 4, 2011 at 5:37 am
Hi lrutkowski
The way you are writing the script will work fine with SSIS 2008, though in your case i would rather suggest to use Script Task. You can update...
March 13, 2011 at 6:25 am
Andrew Williams (3/10/2011)
loop through the tables doing:
1. Script task to create dynamic sql to create the table if it doesn't exist on destination.
2. Run sql against...
March 10, 2011 at 7:12 am
Viewing 15 posts - 31 through 45 (of 53 total)