Forum Replies Created

Viewing 15 posts - 33,376 through 33,390 (of 49,552 total)

  • RE: Database in Suspect Mode

    Suspect means that the database may be transactionally or structurally inconsistent. This is the result of either a rollback failing (typically because it encounters a corrupt page) or the restart-recovery...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Check Catalog Msg 3859, State 1: Warning: The system catalog was updated directly in database ID

    It had better be a very good reason. Messing with the system tables, especially on SQL 2005 where they are not documented and not straightforward, is a quick way to...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Check Catalog Msg 3859, State 1: Warning: The system catalog was updated directly in database ID

    You can't. That message is added when someone does a direct update to the system tables (which requires more than just sp_configure 'allow updates',1). It's there as a warning that...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Object tampering within SQL Server 2008??

    Why? What's wrong with the standard code? What is it not doing that it should?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: What is the life time of temporary table?

    Did you bother to read the links that bitbucket provided? If not, please do so. If you still have questions after reading them, come back and ask.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Object tampering within SQL Server 2008??

    Even if such a thing is possible, by doing so you will completely lose all support from Microsoft. If you hack a system like that and then call customer support...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: What is the life time of temporary table?

    chandrasekaran.ganapathy (3/22/2010)


    Can I declare a temp table outside the procedure and call it inside the procedure?

    In procedure we can create a temp table?

    Yes and yes

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: What is the life time of temporary table?

    A temp table is dropped when the connection that created it is closed or when the procedure that it was created in ends.

    You can't create a temp table in a...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Load/performance testing

    That's complete garbage. It's AWE that's not required on 64 bit operating systems with 64 bit SQL.

    If you look at the annotations (Click the 'annotations link, top-right of the page),...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SSRS 2008 export options

    Please don't cross post. It just wastes peoples time and fragments replies.

    No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic886960-150-1.aspx

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how to set Master database to singleuser mode

    Just too easy to have something else in SSMS grab the only connection. Specially if there's 3rd party add-ins in SSMS (which I have). SQLCMD I know there's only one...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how to set Master database to singleuser mode

    I prefer to have SSMS set to open an empty environment. No object explorer connections, no query window connections.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Are the posted questions getting worse?

    Lynn Pettis (3/20/2010)


    Yes, READ UNCOMMITTED can be the right choice for many applications, the problem comes when it is selected and it isn't appropriate and people start complaining about inaccurate...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how to set Master database to singleuser mode

    malleswarareddy_m (3/20/2010)


    using sqlcmd utility it worked fine.but using ssms it not worked.

    Possibly because Object Explorer took the only allowed connection. It's one of the reasons I prefer to use SQLCMD...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: how to set Master database to singleuser mode

    Master cannot be set into single user mode. Why are you trying?

    rebuildm is a SQL 2000 command for rebuilding the master database. In SQL 2005 the setup command is used...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 33,376 through 33,390 (of 49,552 total)