Viewing 15 posts - 241 through 255 (of 279 total)
cdumont (10/14/2011)
The Maintenance job...
October 14, 2011 at 10:45 pm
ALTER DATABASE tempdb MODIFY FILE...
followed by restarting sqlserver is the easiest way.
If your tempdb grew too big, you might consider pre-sizing it big and disabling auto-growth.
October 14, 2011 at 10:29 pm
ketan_katkar (10/14/2011)
It's seem to be MS SQL Server's I/O operation performance issue. To imporove you MS SQL I/O performance you need to do as per below.
Kindly restructure your MS SQL...
October 14, 2011 at 10:20 pm
NaDi (10/14/2011)
i have here 3 tables, the cluster table, field table and a variety table..
here are the conditions:
-1 variety can be planted in many...
October 14, 2011 at 8:47 pm
battery_acid_h (10/14/2011)
The dynamics NAV databases can have several companies in a...
October 14, 2011 at 8:19 pm
Sql server isn't adding that select, your c# code is.
What kinds of waits are you seeing?
http://www.simple-talk.com/sql/performance/investigating-sql-server-2008-wait-events-with-xevents/
October 14, 2011 at 8:01 pm
What kind of hdd's?(interface, speed, etc)
What is buffer cache hit ratio?
Disk queue length for each drive?
How big are db's?
Workload read or write intensive?
How many transactions/sec?
Any other io errors in event...
October 14, 2011 at 5:55 pm
Too many vlf's?
Google: 8 steps to better transaction log throughput
October 14, 2011 at 5:30 pm
You can change it right from ssms. No restart or reboot is required. take the current size of your buffer pool, subtract 200 mb, and try that as...
October 13, 2011 at 7:19 pm
that query needs to take a very brief exclusive lock on the database (like 1-2 seconds).
if others are currently using the database, your query will block indefinately. check who the...
October 12, 2011 at 10:53 pm
have you tried running it in 32 bit mode on the server?
October 12, 2011 at 10:47 pm
which driver are you trying to use?
sql native client? (sqlncli 9.xxxx)
sql native client 10? (sqlncli10 10.xxxx)
Sql server? (sqlsrv32 6.xxxxx)
the 64 bit install for sql native client installs both...
October 12, 2011 at 10:43 pm
sqlserver12345 (10/12/2011)
24:11.4spid1sAppDomain 65 (SMS_N07.dbo[runtime].68) unloaded.
24:14.6spid65AppDomain 66 (SMS_N07.dbo[runtime].69) created.
select single_pages_kb + multi_pages_kb + virtual_memory_committed_kb
from sys.dm_os_memory_clerks where type =...
October 12, 2011 at 10:20 pm
you need to quote the commands and enclose them in a script block.
powershell "&{ Get-WmiObject -Class Win32_Service -computername SERVERNAME | select @{name='ServerName';expression={$_.__Server}}, Name, DisplayName, StartName, StartMode | Export-Csv c:\temp\monitor\test.csv...
October 12, 2011 at 8:15 pm
Viewing 15 posts - 241 through 255 (of 279 total)