Viewing 15 posts - 46 through 60 (of 479 total)
I use ScriptDb from codeplex.com.
It does the whole database (tables, views, functions, etc) in one go so you can then just compare with your reference copy.
May 1, 2009 at 7:21 am
As I mentioned elsewhere, I still remember thinking "That's a big spaceship".
Then Darth's Star Destroyer comes into view, and goes on and on and on and I thought "No! THAT's...
April 30, 2009 at 3:02 am
Lynn Pettis (4/29/2009)
GilaMonster (4/29/2009)
Bruce W Cassidy (4/29/2009)
[font="Verdana"]International Star Wars day... "May the 4th be with you."[/font]*groan*
Hmmm, we were discussing having another Starwars day.....
Now for something totally the same...
How many...
April 30, 2009 at 2:40 am
josephptran2002 (4/28/2009)
Yes there is a whole bunch of column fields name in where clause. But if you look carefully then it's just repeated columns such as DEClearedDate then DESecondClearedDate or...
April 29, 2009 at 7:04 am
Bob Hovious (4/23/2009)
1....
April 24, 2009 at 4:15 am
Bob Hovious (4/23/2009)
Derek, please don't feel you have to apologize. That needed to be tested. As usual, the answer is "It depends." ...
April 23, 2009 at 8:31 am
Hi Bob,
I did a few more tests (beyond the earlier table) and on my systems, the double-tally acheives better than half CPU time at long executions (.e.g 146 second vs...
April 23, 2009 at 8:21 am
OK. I ran more tests. It seems that on my systems, tally+charindex performs better on lower numbers but the double tally scales better.
[font="Courier New"]
Tally + CHARINDEX Double tally
Rows in Rows...
April 23, 2009 at 5:06 am
Sorry to put a fly in the ointment, but I've tried a variation on your double-barrelled tally solution based on a problem mentioned here (splitting sentences into words at spaces).
I...
April 23, 2009 at 4:19 am
SanjayAttray (4/22/2009)
order by 2
or
select NULL,'manoj'union select Null,'1'union select NULL,'manoj'
order by 1
gives you same result.
NULL1
NULLmanoj
I tried on all sql server versions and result is same. ...
April 22, 2009 at 10:43 am
As Jeff indicated, the whole problem of splitting sentences into words can be done by the method he points to.
However, even if fnWord is treated as a 'black box', the...
April 22, 2009 at 7:57 am
Phil Factor (4/21/2009)
http://www.sqlservercentral.com/Forums/FindPost696606.aspx
Thanks
April 21, 2009 at 10:03 am
Phil Factor (4/21/2009)
My Set-based 'quirky update' solution is half way down the page on page 6 of this thread. http://www.sqlservercentral.com/Forums/Topic695508-338-6.aspx
Not for me it isn't! As far as I'm...
April 21, 2009 at 8:03 am
I clicked this as a T-SQL question I'd overlooked. I've never used MDX yet and would join the view that MDX is not T-SQL, so the 'except' operator is not...
April 20, 2009 at 8:20 am
Of course, when I thought about it, the Perl to split a string would simply be.
@lines = split('\ n',$string)
Since I usually need to do more complex matches I immediately thought...
April 17, 2009 at 8:04 am
Viewing 15 posts - 46 through 60 (of 479 total)