Viewing 15 posts - 76 through 90 (of 174 total)
Here are some quick dmv queries you can run to point at a possible memory shortage issue, keeping in mind that your deadlock issue and memory are unrelated:
SELECT @@SERVERNAME AS...
October 13, 2016 at 8:06 am
Hi, this query may get you some of what you are looking for (fill in your db name):
--Redo Queue KB
--Total number of kilobytes of hardened log that currently remain to...
October 11, 2016 at 7:26 am
Hi, are you trying to connect to the Report Server instance from your workstation using SSMS, or, are you RDP'ed to the server itself (where the reporting services are running...
October 7, 2016 at 9:13 am
Hi, are you running a query similar to this one and still getting the recipients error message?
USE msdb
GO
EXEC sp_send_dbmail @profile_name='DBServerAlerts',
@recipients='some.user@acme.com',
@subject='Test message',
@body='Congrats, Database Mail received by you Successfully.'
Sorry, I...
October 6, 2016 at 9:10 am
I have never explored that option before so afraid to comment on. Another thing to note, Microsoft recommends that you use the PHYSICAL_ONLY option for frequent use on production...
October 5, 2016 at 3:51 pm
Hi, all the SAN migrations I have been a part of usually consisted of (post migration) checking the Sql Server services and access to the instance, databases, and maybe a...
October 5, 2016 at 9:02 am
Hi, this is an excellent article to look at regarding why checkdb takes so long. You will notice the size of the database is his #1 item.
October 5, 2016 at 6:42 am
Hi Mick, according to this article [http://www.sqlskills.com/blogs/glenn/how-to-perform-a-rolling-edition-upgrade-while-using-database-mirroring/] which is one version back from yours (2012), you can pretty much do as you describe; upgrading the secondary instance first without having...
October 4, 2016 at 12:57 pm
Or, have not done this in a while, in ssms, go the properties of the database on the Primary server, then go to Transaction Log Shipping, and uncheck the "Enable...
September 29, 2016 at 12:09 pm
Researched this a little and this: [http://borishristov.com/blog/modifying-not-owned-sql-agent-jobs-without-being-a-sysadmin/] looks like the only available option.
September 29, 2016 at 12:00 pm
The only thing you could do is try and speed up the mirroring process overall. Most of that is dictated by the network speed between the primary and secondary....
September 29, 2016 at 6:13 am
Hi Mike, Sql Server allows this, but, as a good practice due to the I/O and disk loads, it is better to schedule your system backups at a different time...
September 28, 2016 at 3:29 pm
Correct,
The time required for synchronization depends essentially on how far the mirror database was behind the principal database at the start of the session (measured by the number of...
September 28, 2016 at 8:17 am
High Safety Mode -
After synchronization finishes, every transaction committed on the principal database is also committed on the mirror server, guaranteeing protection of the data. This is achieved by...
September 28, 2016 at 7:05 am
Right, thinking you would perform these steps: 1) Break (remove) log shipping 2) Perform an upgrade to the Primary instance which will upgrade the database 3) Perform the same...
September 27, 2016 at 3:51 pm
Viewing 15 posts - 76 through 90 (of 174 total)