Forum Replies Created

Viewing 15 posts - 3,916 through 3,930 (of 9,244 total)

  • RE: Issue with Logshipping

    Firstly, don't use administrative shares for file\folder access, create a new share at the appropriate folder level and ensure you set the following for the account the SQL Server agent...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: iSCSI network binding order

    another user encountered this previously and the recommendation from Microsoft was the following (in order from highest to lowest priority)

    Public

    Private

    iSCSI

    Personally I have always used the following

    Public

    iSCSI

    Private

    The Public network is usually...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server 2012 Cluster failover question

    the first item to tackle is why the network connection is lost. Also, the implementation of an extra network may help to maintain connectivity between sites.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: contained databases

    It's the Database!!! (10/18/2013)


    Thank you Perry, I also have MS involved and they could not get the DB switched over to NONE either. I will email results once I have...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL ALwaysOn Dependencies

    what you're seeing there is just the AlwaysOn listener resource. In the same group\application you should have a Virtual IP and networkname, this network name will be registered in AD...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: how to rename of cluster nodes

    changing the VNN is fairly easy, just edit the VNN resource in failover cluster manager. Once renamed take the resource offline which will take the instance offline too. Restart the...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to Shring Data and Log file of Mirrored SQL Database?

    logicinside22 (10/17/2013)


    Hi Guys

    Looking for Steps to perfrom for shrinking Data and log files for Mirrored Database. Can any one give insturction step by step . would...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL ALwaysOn Dependencies

    The reason for this is because of what happens when a failover of a virtual name resource occurs under Windows Server Failover clusters.

    The virtual network name is unregistered in DNS...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: contained databases

    Dont bother with SQL agent or anything else, just use the following all within the same session

    [Code="sql"]USE (mydatabase)

    GO

    ALTER DATABASE (mydatabase)

    SET SINGLE_USER with rollback immediate;

    GO

    ALTER DATABASE (mydatabase) SET CONTAINMENT = NONE

    GO

    ALTER...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: contained databases

    You should run the sp_configure last not first.

    If you want to disable containment at the instance level then for each database that has containment enabled do the following

    alter database...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Find the size of all Indexes in a database

    I prefer this

    SELECTOBJECT_NAME(i.object_id) AS TableName

    , ISNULL(i.name, 'HEAP') AS IndexName

    , i.index_id as IndexID

    , i.type_desc AS IndexType

    , p.partition_number AS PartitionNo

    , p.rows AS NumRows

    , au.type_desc AS InType

    , au.total_pages AS NumPages

    , au.total_pages * 8...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Transfer data from one data file to another

    mssqlsrv (10/16/2013)


    3. Transfer data from datafile 'A' to specific data file in other file group.

    data is only transferred between files in the same filegroup using the emptyfile parameter

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: how do you ship logs through dedicated NIC?

    when configuring the secondary and you specify the primary server\instance specify the dedicated NIC IP

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Secondary server to change the another location?

    george sibbald (10/16/2013)


    Perry, can you confirm my post is visible please?

    🙂

    Ananda, if it is, see my post

    your post is visible :hehe:

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Find the size of all Indexes in a database

    Calling the index physical stats dmv in a cursor could have serious ramifications on a large database, you should bear this in mind.

    Query sys.partitions and sys.allocation_units for details of index...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 3,916 through 3,930 (of 9,244 total)