Viewing 15 posts - 54,211 through 54,225 (of 59,068 total)
Shaun McGuile (11/9/2007)
!= is th inequality in C# get used to it as CLR programming takes off!:hehe:
Heh... good point. But have had this argument with many other folks... there's...
November 9, 2007 at 7:00 am
Although the "OR" in your example allows each value to be matched and displayed, it does not form a Cartesian product...
DECLARE @TableA TABLE (SNo CHAR(1),ENo INT)
INSERT INTO @TableA (SNo,ENo)
SELECT...
November 9, 2007 at 6:56 am
Sure... how many rows in the temp table?
November 9, 2007 at 12:18 am
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
Viewing 15 posts - 54,211 through 54,225 (of 59,068 total)