Viewing 15 posts - 56,071 through 56,085 (of 59,078 total)
Perfect... Couldn't have said it better... and have been through this with these folks more than once. Almost nothing worse than folks that spam forums.
June 21, 2007 at 8:58 am
Even if you don't build views on the sorted view, consider this... what if you want the data from the view to be in a different order? The view will...
June 21, 2007 at 8:52 am
Ummmm, why can't you just use a simple insert statement???? ![]()
INSERT INTO #Log (MessageCount)
SELECT LTRIM(STR(@@ROWCOUNT))+'...
June 21, 2007 at 7:35 am
Here's a few more links from the Google search...
http://www.vesigo.com/SQLServer/DatabaseServerComparison.aspx
http://www.promoteware.com/Module/Article/ArticleView.aspx?id=23
http://builder.com.com/5100-6388-1054385.html
http://searchsqlserver.techtarget.com/originalContent/0,289142,sid87_gci1211452,00.html
June 21, 2007 at 6:58 am
Here's a couple of other things from a more recent article that compares MySQL 5 against SQL Server... these things are crucial, in my book, and favor SQL Server... a...
June 21, 2007 at 6:13 am
And, they would have to rewrite any existing code because the many of the advanced SQL Extensions in both are different... SQL is NOT SQL
June 21, 2007 at 6:05 am
IF OBJECT_ID('TempDB..#FileExist') IS NOT NULL
DROP TABLE #FileExist
Make sure the name of the table is correct.
June 21, 2007 at 12:13 am
Alvaro... really, really bad idea to sort in a view... really bad...
June 20, 2007 at 11:56 pm
Like everyone has stated... bad idea. Should be done with reporting software or a GUI if you have one. I, too, question the table design for having what appears to...
June 20, 2007 at 6:05 pm
CAST (CHD_MONTHLY_INT_RATE AS DECIMAL (12,6) ) /100000
June 20, 2007 at 5:40 pm
The likely reason it took 78 seconds the first time is because it probably made TempDB larger... the default initial size of TempDB is woefully inadequate. Our production box at...
June 20, 2007 at 9:33 am
Heh... thanks, James. Yeah, I use it a lot, as well... there are a couple of methods that are a bit faster, but there's none simpler or easier to write. ...
June 20, 2007 at 7:23 am
Pretty sure thats not the way it works, Tomm. If it's 14:00 in central and GMT is used to write the time, the time that will be written is 20:00...
June 20, 2007 at 7:18 am
Viewing 15 posts - 56,071 through 56,085 (of 59,078 total)