Viewing 15 posts - 7,141 through 7,155 (of 9,643 total)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 22, 2008 at 9:45 am
Restore the the database to another location (database) and then select from the restored database to the production database.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 22, 2008 at 9:28 am
Could you give some details on how Colour and Name are associated with Cabbage?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 22, 2008 at 8:30 am
I agree with Grant, that is exactly the resultset I would expect from that query. An OR would return:
name age
------ ---
name226
name427
name527
name325
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 22, 2008 at 8:28 am
Looks like you should be tuning those queries.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 22, 2008 at 7:54 am
You need to do a check for a null value BEFORE the ToString() function is used. You can't convert a NULL to a string. Somthing like:
If Not IsNothing(columnValue.GetValue(Row, Nothing))...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 6:55 pm
Your boss is being a little shortsighted as custom components can save a ton of time. You should still download mine for the source as it does a better...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 2:08 pm
Glad I could help.
Unfortunately there is no debugging in Script Components like there is in the script task. A real oversight in my opinion.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 2:06 pm
I realize you did not create a new component, what I am saying is that I created a Custom Component for SSIS that you can add to the toolbox and...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 12:41 pm
Unfortunately there is not a straightforward way of doing this. Here is a link to a blog post (not my blog) about how to do it:
You could also look...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 12:03 pm
The answer is "It Depends".
In the project I was working on when I put this together I wanted a way to find out what data was causing my...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 11:55 am
I am not aware of any way to do exactly what you want. This is why I like to use stored procedures for all data access and manipulation. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 9:46 am
What SQL Server "sees" as your parameter value is '1,2,3,4' a single string that cannot be converted to an integer. There are 2 ways to handle this situation:
1. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 9:39 am
I also mentioned that SSIS processes data row by row, it just looks like it is processing batches when it moves quickly. With this "pipeline" approach, an error down...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 9:30 am
Everything appears to be working as expected.
In your image the data conversion is successfully processing all 3 rows, none caused an error, so there are no rows being passed to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
October 21, 2008 at 7:59 am
Viewing 15 posts - 7,141 through 7,155 (of 9,643 total)