Forum Replies Created

Viewing 15 posts - 5,071 through 5,085 (of 9,244 total)

  • RE: Removing mirroring session on a partner database in Mirror, Disconnected / In Recovery state

    Post it anyway with your solution as it may help others in the same situation

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

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

  • RE: how to add hours to day

    to add hours to days use the DATEADD function

    today

    select getdate()

    today + 3 hours

    select dateadd(hh, 3, getdate())

    today - 3 hours

    select dateadd(hh, -3, getdate())

    today + 3 hours 1 week in the future

    select...

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

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

  • RE: Removing mirroring session on a partner database in Mirror, Disconnected / In Recovery state

    MissTippsInOz (9/6/2012)


    Old post revival!! Just wondered how you managed to get this one resolved as I've a similar situation.

    Thanks

    post full details into a new thread for more help

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

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

  • RE: Log-Shipping Failed

    Follow these steps

    • stop all LS jobs for this database
    • take a differential backup on the primary
    • restore differential to the secondary
    • enable and start LS backup job on primary
    • enable and start LS copy...

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

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

  • RE: Can I install additional sql instances without affecting the existing Production instance while it's being accessed online

    You'll typically install a new instance for a database when there are different security requirements or performance requirements.

    Some applications such as Blackberry ES are best off ring fenced due...

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

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

  • RE: SAN issue

    sierra4 (9/6/2012)


    hello,

    there were SAN issues on the server where E: and F: became unavailable.

    we realized this when the log backups were failing.

    now that the drives are back online this is...

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

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

  • RE: Using High Availability to move to a new server?

    Just out of interet why is hyperv installed, are you hosting VMs on this box too?

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

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

  • RE: preffered node in cluster

    ramyours2003 (9/6/2012)


    what is preffered node in sql cluster ?

    The preferred node setting will attempt to locate the clustered sql instance group on a particular node or nodes. There is also...

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

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

  • RE: Release Total Server Memory in SQL 2008

    sjimmo (9/6/2012)


    Freeing the buffers and cache will make EVERYTHING in SQL Server run slower.

    Not quite everything. When you checkpoint a database and then run DBCC DROPCLEANBUFFERS it will only...

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

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

  • RE: Mirroring Configuration

    ananda.murugesan (9/6/2012)


    Mr. Perry Whittle, one final question

    1. What is the best pratices & procedure restarted both server principal & Mirror? if restart required.

    Depends, are you rebooting both at sametime or...

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

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

  • RE: Release Total Server Memory in SQL 2008

    CHECKPOINT is a per database operation so you may need to run for multiple databases being attempting to free cache

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

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

  • RE: Is it OK to ask salary range before applying?

    It is generally taboo to ask a salary range at first interview, it portrays to the prospective employer you're just in it for the cash. Once at a second interview\offer...

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

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

  • RE: Mirroring Configuration

    To manually fail to the mirror you need to execute

    ALTER DATABASE <database name> SET PARTNER FAILOVER

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

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

  • RE: Release Total Server Memory in SQL 2008

    lower the max memory and then raise it again

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

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

  • RE: Mirroring Configuration

    ananda.murugesan (9/6/2012)


    If changed another domain account2 at sql service account, SQL Engine service will be working then what will happend at Mirroring part for both server? In this cause, Does...

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

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

  • Viewing 15 posts - 5,071 through 5,085 (of 9,244 total)