Viewing 15 posts - 1,096 through 1,110 (of 2,436 total)
You just gotta love those "improvements" to the product !!!
October 12, 2006 at 10:34 am
It's an outline of steps to take in order to address poorly performing queries and databases.
October 12, 2006 at 10:22 am
Interesting ... however when you break it down to the most basic element - its just a tool. With any tool, some tools work better than others for specific purpose(s)....
October 12, 2006 at 10:03 am
A little something for future reference ...
... 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...
October 11, 2006 at 4:31 pm
If this is a production server then you are limited. If you have a development/test server then you could use the Developer Edition, which has everything you need and more, and...
October 11, 2006 at 2:08 pm
Since Windows caches DNS information you may have to resort to some specific windows level actions on your machines in addition to the abovementioned items.
For the clients this would be:...
October 11, 2006 at 2:06 pm
I'd look into table partitioning. One partition per week.
October 11, 2006 at 11:56 am
There are many, many more that provide software as well. GE I have no faith in whatsoever. We have a GE system totally supported by them on a separate domain...
October 11, 2006 at 10:36 am
You may want to search this site for "parameter sniffing". It should provide some alternative and very important insights.
October 9, 2006 at 1:29 pm
Check BOL - ALTER DATABASE, SIZE MAXSIZE, GROWTH
and an example:
---
alter database master modify file
(name = master,
size = 25MB,
maxsize = 51MB,
filegrowth = 25MB)
go
checkpoint
go
alter database master modify file
(name = mastlog,
size = 25MB,
maxsize...
October 6, 2006 at 2:53 pm
It may be a case of not having the proper PATH. Here's a few eye opening commands from the 'old' DOS days that may help:
October 6, 2006 at 12:05 pm
Are you running EM from your desktop or from the SQL Server ? What windows account are you logging in as ? Does the windows account that you are logging...
October 5, 2006 at 10:22 am
Viewing 15 posts - 1,096 through 1,110 (of 2,436 total)