Viewing 15 posts - 10,846 through 10,860 (of 13,877 total)
Aha, I should have thought about that.
Well done on figuring it out.
March 19, 2012 at 2:49 pm
Maybe you should set the breakpoint on the pre-execute of the data flow - it may be that your breakpoint is being hit before the variable's value has been set.
If...
March 19, 2012 at 2:34 pm
Is there a way to quickly search some freetext in all sp/fn within the database? I often need to search for a sp but just couldn't find it, I have...
March 14, 2012 at 11:24 am
sellonster (3/14/2012)
Maybe I'm not explaining exactly what i really want to achieve. You see on my c# program, I have 2 connections pointing to two different DB servers. From...
March 14, 2012 at 6:31 am
Notwithstanding the fact that SSIS is the wrong tool - ditto comments already made ...
Have you investigated the 'Execute Process' SSIS task - this might run the .VBS scripts (never...
March 13, 2012 at 11:43 am
Right - that makes it a little harder. It also illustrates the risk of oversimplifying your questions 🙂
This requires two separate dataflows to two separate files.
After that, use the standard...
March 8, 2012 at 10:31 am
What do you want the file to look like?
Just modify your proc to UNION the two result sets and you're good to go.
March 8, 2012 at 9:44 am
--Removed
March 2, 2012 at 7:44 am
Yuk. Don't like that proc at all. Looks like it was written by a procedural programmer unfamiliar with T-SQL concepts like 'sets' 🙂
Have you thought about writing your data to...
March 1, 2012 at 5:40 am
"Can't" is a strong word. Multiple Replaces can be nested, so, with care, this might work.
Here's a nested Replace example:
declare @x varchar(100), @y varchar(100)
set @x = 'abcdefg'
set @y = replace(replace(replace(@x,'a',...
February 29, 2012 at 10:08 am
Thanks SSC Eights!!!
His real name is Crispin 🙂
February 29, 2012 at 8:54 am
Should i wait to RTM(release to marketing) OR GA(General availability)?and how i will know that it is now available....i am a developer and i have its requirements
Merely repeating your earlier...
February 29, 2012 at 5:55 am
Are you sure that there are no other more-detailed error messages?
Do you know which step is failing? What is it trying to do?
February 27, 2012 at 6:31 am
Is there any chance that you could get the spreadsheet exported to .CSV format as step one of the process? Then you should find that the limitations are removed.
February 24, 2012 at 1:23 am
Viewing 15 posts - 10,846 through 10,860 (of 13,877 total)