Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,271 total)

  • RE: Split-brain mirroring

    This is only documented in cases where there is no witness. Not possible (supposedly) if using a witness.

    What happened in between? Was there a failover triggered or an outage or...

  • RE: Split-brain mirroring

    Please describe in detail what happened.

  • RE: Database Mirroring Setup

    Mirroring supports database snapshots in Enterprise/Datacenter Edition. You can take a snapshot of the mirror database and provide a read-only point-in-time copy of the database for reporting purposes.

    Database mirroring is...

  • RE: Database Mirroring Setup

    Just to reiterate, All I'm all, good article. Don't let my comments discourage you. Keep writing!!

  • RE: Database Mirroring Setup

    Congrats on writing posting your first article!! I think it's a pretty good first article. There are a few points I'd like to clarify just to make sure the readers...

  • RE: SUBQUERY FOR FIELD RESULTS AND NOT RECORD RESULTS

    Is this what you are looking for?

    SELECT PRODUCTCATEGORY.IDPRODUCT,

    PRODUCTCATEGORY.IDFIELD,

    SQUERYTABLECATEGORY.NAMECATEGORY,

    SQUERYTABLETYPE.NAMETYPE,

    SQUERYTABLELINE.NAMELINE,

    SQUERYTABLEQUALITY.NAMEQUALITY,

    SQUERYTABLESIZE.NAMESIZEFROMTABLECONF,

    CATEGORY.NAMEDESCRIPTION AS NAMECATEGORY,

    TYPE.NAMEDESCRIPTION AS NAMETYPE

    LEFT JOIN CONFIGURATION AS CATEGORY

    ON PRODUCTCATEGORY.IDFIELD = CATEGORY.IDFIELD

    AND PRODUCTCATEGORY.IDCATEGORY = CATEGORY.IDCATEGORY

    And (Category.IDFIELD = 1

    Or Category.IDFIELD Is...

  • RE: Why is my transaction log full?

    When switching to simple recovery model, you also lose the ability to perform file or filegroup or page level restores. For example, if I had a corrupted page in a...

  • RE: DBCC Checks

    Run DBCC CheckDB With EstimateOnly and verify that you have enough tempDB space. EstimateOnly will tell you how much tempDB space it estimates will be needed.

    If not enough space, try...

  • RE: Why is my transaction log full?

    K Foster (2/23/2011)


    Very informative article. In the section entitled 'Checkpoint' you say 'If the checkpoint log reuse wait appears frequently...'. Where would I look to check if this is appearing...

  • RE: Why is my transaction log full?

    GilaMonster (2/22/2011)


    Maybe you should read my other article on transaction logs Managing Transaction Logs[/url]

    Just read everything Gail has written, and you'll be a better DBA for it.

  • RE: Why is my transaction log full?

    ceso (2/21/2011)


    Hi Gail, Great article. However i have 1 question; Are you saying that when one issue the command backup log db_name with truncate_only it backs up the active portion...

  • RE: Why is my transaction log full?

    david.howell (2/21/2011)


    Thanks for the very informative article.

    Running the first query I see Simple Recovery model and 'ACTIVE_TRANSACTION'

    However, running DBCC OPENTRAN report "No active open transactions."

    This doesn't seem to add up....

  • RE: Why is my transaction log full?

    Great article Gail!!

  • RE: Logshipping tlogs directly to secondary server (no third-server share?)

    Log shipping is not expecting there to be a 3rd server. Most people store the backups local on the primary server. Generally, the expectation is that the directory with the...

  • RE: Logshipping tlogs directly to secondary server (no third-server share?)

    You could do that, but I wouldn't recommend it. The most important step in the process is creating the log backup because you may need to use it in a...

Viewing 15 posts - 436 through 450 (of 1,271 total)