Viewing 15 posts - 301 through 315 (of 9,643 total)
Lynn Pettis (8/13/2015)
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
August 13, 2015 at 2:26 pm
I would do a separate database because:
1. Separation of processes
2. Faster recovery time of the Data Warehouse because the stage data is not in the Data Warehouse.
3. You typically will...
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
August 13, 2015 at 2:12 pm
Good advice thus far. I didn't take the time to completely analyze your code, but one thing that I have seen help with looping inserts is to use explicit...
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
August 13, 2015 at 2:07 pm
When I'm involved in interviews I ask if they know about the tally/number table. I'm always surprised how many people have never heard about it. If they have...
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
August 13, 2015 at 2:04 pm
I'm going to do something I typically don't do and disagree with Grant and Erikur. Unless the vendor has specific policy that states that there are specific schemas or...
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
August 13, 2015 at 1:50 pm
Unfortunately not a simple thing to do and any way to do it has performance implications. You can't use Fast Load because that uses bulk insert and not 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
August 13, 2015 at 1:40 pm
GilaMonster (8/13/2015)
Seriously, the limit for a table name is 128 characters iirc, why does the table have to be named TSKGRPMBRS?
Because consonants are free and vowels cost $250. 😛
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
August 13, 2015 at 9:10 am
...Of course the case sensitivity thing is rather silly in that system. Every table name and every column name are exactly 6 UPPER case letters.
That's why they are all 6...
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
August 13, 2015 at 7:42 am
Nice solution Drew.
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
August 12, 2015 at 10:38 am
I agree with Grant. Both of those tools are good and I've used both at some level. You can also sort of use both tools together as each...
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
August 12, 2015 at 9:29 am
I agree with Grant. Neither option is the best option. A separate Marks/grades table that stores each grade as a new record with proper data typing.
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
August 12, 2015 at 9:22 am
This would be the package protection level which will encrypt sensitive data.
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
August 12, 2015 at 9:06 am
There a couple of things that pop into my head:
1. Modify the triggers to insert into a table when they fire. Obviously adds overhead to each trigger firing.
2. Server...
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
August 12, 2015 at 8:51 am
A different person to each what?
Something like this will create a random order:
SELECT * FROM #temp AS T ORDER BY NEWID();
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
August 12, 2015 at 8:29 am
Sean Lange (8/11/2015)
OMG. I just ran across this in a database from a 3rd party. There are actually 50 nvarchar(1) columns with names 1 - 50. :w00t:
ATTRIBUTE1 nvarchar(1)
ATTRIBUTE2 nvarchar(1)
.
.
.
ATTRIBUTE50 nvarchar(1)
Yuck....
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
August 11, 2015 at 9:09 am
Viewing 15 posts - 301 through 315 (of 9,643 total)