Viewing 15 posts - 45,211 through 45,225 (of 59,095 total)
Heh... I have a hard time with a bank executive of a bank in trouble getting 500G to begin with. I'm with Rudy... "Pork chops awaaaaaaayyyyy!"
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 9:11 pm
Note possible using Bulk Insert alone. Is possible if you use a calculated column on the target table and, maybe, a bcp format file... but a simple post-import update...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 9:01 pm
Clarie Smith (2/13/2009)
However, I do NOT want to give the AppID the BULKADMIN server role for bulk import.
Why not? The only thing folks can do is execute a Bulk...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 8:58 pm
arun.sas (2/13/2009)
Thanks Lynn Pettisbut if i create the #temp with SLNO identity,then the clustered index realy needed?
ARUN SAS
Absolutely. And, since you can't use an index by name in the...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 8:49 pm
There's no need for any local variables nor the flow control of IF in this function...
CREATE FUNCTION uf_future_classes --uf_future_classes 15
(
...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 8:09 pm
Thanks Tony. Just one more question... is your goal to create a text file for Lucene or are you just going to pass it through the API?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 7:55 pm
Just a note... if I need a decimal of a certain precision and scale, I always lookup the number of storage bytes for that precision and go for the highest...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 7:45 pm
The term "don't want to rock the boat" is frequently practiced at all levels of management in a large number corporations that I've been exposed to. They should practice...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 7:40 pm
pshvets (2/13/2009)
I have a column which is integer data type and it represents number of seconds.
I need to convert it into MINUTES:SECONDS format.
Conversion of int into time is prohibited in...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 6:48 pm
Tony (2/13/2009)
I'll have to try this in similar places using functions and CTEs, and see what performs better.
I can end my week on...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 6:39 pm
Just an FYI for everyone in case there's a doubt... I've recently (10 minutes ago) had reason to move TempDB on one of my 2k5 dev boxes... it worked perfectly...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 4:12 pm
sushila (2/13/2009)
Jeff Moden (9/20/2007)
Thanks John and Rog... much appreciated!
You may be using the wrong layer to do database things in. The type of activety that you've both described should probably...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 11:44 am
DURGESH (2/13/2009)
i have a string as 'a;b;cde;f;ghi;d' or 'a;b;cde;f;ghi;defg'
now i want to split the given string as 'a;b;cde;f;ghi;' or 'a;b;cde;f;ghi;'
i tried using substring,left,charindex functions but i did not...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 13, 2009 at 6:22 am
I think you'll find that Michael's solution is absolutely the fastest because it uses only 1 implicit conversion and it's not character based.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 12, 2009 at 9:02 pm
Daryl (2/12/2009)
- meaning full alibi's... I always use alibis but A & B crapcodea
The term is "alias"... 😉
- do not Select INTO ____ , define the table and...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 12, 2009 at 8:53 pm
Viewing 15 posts - 45,211 through 45,225 (of 59,095 total)