Viewing 15 posts - 271 through 285 (of 681 total)
If you suspect bad data in your staging table, check to see if there are any non-null, non-empty values that are invalid dates:
SELECT DISTINCT [DateColumnName]
FROM [StagingTable]
WHERE [DateColumnName] IS NOT NULL
AND...
August 22, 2009 at 11:53 am
Have you considered using Service Broker? Not sure of your exact requirements, but it sounds like Service Broker might be of interest to you.
hth,
Tim
August 21, 2009 at 6:48 pm
Not a lot of difference as far as efficiency. Where possible, I prefer persisted staging tables - I've found that it makes development and troubleshooting a bit easier.
hth,
Tim
August 21, 2009 at 3:18 pm
You're using 2 different string lengths in your expression. Your NULL condition uses a 1-character string, but the WADAT column would be larger than that since '22.05.2009' is a possible...
August 21, 2009 at 3:01 pm
Is it possible you've got one or more tasks disabled? They'll appear shaded in silver if they are.
July 20, 2009 at 7:38 pm
It looks like your code sample is incomplete. However, I suspect that you're missing a .Value property when you reference the variables elsewhere in the code.
See the following URL for...
July 20, 2009 at 7:34 pm
Sure... you can actually do a DISTINCT query on all items:
SELECT DISTINCT h.SOID, h.CustomerNumber, h.PoNumber
FROM SalesOrderHeader h
INNER JOIN SalesOrderDetails d ON h.SOID = d.SOID and d.ItemToSell = 'CAR'
This will return...
July 13, 2009 at 1:46 pm
Hey Jack,
I finally figured this thing out. I found that what I needed to do was to use the Group Header function, but this is only available on the...
July 13, 2009 at 11:46 am
The query you've written appears to be valid. However, a better performing and more commonly accepted methodology is to use a JOIN rather than a subquery in a case like...
July 13, 2009 at 10:51 am
It sounds like you may have your SSIS package protection level set to "Don't Save Sensitive", which will not store any passwords and will prompt each time. You should...
July 13, 2009 at 9:52 am
Georg,
First, I don't see any connection information or the query string in your code. I assume you removed those for security reasons?
As far as the code, I would suggest...
July 13, 2009 at 8:44 am
Georg,
This could be due in part to how your script is written. Can you post some of the code (or at least pseudocode) from your script component source?
Tim
July 13, 2009 at 7:36 am
A couple of things to check. First, if the case of the data is different (upper versus lower or vice versa), you could have some issues. By default...
July 11, 2009 at 8:31 pm
Jason, are you in a 32 bit or 64 bit environment? There are known issues with the 64 bit Jet driver. I doubt if that's the only issue...
June 23, 2009 at 7:53 am
Good article, and very good idea about planning ahead. This methodology takes more work to set up, but can save you hours or even days of work in a...
June 17, 2009 at 6:31 am
Viewing 15 posts - 271 through 285 (of 681 total)