Viewing 15 posts - 1,171 through 1,185 (of 2,044 total)
1. How can I tell how much memory SQL Server is allocating and using?
There are specific performance counters like sql server memory : ...
October 16, 2007 at 1:16 am
another free commandline utility is 7-Zip
October 13, 2007 at 10:14 am
At busy-server times I use Query Analyzer instead of EM which tends to lock up at such moments.
sp_who2: show current connections
DBCC INPUTBUFFER (spid): show sql-query
It has also a schema-browser (tools->Object...
October 10, 2007 at 3:15 am
I see other things running on the server, such as mssearch.exe (Mem usage 52,352 K), so it would be good to get advice about what services can be safely turned...
October 9, 2007 at 10:37 am
Hello,
I haven't worked with servers >2gb yet.
But found a great link about how sql server deals with memory:
http://sqljunkies.com/Tutorial/0D4FF40A-695C-4327-A41B-F9F2FE2D58F6.scuk
So my questions are:
1. Does the quoted advice above mean I should...
October 6, 2007 at 11:56 am
Are the database files excluded from the antivirusscanner?
October 6, 2007 at 11:29 am
BACKUP DATABASE testdb
TO DISK='\\ServerB\Backup\ServerA\testdb.bak'
*Make sure the executor (sql agent) has enough permissions on the disk
*Try to restore at least one backup. We had issues with windows 2003 without servicepack &...
October 6, 2007 at 11:17 am
Quite a coincidence, I went to a Oracle 11g launch presentation today.
October 3, 2007 at 10:55 pm
sql-server-performance has a nice list of articles for setting a baseline / performance
http://www.sql-server-performance.com/articles/audit/main.aspx
Buffer cache hit ration 99% -> OK no more memory is needed, otherwise the cache wouldn't maintain 99%...
October 3, 2007 at 12:21 pm
Do you have a backup of msdb?
There was an I/O error in the past that caused the torn page
Torn_page_detection:
This recovery option allows SQL Server to detect incomplete I/O operations caused...
October 3, 2007 at 11:43 am
*the @@Servername could still point to an older name, it doesn't autoadjust to the wins name.
at http://www.databasejournal.com/scripts/article.php/1496451
you can find a script that resets it to its wins name
sp_dropserver ...
sp_addserver ...
restart
*depending...
October 2, 2007 at 10:17 am
Trez,
Have you rechecked the odbc-connection?
Other things to check:
*select @@SERVERNAME /*internal name of server*/
*change the password/account used by the software account to connect to the development server (shouldn't hinder production).
*Is there...
September 30, 2007 at 11:40 am
Viewing 15 posts - 1,171 through 1,185 (of 2,044 total)