Viewing 15 posts - 1,231 through 1,245 (of 2,436 total)
I'd rather have slow, steady and accurate then some of the other things I've seen posted on the web elsewhere. Take your time Steve and keep up the good work...
July 21, 2006 at 1:04 pm
No Arrays <period>. An array is a repeating group, not unlike like rows in a table. So it's kind of 'not allowed' in a relational database.
July 21, 2006 at 1:03 pm
Here's a bit more detail taking off on Colin's advice:
Here's my 'short list' for tuning:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all...
July 21, 2006 at 12:54 pm
I'd also look at the size of the table. Any table less than 1 Extent (8 - 8k pages) will not be defragmented anyway no matter what you do.
July 21, 2006 at 12:53 pm
Whether or not there is a space after the command flags has nothing to do with it. I'd check into your Windows Security and Authentication on the Server since you...
July 21, 2006 at 12:51 pm
With no data in the nvarchar column whatsoever - 2 bytes (1 indicating nullability, one indicating length) and 1 bit in the null bit map.
Check out BOL for all...
July 21, 2006 at 12:48 pm
If you are meaniing a backup file other than the normal full backup (I call them 'special' or 'one-time' backups'), there are a few reasons. DB upgrades, software upgrades and...
July 21, 2006 at 12:35 pm
Make notes of:
Get backups of:
July 21, 2006 at 11:59 am
Please do not post the same topic multiple times ...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=296039
July 21, 2006 at 11:38 am
Transaction logging is part and parcel of a relational database. This is what helps you maintain data integrity. Local temporary tables (#) and global temporary tables (##) are created in...
July 21, 2006 at 11:34 am
If you network is 'switched' you will only see the SQL Servers 'broadcasting' on your current network segment. If there are firewalls present this may also affect the listing of...
July 21, 2006 at 10:15 am
Its not about:
July 21, 2006 at 10:03 am
If hardware is similar then you may need to do a little maintenance. It may alleviate your performance disparity.
Here's my 'short list' for tuning:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with...
July 20, 2006 at 9:46 am
Very goog points Chris ! I am curious as well.
July 19, 2006 at 10:25 am
I agree, schedule the time to build a new cluster if at all possible. If you do not take this approach then you may be in for the same amount...
July 19, 2006 at 10:24 am
Viewing 15 posts - 1,231 through 1,245 (of 2,436 total)