Forum Replies Created

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

  • 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" 😉

  • RE: Can a server be added to two different clusters?

    Ted Zatopek (10/15/2013)


    we could be operating at the DR site for an extended period of time.

    Rare, but possible i suppose. Failover to DR should be considered a short term...

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

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

  • RE: Can a server be added to two different clusters?

    Ted Zatopek (10/15/2013)


    So what I now understand is that in order to use an AO group, I can have the primary replica be a FCI, although the secondary replica must...

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

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

  • RE: Can a server be added to two different clusters?

    Ted Zatopek (10/15/2013)


    It sounds like what I could do then is have one geographically "stretched" cluster that includes all 4 nodes.

    Correct, that's what i said above 😉

    Ted Zatopek...

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

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

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