Forum Replies Created

Viewing 15 posts - 256 through 270 (of 441 total)

  • RE: SQL connection error

    Dev team have no idea,

    is it possible to pull out the name of the service?

    SueTons.

  • RE: SQL connection error

    anthony.green (2/15/2013)


    Do you have a custom message broker running?

    We get that a lot due to SQL dependencies when our message broker service stops and starts, as it drops and recreates...

  • RE: Mirroring failover

    Akkare (2/11/2013)


    How many databases we can put in mirroring

    Microsoft suggests 10 databases to be mirrored in a single instance, but I have seen more. I guess there will be...

  • RE: To Re-index all indexes for a table.

    sdpages (2/10/2013)


    Hi,

    I change the Database Recovery Model to [Bulk Logged Mode] before I run by REBUILD INDEX job . After the RE-Index is done the database is put back to...

  • RE: stop/start SQL services

    opc.three (2/9/2013)


    log shipping will be fine. clustering and mirroring need more attention due to failover scenarios. also check for running Agent jobs.

    As far as jobs, I will stop the agent...

  • RE: stop/start SQL services

    opc.three (2/9/2013)


    For stopping ad=nd starting a serving SQL Server Configuration Manager MMC, Windows Services MMC, WMI, PowerShell -Services cmdlets...all of those will work fine. If you're configuring services though, e.g....

  • RE: Mirroring failover

    Richard Fryar (2/8/2013)


    Ha ha you're right - and i have no issue with an underlying cursor for a one-off task like this, though i know there are some who disagree...

  • RE: Mirroring failover

    Richard Fryar (2/8/2013)


    Often, you find yourself failing over several databases, or several hundred in a real disaster scenario.

    This script checks all databases in one go, and avoids use of a...

  • RE: Mirroring failover

    Perry Whittle (2/1/2013)


    SQLCrazyCertified (2/1/2013)


    DECLARE fixusers CURSOR

    FOR

    SELECT UserName = name FROM sysusers

    WHERE issqluser = 1 AND (sid IS NOT NULL AND sid <> 0x0)

    This first part declares a cursor checking...

  • RE: To Re-index all indexes for a table.

    Just to update you guys, here is what I found.

    Whatever was blocking last night went away, I was able to access the database today. I found the log grew...

  • RE: To Re-index all indexes for a table.

    anthony.green (2/7/2013)


    Depends, if you have enterprise edition you can do you rebuilds online, providing that the index columns are of a compatable type, but usually do it out of hours.

    Another...

  • RE: To Re-index all indexes for a table.

    anthony.green (2/7/2013)


    Depends, if you have enterprise edition you can do you rebuilds online, providing that the index columns are of a compatable type, but usually do it out of hours.

    Ok....thank...

  • RE: To Re-index all indexes for a table.

    GilaMonster (2/7/2013)


    Ignore the GUI, it's half-broken.

    Query sys.dm_db_index_physical_stats for that table, that'll give you all the info the gui would.

    To rebuild - ALTER INDEX ALL ON <table> REBUILD

    Thanks guys,

    Is rebuilding index...

  • RE: To Find jobs related to a particular database.

    JeremyE (2/5/2013)


    Check out sysjobs and sysjobsteps in the msdb database.

    Does anyone have any script for this?....Basically, I am looking for a script to get all the jobs with job names...

  • RE: Mirroring Log Issue

    Perry Whittle (1/31/2013)


    SQLCrazyCertified (1/29/2013)


    Hi, Thanks for both of your replies.

    I have fixed the issue by doing couple of more log backups then I shrank and it worked.

    You have cycled the...

Viewing 15 posts - 256 through 270 (of 441 total)