Forum Replies Created

Viewing 15 posts - 32,971 through 32,985 (of 49,552 total)

  • RE: High {no} availability and UPDLOCK

    One of the snapshot isolations?

  • RE: Change

    Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic919053-145-1.aspx

  • RE: A tale of two query plans

    Robert Frasca (5/10/2010)


    I tried adding the index on Entry_Sequence on the Patient_Info_Fields table but it didn't use it.

    Index on (Entry_Sequence, Patient_Info_Field_ID)? Should have, the index looks covering, unless I missed...

  • RE: Auditing SQL Logins 24x7 - Profiler? SQLDiag??

    jpSQLDude (5/10/2010)


    All user-defined server side traces are DELETED every time SQL Server is restarted (or even if you just restart the SQL Server Agent).

    SQL Server, yes, SQL Agent, no. The...

  • RE: A tale of two query plans

    Dave Ballantyne (5/10/2010)


    Whats the Patient_info_field table ? Its table scanning , is there no indexes on that ?

    Apparently there are 20 or so rows in it. Index may help, I...

  • RE: A tale of two query plans

    Dave Ballantyne (5/10/2010)


    Hmm the Optimizer is timing out. Reason for early Termination = "Time Out".

    Considering the size, I'm hardly surprised. Looking at that thing last week I felt like...

  • RE: Database Developer VS DBA

    Abrar Ahmad_ (5/10/2010)


    My inquiry was, if employers think that the DB can be fully managed by Front End Developers, and specially i wrote bad controlled DB by the front end...

  • RE: Using SSMS 2005 to connect to 2008 database

    You need to apply a service pack. I can't recall which one, but applying SP3 is safe enough.

  • RE: A tale of two query plans

    I'm probably not going to get a chance to look at this, got a lot of work this week. Maybe Grant feels like a challenge.

  • RE: A tale of two query plans

    Attachment? <looks around>

  • RE: How to restore Transaction_Log File

    Restore the database from a backup taken before the change. If you don't want to overwrite the entire database, restore the backup as a new database and copy the data...

  • RE: Database Developer VS DBA

    Abrar Ahmad_ (5/10/2010)


    Each and every front end developer just do put columns in tables, and at one stage, everybody sits and thinks... what to do with this huge uncontrolled giant...

  • RE: Database Developer VS DBA

    Abrar Ahmad_ (5/10/2010)


    1. In which the there is no DB Team at all, except a White Elephant named as DBA.

    Wow. How can you ask for a discussion when your bias...

  • RE: dba

    You can check the default trace, if the server isn't too busy, the changes might still be in there. Otherwise you would have needed a trace or DDL trigger before...

  • RE: Database in suspect mode

    sivark1 (5/10/2010)


    EXEC sp_resetstatus 'yourDBname';

    ALTER DATABASE yourDBname SET EMERGENCY

    DBCC checkdb('yourDBname')

    ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE

    DBCC CheckDB ('yourDBname', REPAIR_ALLOW_DATA_LOSS)

    ALTER DATABASE yourDBname SET MULTI_USER

    No! No! No!

    That is terrible advice, it is...

Viewing 15 posts - 32,971 through 32,985 (of 49,552 total)