Viewing 15 posts - 16 through 30 (of 130 total)
Often times in SSIS you will get three or four error messages, but only one of them really sheds any light on the issue. In the progress tab, look...
December 12, 2011 at 11:02 pm
john_nyasani (12/2/2011)
December 5, 2011 at 6:56 am
What is the data source? If the source is a SQL Server table, is there a natural key you can use to do a outer join between your source...
November 15, 2011 at 2:18 pm
gugan_ta (11/4/2011)
We are using SCD types in dimension loading. For this we have planned to use default SCD component in SSIS. We also found diffrent methods to handle SCD...
November 4, 2011 at 5:31 am
Take a look at Andy Leonard's Stairway to SSIS series here on SQL Server Central:
http://www.sqlservercentral.com/stairway/72494/
HTH,
Rob
November 1, 2011 at 7:31 am
I would recommend also adding annotations to your packages. A well placed note can help explain/document what your package is doing and the logic being used.
October 31, 2011 at 6:18 am
SQL Server Integration Services (SSIS) would be my tool of choice. The import/export wizard is just a specialized package (and limited) package that uses the SSIS engine. What...
October 24, 2011 at 5:42 am
Sorry I hadn't looked at the graphics in the link. But you're right if the preview works on the server, then you wouldn't think it's the ODBC driver.
Is there...
October 20, 2011 at 7:43 am
Can you connect to the Informix datasource via the ODBC using another tool (e.g. MS Access or Excel) on both your machine and on the server? Are the results...
October 20, 2011 at 6:28 am
ambarishan.purushothaman (10/20/2011)
Error: [Execute SQL Task] Error: Executing the query "update dwhflowset FileStatus=1
where FName=Banking"
If you're sure that FName is the field, is it just a matter of missing single quotes around...
October 20, 2011 at 6:22 am
I get this error for the below code:
Query (11, 7) Parser: The syntax for 'ORDER' is incorrect.
-- SMDX003-004 Simple Use of Order() function across columns,
-- sort descending(respecting hierarchies)...
October 18, 2011 at 12:27 pm
pintoam (10/15/2011)
Sandra’s Ski Hire rents out skiing equipment..
.
.
Please email the answer to pintoam@hotmail.com....
You're going to get more out of your homework assignment if you put some of your own...
October 15, 2011 at 5:34 pm
Your condition doesn't look correct; the ISNULL() returns back true or false. You want something like:
!(ISNULL(field1)) && !(ISNULL(field2) && field1 == field2
October 11, 2011 at 7:30 am
One (or more) of your fields in the conditional split expression are Null. Put an ISNULL() in there to handle this case. That should fix your problem.
Rob
October 7, 2011 at 6:48 am
winseelan (10/5/2011)
rgtft (10/4/2011)
October 6, 2011 at 6:39 am
Viewing 15 posts - 16 through 30 (of 130 total)