Viewing 15 posts - 8,956 through 8,970 (of 9,641 total)
how often will you be loading the file? I would use bulk copy and then do the header - detail processing.
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...
March 25, 2008 at 6:41 am
Grant Fritchey (3/25/2008)
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...
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,...
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...
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...
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...
March 24, 2008 at 9:58 am
Kimberly.Hahn (3/21/2008)
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...
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...
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. ...
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() )
March 21, 2008 at 10:16 am
Good question. Are you getting the data in subscript notation? I would have to guess you would need to use unicode (nchar, nvarchar) as a start.
March 21, 2008 at 10:09 am
You can compare it to System.DbNull.Value and then convert it to String.Empty.
IIF(parameters.yourdate.value = System.DbNull.Value, String.Empty, paramterd.yourdate.value)
March 21, 2008 at 10:06 am
Viewing 15 posts - 8,956 through 8,970 (of 9,641 total)