Viewing 15 posts - 46 through 60 (of 67 total)
Hi
You might also want to check out the Microsoft Virtual Academy Training link below.
Watch the video on "Designing a Backup Recovery Solution for SQL Server"
I hope this helps.
Thanks
Best...
April 21, 2016 at 2:15 am
Hi!
What are the errors shown in your SQL error logs?
Have you checked this link? https://support.microsoft.com/en-sg/kb/2857849
Thanks
Best REgards,
April 20, 2016 at 9:08 pm
Hi
You may try the script below to query the SQL error logs. There you will see when a failover happened.
declare @Time_Start datetime;
declare @Time_End datetime;
set @Time_Start=getdate()-2;
set @Time_End=getdate();
-- Create the...
March 23, 2016 at 11:43 pm
Hi
You may refer to the link below.
https://msdn.microsoft.com/en-us/library/ff878487.aspx
There is a section in the article about prerequisites and restrictions for using a SQL Server Failover Cluster Instance (FCI) to...
March 23, 2016 at 11:36 pm
Our issue has been resolved after rebooting the server.
March 22, 2016 at 10:52 am
Hi All,
You may try the script below. it is an enhanced version of the blocking query. Additionally, it captures the blocked table and index name.
;WITH T1 AS (
...
March 19, 2016 at 2:13 am
Hi
"but the job in Node 1 will stop after a few seconds" what I mean is this job will successfully run too but it wont create a backup file in...
March 18, 2016 at 7:09 am
Hi Durai Nagarajan,
Set up your existing SQL jobs on both nodes but disable the jobs on your secondary replica. The reason for this is that in case you encounter failover,...
March 18, 2016 at 6:26 am
Hi
No. We haven't. Have you encountered this problem as well?
Best Regards,
November 7, 2015 at 9:25 pm
Hi Daniel Hughes,
Have you resolved the problem? What did you do?
Thanks
Best Regards,
November 5, 2015 at 8:27 am
Hi Grasshopper,
you may use the query below to check which index/es consumes most buffer pool memory.
USE DB_Name;
GO
;WITH src AS
(
SELECT
[Object]...
October 5, 2015 at 10:36 pm
If your database has a lot of modifications you may want to push that log backup time down to 15 mins or half hour.
Acceptable data loss window.
Yes. Those are great...
August 28, 2015 at 9:34 am
Hi Mike,
Below is the better backup strategy:
- Full backup every night
- Differential every 6 hours.
- T-log backups every 15 mins. or (30 mins.)
This backup strategy is easier to manage and...
August 28, 2015 at 12:04 am
HI
There will be no impact to the logshipping when you shrink the logfile. The Logshipping will NOT break.
Thank you.
Best Regards,
August 24, 2015 at 1:40 am
Hi
You might want to check out the index maintenance script from this site. https://ola.hallengren.com/
This stored procedure will allow you to set corrective actions based on the %fragmentation level...
August 24, 2015 at 1:30 am
Viewing 15 posts - 46 through 60 (of 67 total)