Viewing 15 posts - 11,401 through 11,415 (of 13,871 total)
Anjan Wahwar (5/20/2011)
--Though this approach is not good performance wise, but you dont have any other way to do the same without any primary key.
One possibility I thought of was...
May 20, 2011 at 3:40 am
Lowell (5/19/2011)
here it is, i think: []bJeff Modens "Replace Multiple Spaces With One" Article[/url][/b]
Same link as mine;-)
May 19, 2011 at 2:42 pm
May 19, 2011 at 2:23 pm
What do you want to happen?
1) Do you want to delete all the rows and re-load them? If yes, just truncate the destination table before doing the load.
2) Or not...
May 19, 2011 at 2:16 pm
nikishh9 (5/19/2011)
i load the data from Staging database to Poststaging but when run package two time at that time i got same rows two time or if i run...
May 19, 2011 at 8:55 am
Can you give some background on what you are doing - what method are you using to run DTEXEC?
May 19, 2011 at 3:22 am
peter.row (5/19/2011)
Using dynamic SQL like this is equal to the last S in KISS - Stupid!SQL Injection attack waiting to happen.
And your secure alternative solution is?
May 19, 2011 at 2:12 am
raj_shekar2005 (5/18/2011)
May 18, 2011 at 1:46 am
This might be a long route ...
I'm afraid it is a bit 🙂 Nonetheless, glad you got there in the end!
May 17, 2011 at 10:02 am
Using a stored proc as the source for your report makes this task easy enough to run on the server.
May 17, 2011 at 7:08 am
I'll second that - a simple method which avoids sending unwanted data across the network.
May 17, 2011 at 5:57 am
You can do it in a single package - but you'll need 2 dataflows and some precedence logic to control which is executed. You may also have to set delayvalidation...
May 17, 2011 at 5:47 am
SSIS can't easily accommodate this sort of requirement. If it's only ever one of two formats, you'll just need two data sources and some conditional logic to force processing down...
May 16, 2011 at 2:11 pm
When it come to mapping of SSIS data type and SQL Server datatype then nchar, nvarchar, sql_variant, xml will be mapped directly to DT_WSTR (SSIS data type). Any mapping given...
May 16, 2011 at 7:33 am
Viewing 15 posts - 11,401 through 11,415 (of 13,871 total)