Viewing 15 posts - 1,366 through 1,380 (of 2,436 total)
First, have you checked your NIC card settings ? Particularly 'speed' and 'mode'. Not having the NIC card match the switch port can cause this type of issue. Since it's...
May 4, 2006 at 11:30 am
What is the salary range ? As to the location, are we looking at Bangalore, India ?
May 4, 2006 at 10:47 am
I've actually been a participant in 2 of the industry salary surveys for the last 3 years. I've done this for fun and to receive the "free" copy of the...
May 2, 2006 at 12:06 pm
"select count(indexed_column) from table" is probably your best bet where indezxed column is the narrowest available to get a row count.
However select count(*) just prior to your actual query will...
April 27, 2006 at 3:34 pm
David - one old fart to another - I have to now buy a hat just so I can take it off to you sir !
April 27, 2006 at 2:14 pm
We do it for a healthcare imaging system (x-ray, mri, pet, cat scans). It's more of a migration from super fast disks to fast disks, to slow disks at present....
April 27, 2006 at 1:10 pm
For tables less than one extent, 8 pages or 64 kb, improvement does not much matter. Remember SQL Server reads 'extents' and writes 'pages'.
April 27, 2006 at 11:53 am
You can change the logical names of the mdf and ldf files as well too to be consistant. You'll need to do this right after the restore with this little...
April 27, 2006 at 11:49 am
master is so small, <25 Mb, and msdb is usually <50Mb. I do it daily and so should you. In this world of cheap disk and cheaper tape in the...
April 27, 2006 at 10:47 am
Words for the cynic/realist/fatalist based on your point of view or situation:
Shepkowski's Employment Credo
-- How much do I get paid ?
-- When do I get paid ?
-- What do I...
April 27, 2006 at 10:40 am
A deadlock can only involve 2 parties to the best of my knowledge. If there is a third (or more), I believe that they would be blocked. So it sounds...
April 27, 2006 at 9:54 am
I'd hold off on the memory upgrade for a bit. Just because Total and Targte Memory are the same. I'd utilize the Windows Performance Monitor a bit and start checking...
April 27, 2006 at 9:27 am
Before all is said and done I'd like to suggest that the issue may be 'blocking' not 'deadlocking'. I say this because of the lack of a mention of messages...
April 27, 2006 at 9:18 am
John is correct - your SQL Server is bahving normall in it's memory usage. I've noticed for 'standard edition' ~1.7 to 1.8 Gb used. If you go to 'enterprise edition'...
April 26, 2006 at 5:08 pm
Assume nothing !!!
Here's my 'short list' for tuning:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all tables
exec sp_refreshview for all views
Round II
...
April 26, 2006 at 5:05 pm
Viewing 15 posts - 1,366 through 1,380 (of 2,436 total)