Archive

Archive for May, 2015

Microsoft SQL Server Distributed Replay Part 1

May 29, 2015 Leave a comment

 

The Microsoft SQL Server Distributed Replay feature helps you assess the impact of future SQL Server upgrades. You can also use it to help assess the impact of hardware and operating system upgrades, and SQL Server tuning.

SQL Server Distributed Replay is introduced with SQL Server 2012 (E.E).Works with SQL Server 2005 and later.

This can be installed independently of SQL Server Engine.

1. SQL Server Distributed Replay Controller
SQL Server Controller will be used to process the trace file and generate the replay processed files.

2. SQL Server Distributed Replay Client
SQL Server Client should be connected to the Controller. As these will be used to replay the processed files to the Target SQL Server.

 

Pre-requisites for installing Distributed Replay Component

 

Service Account for component Services

If you use more than 1 Distributed Replay client on multiple machines the same account should be used to connect the Distributed Replay Controller.

Distributed Replay Installation and Configuration

Install the Distributor Replay Controller and Client .

clip_image001

In the Distributed Replay Client Setup, The Controller Server name will be the Server name of the Distributed Replay Controller.

clip_image002

For more than 1 client, just install the Distributed Replay Client feature.

After the Installation Start the Services on Controller server and Client Services

Controller Server

NET STOP "SQL Server Distributed Replay Controller" 
NET STOP "SQL Server Distributed Replay Client" 
NET START "SQL Server Distributed Replay Controller" 
NET START "SQL Server Distributed Replay Client"

Client Server

NET STOP "SQL Server Distributed Replay Client" 
NET START "SQL Server Distributed Replay Client"

Categories: Distributed Replay

Query the Central Management Server List

May 26, 2015 Leave a comment

USE [msdb]
GO
SELECT    g.[name] AS [Group],
        s.[name] AS [SQLAlias],
        s.[server_name] AS [SQLInstance],
        s.[description] AS [Description]
FROM    [dbo].[sysmanagement_shared_server_groups_internal] g

LEFT JOIN [dbo].[sysmanagement_shared_registered_servers_internal] s
    ON    g.[server_group_id] = s.[server_group_id]
WHERE    g.[server_type] = 0
    AND    g.[is_system_object] = 0
ORDER BY [Group], [SQLAlias]

Find Database Owner’s

May 9, 2015 Leave a comment

 

Check database ownership of Databases on a SQL Instance

 

select suser_sname(owner_sid),name from sys.databases
Categories: Database Properties

Download and Install Upgrade Advisor

May 8, 2015 Leave a comment

Download SQL Server 2014 Upgrade Advisor

https://www.microsoft.com/en-us/download/confirmation.aspx?id=42295

image

Download SQL Server 2012 Upgrade Advisor

http://www.microsoft.com/en-us/download/details.aspx?id=29065

image

Expand the Install Instruction

image

Categories: SQL Server Upgrade