Viewing 15 posts - 54,436 through 54,450 (of 59,072 total)
Yep... mine definetly fails for different languages... that's why I said you need to modify it for other languages. 😀
Ken's DATEFIRST solution would fix that.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:40 am
mrpolecat (10/23/2007)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:29 am
rog pike (10/23/2007)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:15 am
mrpolecat (10/23/2007)
Peter Larsson (10/23/2007)
I also lack the oppurtunity to call the SP twice in a row.I get an error "index already exists".
I thnk it would make sense to move the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:10 am
Peter Larsson (10/23/2007)
I also lack the oppurtunity to call the SP twice in a row.I get an error "index already exists".
I'll check it out, Peter... thanks for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:07 am
Sandy (10/23/2007)
Great Standard of Code,
I really feel its the way need to be done.
but i have a small issue here,
when i am trying to copy your code...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:03 am
Peter Larsson (10/23/2007)
Jeff, excellent code but I think you should start using QUOTENAME function for those having brackets, spaces or even single quotes in their table/column names.
Yep... that would work,...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 7:03 am
Fixed that... thanks for the observation... I always hate coverting working code into instructional code... I mess it up almost every time :hehe:
--Jeff Moden
Change is inevitable... Change for the better is not.
October 23, 2007 at 12:08 am
Now you know why I don't let images and other blobs into may databases... too much of a hassle. I just store the names of files in the database...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 11:56 pm
I know... I'm a sick man... I usually have a primary key and an alternate key... except for a relatively static state or country reference table, I don't like natural...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 11:39 pm
If making RAC open source would stop your spamming, I'd be happy about that. 😛 And, your insults are a great way to drum up business :w00t:
Just curious... how...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 11:22 pm
WHERE = NULL will not work unless you make a pretty uncommon (some consider it "dangerous") change to the ANSI NULL settings of the server. NULL is not "nothing"...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 9:58 pm
Look again... you're not getting what you think you're getting... run this small demo to see why...
[font="Courier New"]DECLARE @Params VARCHAR(100)
SET @Params = 'abcdefghij[ImportDate=12345678901234567890'
SELECT SUBSTRING(@Params,PATINDEX('%[ImportDate=%', @Params)+13,19)[/font]
...did you...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 9:50 pm
I'm curious... what did you need this for?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 9:24 pm
Not sure what you're using to do the move, but can you split the job? Trying to move ore even UPDATE more than 1 or 2 million rows at...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 22, 2007 at 9:17 pm
Viewing 15 posts - 54,436 through 54,450 (of 59,072 total)