Forum Replies Created

Viewing 15 posts - 4,711 through 4,725 (of 9,244 total)

  • RE: Mirroring + log shipping together: log shipping breaks after fail over

    There is a recovery path that has occurred but not been synchronised by log shipping. What does the following return when run against the new mirror principal instance and the...

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

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

  • RE: Shrinking Transaction Log File "the right way"

    distas (10/25/2012)


    Unfortunately, the rest of the comments made by other participants were just useless buzz, worse than they claimed my article to be. Nice, old, lame teenage-kind of attitude. Keep...

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

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

  • RE: mirroing - Restoring

    arkiboys (10/25/2012)


    I can script the job in production.

    In the script, I see the name for the production server.

    On running this script in the mdr (mirrored server), do I change the...

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

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

  • RE: Can i create an initial snapshot in transactional replication with Standard edition

    bjcharles (10/25/2012)


    Perry Whittle (10/25/2012)


    Elizabeth.Block (10/24/2012)


    I don't know much about transactional replication and we're going to implement this soon on a SQL Server 2008 Standard server. I'd heard that you can't...

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

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

  • RE: Can i create an initial snapshot in transactional replication with Standard edition

    Elizabeth.Block (10/24/2012)


    I don't know much about transactional replication and we're going to implement this soon on a SQL Server 2008 Standard server. I'd heard that you can't create a snapshot...

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

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

  • RE: mirroing - Restoring

    arkiboys (10/25/2012)


    GilaMonster (10/25/2012)


    SQL Agent jobs are not included in mirroring, mirroring is just the DB you configure, jobs are in MSDB. If you want them, you have to transfer them.

    How...

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

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

  • RE: mirroing - Restoring

    arkiboys (10/25/2012)


    GilaMonster (10/25/2012)


    If the mirroring is working, the data in the mirror DB will be correct. You could take a snapshot off the mirror and query that if you want.

    SQL...

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

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

  • RE: Find all clustered indexes

    This is an improvement

    selectOBJECT_NAME(i.object_id) AS TableName

    , i.name AS IndexName

    , FILEGROUP_NAME(i.data_space_id) AS FileGrpName

    from sys.indexes i inner join sys.objects o

    on i.object_id = o.object_id

    where i.index_id = 1 and o.is_ms_shipped <> 1

    and i.data_space_id...

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

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

  • RE: Database Mail Error

    You can only route your mail through google mail or windows live if you have a gmail or...

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

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

  • RE: SQL Server 2012 "Always On" "Listener" not working with named instance

    The listener has no concept of instance names, its a connection route into the AlwaysOn availability group. What details are you using to connect via the listener?

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

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

  • RE: Find all clustered indexes

    Something along the lines of this should get you started

    Select * from sys.indexes

    Where index_id = 1

    And data_space_id > 1

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

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

  • RE: SQL Server doesn't see Data drive

    I suspect theres a deeper issue here. You dont want to be using dynamic disks, these are only designed for use when you want to crete a software raid through...

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

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

  • RE: Database Mail Error

    mrtrich99 (10/24/2012)


    Perry Whittle (10/20/2012)


    mrtrich99 (10/19/2012)


    The server response was: 5.7.1 Unable to relay for testuser@company.com). )

    .............

    ...........Any suggestions on what else I can do to troubleshoot the "Unable to Relay" issue?

    You're...

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

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

  • RE: SQL Mirroring error did not auto failover

    The default timeout is set to 10, you will want to test network connectivity though and adjust this before implementing mirroring.

    Can provide more detail about your mirroring setup?

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

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

  • RE: Questions on clustering

    2005 features supported

    2008 features supported

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

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

Viewing 15 posts - 4,711 through 4,725 (of 9,244 total)