Viewing 15 posts - 4,366 through 4,380 (of 9,253 total)
More importantly are they differing versions of the Windows OS
What OS are the current nodes?
What OS are the new nodes to be?
January 25, 2013 at 6:45 am
The following when executed against the LS primary databases instance will return configuration info
exec sp_help_log_shipping_primary_database 'primaryLSdb'
The following when executed against the LS secondary databases instance will return configuration info
exec sp_help_log_shipping_secondary_database...
January 25, 2013 at 6:43 am
ipgsql (1/24/2013)
Looking for some opinions/links. If a SQL server (OLTP) is restricted to a single box with max 8 drives, would four RAID1 arrays (OS,TEMPDB,LOGS,DATA) be the way to go?
Or...
January 25, 2013 at 2:58 am
Gijs Laandrecht (1/24/2013)
I just can't figure out WHY should I configure the Always On feature when the SQL-server is in a Failover Cluster already?
The AO nodes must be part of...
January 25, 2013 at 2:15 am
siddiquiakmal (1/24/2013)
Call sp_define_log_shipping_monitor with @delete_existing=1...
Have you tried removing the LS monitor as detailed above?
January 25, 2013 at 2:02 am
Leo.Miller (1/24/2013)
There is a difference between High Availablity and Disaster Recovery.
No! Really, you think?
January 25, 2013 at 1:57 am
Is this a VMWare ESX farm or some other hypervisor?
Which version of the hypervisor are you using?
Are the virtual machines disks all virtual disk files or are you using Raw...
January 25, 2013 at 1:55 am
ChrisM@home (1/24/2013)
How about EXCEPT?
+1
January 24, 2013 at 5:02 pm
I would use the sys.database_files catalog and compare that against sys.master_files
January 24, 2013 at 9:27 am
SQL* (1/24/2013)
Hi,Thanks,
But can you tell me any scenarios where we can use Clustering/Mirroring together.
I'll keep this brief as there are already a wealth of articles and white papers on...
January 24, 2013 at 6:34 am
If you have availability groups set up and working why on earth do you want to use Log Shipping?
This details how to migrate from Log Shipping to AO groups, this...
January 24, 2013 at 1:29 am
and all that's easier than a quick check in the dbo.sysjobhistory table??
January 23, 2013 at 11:01 am
NJDave (1/23/2013)
I am installing SQL Server 2008 R2 Enterprise on a 2 node cluster and reached the instance configuration in the wizard. There is a field to complete labeled "SQL...
January 23, 2013 at 9:22 am
selectj.name
, convert(smalldatetime, convert(varchar(20), max(jh.run_date)))
, CASE jh.run_status
WHEN 0 THEN 'Failed'
WHEN 1 THEN 'Success'
WHEN 2 THEN 'Retry'
WHEN 3 THEN 'Cancelled'
END AS Run_Status
from msdb.dbo.sysjobs j
inner join msdb.dbo.sysjobhistory jh on
j.job_id = jh.job_id
where j.name =...
January 23, 2013 at 8:59 am
Viewing 15 posts - 4,366 through 4,380 (of 9,253 total)