Viewing 15 posts - 54,211 through 54,225 (of 59,065 total)
I don't know for sure... but I think it's highly unlikely that MySQL will have the same nameing structure convention... never mind a user called "dbo".
November 9, 2007 at 12:12 am
SO... what does all of that mean? Did you use Ramesh's solution or not? If not, would you post your solution, please?
November 8, 2007 at 10:51 pm
You give up too soon 😉
[font="Courier New"]DECLARE @CrLf char(2)
SET @CrLf = Char(13) + Char(10)
SELECT COALESCE(NULLIF(Add1,' ') + @CrLf, '') + COALESCE(NULLIF(Add2,' ') + @CrLf, '') + COALESCE(NULLIF(Add3,' ') + @CrLf,...
November 8, 2007 at 10:37 pm
Jason Selburg (11/8/2007)
Thanks Jeff! I've never worked with Oracle so that info was very informative ... :hehe:
You bet, Jason... thanks for the feedback...
ps. I hate Oracle 😛
November 8, 2007 at 10:33 pm
Heh... thanks for the feedback... I actually wrote a cursor once or twice... it was to show how slow they were... 😉
November 8, 2007 at 10:30 pm
Greg,
I'm working on a couple of work arounds and a full "wish list" to Tony... I'll get back on these formatting issues... just not right now...
November 8, 2007 at 10:23 pm
RAGHAVENDRA NARAYANA (11/8/2007)
November 8, 2007 at 10:15 pm
Actually, after you asked, I did a bit more testing and I was completely backwards in my statement.
Using the testing code below I got a 3% to 97% comparison.
Where the...
November 8, 2007 at 10:09 pm
Heh... sounds to me like someone wrote an accidental Cartesian join and decided to wait for it to complete...
November 8, 2007 at 11:26 am
Jason Selburg (11/8/2007)
Wow, that's pretty nice PW!Trigger, can you run both of these against your data and get the execution stats. My test shows PW's is a HUGE amount faster.
First,...
November 8, 2007 at 11:23 am
Do you know what *= means?
November 8, 2007 at 12:51 am
I just started going through the free chapter... glad to see there's some consideration for writing good code in there... maybe there's more in the rest of the book, but...
November 8, 2007 at 12:48 am
Viewing 15 posts - 54,211 through 54,225 (of 59,065 total)