Viewing 15 posts - 4,861 through 4,875 (of 5,843 total)
lookup the INDEX= hint for the FROM clause in BOL. You can force a query to use a particular index. Now you can compare the query cost (show...
December 9, 2008 at 7:47 am
Lav, based on the nature of the questions you are asking I highly recommend you read a book or two on SQL Server 2005 development before continuing with your project....
December 4, 2008 at 11:26 am
Gaby Abed (12/3/2008)
1. If you have 64-bit windows, skip this step and go to step 2. If you have 32-bit...
December 3, 2008 at 10:34 am
Since you seem to have 12 drives available, I would use SQLIO and test several configurations. Search online for guidance on how to use that app and even for...
December 3, 2008 at 6:15 am
SQL Server only takes memory as it is needed. Perhaps you only have (or access) a few GBs of data?
December 3, 2008 at 6:04 am
DBCC MEMORYSTATUS?? search online for documentation.
December 3, 2008 at 6:01 am
Ninja's_RGR'us (12/1/2008)
Sure you can go with the "cheap" one... but look at the # of posts answered and see for yourself who is better qualified for the job :D.
Maybe you...
December 1, 2008 at 1:30 pm
1) since this is SQL 2005, the best practice is to use ALTER INDEX ... to perform index maintenance instead of DBCC INDEXDEFRAG...
2) I don't know why you need to...
November 28, 2008 at 9:15 am
Ninja's_RGR'us (11/27/2008)
November 27, 2008 at 8:21 am
Reading this thread one thought comes to mind: Paresh, you REALLY need to hire an experienced person to help you both evaluate what form of High Availability will meet...
November 27, 2008 at 8:07 am
Forums are for small, targeted help situations. This is NOT that! 🙂 230 lines of code in a sproc with nested cursors referencing multiple tables with...
November 27, 2008 at 6:51 am
In addition to the update all statistics with fullscan, what about the configuration? Is the hardware identical and identially configured? Are sql server settings the same? Did...
November 27, 2008 at 6:46 am
I tried the following calls, all with same error:
SELECT dbo.MoneyToWords(99999999.99, 'dollar(s)', 'and', 'cent(s)')
SELECT dbo.MoneyToWords(1, 'dollar(s)', 'and', 'cent(s)')
SELECT dbo.MoneyToWords('9.99', 'dollar(s)', 'and', 'cent(s)')
SELECT dbo.MoneyToWords('1.10', 'dollar(s)', 'and', 'cent(s)')
November 26, 2008 at 3:49 pm
1) I recommend Professional SQL Server 2005 CLR Programming by WROX
2) SQL 2008 will allow for large CLR types if needed. I didn't review the needs carefully, but I...
November 26, 2008 at 3:46 pm
That looks pretty slick! A minor nitpick would be to use UNION ALL for populating the table variable. Also, if this were to be used regularly I would...
November 26, 2008 at 11:08 am
Viewing 15 posts - 4,861 through 4,875 (of 5,843 total)