Viewing 15 posts - 8,956 through 8,970 (of 9,643 total)
If all you want is to insure the rows are stored in insert order add a clustered index to the incrementing numeric column.
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
March 25, 2008 at 10:01 am
From BOL:
...only one null value is allowed per column.
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
March 25, 2008 at 9:42 am
how often will you be loading the file? I would use bulk copy and then do the header - detail processing.
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
March 25, 2008 at 9:38 am
Good article. The only question I have is on the performance testing. By making the heirarchyid column the primary key you gave that method a distinct advantage over...
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
March 25, 2008 at 6:41 am
Grant Fritchey (3/25/2008)
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
March 25, 2008 at 6:15 am
According to the article noted in my previous post, if you are running the sp from SSMS, Query Analyzer, or using .NET with a commandtype of text you will get...
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
March 24, 2008 at 3:25 pm
Lynn,
Thanks for the information thus far. It gave me some things to look at. Unfortunately none of them actually worked. I can live without the reply 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
March 24, 2008 at 3:19 pm
Okay here is another follow up. On my 32-bit laptop running 2005 SP2 developer edition I changed the service to run under my login so there would be 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
March 24, 2008 at 10:08 am
If the source data has a length of 6 shouldn't the destination have a length of 6? Is the actual data guaranteed to be only 5 characters? If...
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
March 24, 2008 at 10:01 am
In my understanding Unicode characters are extended characters. From BOL:
The Unicode specification defines a single encoding scheme for most characters widely used in businesses around the world. All computers...
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
March 24, 2008 at 9:58 am
Kimberly.Hahn (3/21/2008)
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
March 24, 2008 at 9:27 am
Thanks Lynn.
So your Services account has email setup on the exchange server? I don't think at this point mine does because I really didn't foresee a need using 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
March 24, 2008 at 8:13 am
What schema is it in and what is your default schema? Maybe SQL is checking in the default schema and then finding it in the qualified schema.
Could be 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
March 21, 2008 at 2:57 pm
Have fun officiating. I used to that quite often as well. I thought DBA's were supposed to be geeks!
If you could post the setup I'd appreciate it. ...
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
March 21, 2008 at 2:43 pm
According to SSIS help the correct function is GetDate() so this should work:
("DS_Trouble_Ticket"."RD-CD">=GetDate() AND "DS_Trouble_Ticket"."RD-CD"< DateAdd(DD, -1, GetDate() )
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
March 21, 2008 at 10:16 am
Viewing 15 posts - 8,956 through 8,970 (of 9,643 total)