Forum Replies Created

Viewing 15 posts - 37,636 through 37,650 (of 49,566 total)

  • RE: Database Maintance Plan Optimization Option and Integrity Option

    I didn't mean on your production server. Do it on a dev/test machine. Do it on a local installation of SQL if you have one.

    There are standard command that are...

  • RE: How to select a column named 'Key'?

    SELECT FROM SomeTable

  • RE: Are the posted questions getting worse?

    Oh this is fun....

    Got back from shopping, booted my computer and SQL wouldn't start. Checked the error log.

    The log scan number (47:112:1) passed to log scan in database 'model' is...

  • RE: Convert inner join to SQL Subquery

    Lowell (7/15/2009)


    there's a lot of inner joins...which part do you weant to change into a subquery?

    and why?

  • RE: Another query running badly on SSC

    I'm not normally a fan of hints, but what happens if you force that index?

    SELECT *

    FROM dbo.EmailRecipients er WITH (INDEX= SSC_SentDate)

    INNER JOIN Emails e ON er.EmailID = e.EmailID

    WHERE er.SentDate IS...

  • RE: Database Maintance Plan Optimization Option and Integrity Option

    Why don't you use profiler? Start a trace and then run the maint plan jobs. The trace will show you exactly what they're doing.

  • RE: Unable to Shrink Log file

    Do you have any transactional replication configured?

    Can you run DBCC OPENTRAN and post the results?

    The distribution DB doesn't appear to have a problem with the log, just AX30_SP6_LIVE

  • RE: Optimization job

    Krasavita (7/15/2009)


    How, do you know that?

    How do I know what?

    The database integrity task is a DBCC CheckDB, so it will detect any torn pages, among other corruptions if present.

    I...

  • RE: Help us tune a query

    Jeff Moden (7/15/2009)


    GilaMonster (7/15/2009)


    Jeff Moden (7/14/2009)


    Something else is going on as well. Look at the difference in durations on your machine compared to mine.

    Look at the difference...

  • RE: database mirroring

    susan.susan28 (7/15/2009)


    Yes i need sysnchronous without witness but when the principal is down how the mirror side we can make as principal and accessible to the application.Becuase when i stop...

  • RE: database mirroring

    Asynchronous mirroring is only available on Enterprise edition. So on Standard your only option is synchronous with witness or synchronous without witness.

  • RE: Help us tune a query

    Mel Harbour (7/15/2009)


    Note that I've adjusted the forum setup to avoid having to zip up these sqlplans.

    Excellent. Thank you for that.

    I'll look over this and suggest any possible...

  • RE: database mirroring

    You cannot do auto-failover without a witness server.

  • RE: database mirroring

    susan.susan28 (7/15/2009)


    I am trying to setup database mirroring.Mirroring started and manual failover is possible.but when i shutdown the principal server ,mirror server is not changing to principal.

    Which mode do you...

  • RE: backup error in destination

    isabel (7/15/2009)


    Does your command for MIRROR TO DISK supported by MS SQL Server 2000?

    No, but you posted in the 2005 forum, that's why I specified 2005 features.

    On SQL...

Viewing 15 posts - 37,636 through 37,650 (of 49,566 total)