Viewing 15 posts - 3,466 through 3,480 (of 9,643 total)
What width do you have the report set to? What is the combined width of the 2 tables?
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
January 6, 2010 at 6:16 am
I think you'd find the FULL OUTER JOIN method I mentioned earlier may perform better, although you are not going to get optimal performance from any solution as long as...
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
January 5, 2010 at 1:49 pm
I mean try both options and see which one works best. I just don't think the DataFlow task will work well because it is RBAR (although in memory) 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
January 5, 2010 at 7:56 am
Well, 1 if the values are identical, does it really matter which table it comes from? 2 - I was assuming and apparently incorrectly that SQL Server will use...
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
January 5, 2010 at 7:54 am
Do you mean you have either Domain\Login or Login in a table? Because that is what you will need.
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
January 5, 2010 at 7:20 am
I think the fastest way will be to Truncate then do Bulk Insert. The slowest would be TRUNCATE then data flow task as the data flow task does the...
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
January 5, 2010 at 7:17 am
I'd do explicit transactions and commit then you should be all set with the an error only rolling back the current transactions. You can do TRY CATCH in a...
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
January 5, 2010 at 7:15 am
You won't find a .DBC because you are dealing with FoxPro Free Tables not a FoxPro database (.DBC). The issue you are having is permissions accessing the network location....
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
January 5, 2010 at 7:12 am
You can do something like this to get the values into a table:
CREATE TABLE #temp (VALUE VARCHAR(100))
INSERT INTO #temp
(
VALUE
...
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
January 5, 2010 at 7:06 am
Can't disagree with that, as usual, Gail. I was just presenting another option, if the OP has to use 'Detailed'
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
January 5, 2010 at 7:01 am
I'd create a role and give it those rights on each schema in the database. It's not quite db_owner so I'd avoid that.
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
January 5, 2010 at 6:59 am
If you ALWAYS want the data from table 1 if it exists I believe you can just do a UNION because UNION eliminates duplicates and I believe it will take...
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
January 5, 2010 at 6:57 am
You'd have to have some way to match a user login to an employee. Do you have that information anywhere?
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
January 5, 2010 at 6:53 am
In most cases I have seen the recommendation is to use the 'Limited' value for sys.dm_db_index_physical_stats instead of 'Detailed'. 'Limited' returns just the Top level (0). So I'd...
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
January 5, 2010 at 6:50 am
In addition to what Chris has said, you also need to know that in the FROM you can have multiple tables JOIN'ed together, typically this is on a Foreign Key...
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
January 5, 2010 at 6:37 am
Viewing 15 posts - 3,466 through 3,480 (of 9,643 total)