Viewing 15 posts - 646 through 660 (of 2,612 total)
You do not have the appropriate edition of integration services installed. File system tasks and pretty basic and covered by the standard edition of SSIS, but it must be...
September 15, 2008 at 12:54 pm
INSERT ?
Perhaps you have left out some vital information.
September 15, 2008 at 12:51 pm
I have never had a problem with underscores within a user name either. I do, however, hate typing them so I tend to avoid them.
September 15, 2008 at 11:59 am
Yes and no.
You can have several OLEDB destination components (or even SQL Destination components) loading into the same table at the same time. However, they may not be able...
September 15, 2008 at 5:58 am
You have lost your argument when you resort to name calling.
Please act like a professional.
September 12, 2008 at 12:11 pm
Either use Parameters.Refresh, or add two parameters. The first parameter is the RETURN_VALUE parameter for the procedure. Since it happens to be an integer data type, the parameter...
September 12, 2008 at 12:09 pm
I am not sure I understand what you are trying to build, but SSIS will not magically know what holidays you want to exclude.
September 12, 2008 at 11:29 am
Yes, but it is often a bad idea.
You can use the same table for multiple data flow destinatio components. As long as you have not specified RetainSameConnection=True on your...
September 12, 2008 at 11:28 am
You could do this in a script component withing your data flow, but Lynn makes a great point: why are you taking nice normalized data and messing it up?
September 12, 2008 at 11:25 am
If you can be sure every ID in the CTE will be in the first table you are deleting from, you could use OUTPUT.
September 12, 2008 at 11:15 am
Start with the basics: did you update statistics after upgrading?
September 12, 2008 at 11:11 am
You probably should create a table that has the lunch type and the scale, rather than hard-coding the names into a case statement like this.
September 12, 2008 at 10:01 am
CASE
WHEN Lunch IN ('Lasagna','Sausage') THEN 'High'
WHEN Lunch IN ('Salad','Non-Fat Yoghurt') THEN 'Low'
WHEN Lunch IN ('Burger King') THEN 'Really High'
END As FatContent
September 12, 2008 at 9:46 am
I would go with option 3.
At the beginning of the process, if the file does not exist, create one.
You can create an empty file through the command line, via a...
September 12, 2008 at 9:37 am
Viewing 15 posts - 646 through 660 (of 2,612 total)