Viewing 15 posts - 796 through 810 (of 1,170 total)
With changing the recovery model to Simple you've broken the backup chain.
November 20, 2013 at 11:51 am
This performance counters poster is still pretty excellent.
http://www.quest.com/backstage/images/promotions/SQLServer-Perfmonance-Poster.pdf
You can additionally use the OS performance monitor (perfmon.exe) to obtain the counters' values and make a comparison, in order to conclude...
November 19, 2013 at 2:36 pm
Grace09 (11/19/2013)
You can use this link http://blogs.msdn.com/b/mvpawardprogram/archive/2012/06/04/using-sys-dm-os-ring-buffers-to-diagnose-memory-issues-in-sql-server.aspx
As you can see you can only see some info that you can see at other places on your system as well. However it's...
November 19, 2013 at 2:27 pm
Grace09 (11/19/2013)
NodePageLifePageLife_SBufferPool_PagesBufferPool_MiBBufferPool_MiB_S
12:08:19436995359046 41867.547...
November 19, 2013 at 2:03 pm
For IO bottlenecks you need sys.dm_io_virtual_file_stats and sys.dm_io_pending_io_requests
For Memory pressure you can use sys.dm_os_buffer_descriptors, sys.dm_os_performance_counters and others.
The full grouped list of the dynamic views is here http://technet.microsoft.com/en-us/library/ms188754.aspx
For e.g. you can...
November 19, 2013 at 12:50 pm
A good start is a book. On this site you have some books: http://www.sqlservercentral.com/Books/
One really good is
"Troubleshooting SQL Server
A Guide for the Accidental DBA
Jonathan Kehayias and Ted Krueger"
Regards
IgorMi
November 19, 2013 at 9:03 am
THE-FHA (11/19/2013)
So i have to first upgrade the instance to 2012, i thought there's a new better way.Thanks thou.
You can also install a separate named instance of sql server 2012,...
November 19, 2013 at 8:59 am
The same way as you do it on sql server 2008 r2.
November 19, 2013 at 8:54 am
Lowell (11/19/2013)
d.velders (11/19/2013)
Does anyone have an example on how to do this or even better...
November 19, 2013 at 8:48 am
What do you mean by stress more concretely?
It can be anything from IO bottlenecks, high CPU utilization, Memory issues (memory pressure) , blocking and deadlocking ...
November 19, 2013 at 8:27 am
Hi
I found this in my repository
select 'TO', 'Object name' = (s6.name+ '.' + o1.name),
[Type] = substring(v2.name, 5, 16),
[Updated] = substring(u4.name,...
November 19, 2013 at 7:44 am
Krishna1 (11/14/2013)
Dear AllAfter shriking DB initial size changed.
Shrinking DB is different from Shrinking a File. You could have shrunk only the log file.
Shrink usually introduces a lot of fragmentation.
You're lucky...
November 19, 2013 at 4:25 am
Koen Verbeeck (11/19/2013)
IgorMi (11/19/2013)
What about when one of those day is a public/national holiday?
Good point.
It might be easier to create a stored procedure that checks if the job should run...
November 19, 2013 at 4:05 am
What about when one of those day is a public/national holiday?
November 19, 2013 at 3:43 am
Hi,
You have duplicate rows and you cannot do a correct update.
Ok,
You can introduce a row id column (i.e. id with identity property), and then you'll have a better control over...
November 19, 2013 at 3:14 am
Viewing 15 posts - 796 through 810 (of 1,170 total)