Viewing 15 posts - 5,821 through 5,835 (of 5,842 total)
Quote from article: "
All software is licensed on a per computer basis. For example, if you wish to use SQL Backup on more than one computer you will need an...
February 28, 2007 at 8:16 am
Quote from article: "
All software is licensed on a per computer basis. For example, if you wish to use SQL Backup on more than one computer you will need an...
February 28, 2007 at 8:16 am
Quote from article: "
All software is licensed on a per computer basis. For example, if you wish to use SQL Backup on more than one computer you will need an...
February 28, 2007 at 8:15 am
>> I got sidetracked by other issues and haven't got to any of the newer suggestions yet.
WHAT?!?! You mean you don't get to work on one task to completion?!? OUTRAGEOUS!! ...
February 22, 2007 at 2:58 pm
it is almost certainly query caching that is getting you in trouble here.
do all your tables have an index on LST_DTE? do you have indexes on the columns joined...
February 22, 2007 at 11:29 am
Without seeing the code, I would bet that either 1) you are hard-coding a variable or two in your where clause in query analyzer which allows the query optimizer to...
February 22, 2007 at 8:23 am
Irrespective of why the code snippet you produced is running slower on sql2k5, wouldn't it be MUCH faster to simply create a table with the rows you DO WANT in...
February 12, 2007 at 7:19 am
1) There are a number of 'improvements' to your query:
set rowcount outside the query
use explicit transactions and error checking
SET ROWCOUNT 10000 --I might go with 50K here?
February 2, 2007 at 8:10 am
Here is the link for those that are wondering: http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1243
There were a number of quite contentious threads some time ago about how the sql server user community will lose...
January 29, 2007 at 2:27 pm
Colin, your query does exactly what I cautioned against. Suppose a line of a sproc wraps in syscomments (nvarchar 8000 IIRC), and it wraps in such a way to split...
January 3, 2007 at 8:50 am
Since you are a newbie to SQL Server (and appear to have been thrown into the deep end of the pool I will...
January 3, 2007 at 8:37 am
Be careful though. Sysdepends is not guaranteed to be accurate at all times. The most thorough way is to grep through syscomments with a LIKE clause of '%tablename%' and join...
January 3, 2007 at 5:08 am
Jurriaan, you should definitely NOT create the index before populating the data. This will simply lead to a very fragmented index right off the bat.
January 3, 2007 at 4:52 am
Well, if you build a clustered index it is gonna hurt! The entire table may well be rewritten out to the transaction log as the data is sorted and laid...
January 2, 2007 at 1:59 pm
Proper sizing of disk files for databases is something that is optimally done by the DBA, not by sql server hitting a full file and then auto-growing the file based...
January 2, 2007 at 1:11 pm
Viewing 15 posts - 5,821 through 5,835 (of 5,842 total)