Forum Replies Created

Viewing 15 posts - 33,166 through 33,180 (of 49,552 total)

  • RE: Schema Lock

    Schema stability locks are taken by every single query (select, insert, update, delete) to ensure that the structure of the table doesn't change while they are running. The only thing...

  • RE: How to automatically add .ndf files with Trigger

    There's a GO right before the last END. Since GO is a batch breaker, that terminates the CREATE TRIGGER statement and leaves an orphaned END at the end.

  • RE: Parse/Read .trn files

    Adi Cohn-120898 (4/21/2010)


    I think that you’ll have to use some third party products such as Lumigent’s Log explorer or Red Gate’s SQL Log Rescue.

    Log rescue doesn't work on SQL...

  • RE: Parse/Read .trn files

    shen-dest (4/21/2010)


    for a high-loaded system profiler might be a problem.

    Server side trace to fast local drive is usually ok even on heavily loaded systems. Profiler GUI, not so much.

  • RE: Parse/Read .trn files

    shen-dest (4/21/2010)


    sys.dm_exec_query_stats --execution_count

    Bear in mind that that DMV is flushed when the DB is closed, queries can be removed from cache and it is possible they'll never appear in...

  • RE: Introduction to Indexes: Part 3 – The nonclustered index

    Pretty much, yes.

    A lower fill factor helps reduce/prevent page splits from insert or update operations (not deletes), but the downside is that the index takes more pages, hence more...

  • RE: Database Simple Recovery Model issue

    No. Operations that are minimally logged in bulk-logged are minimally logged in simple recovery too. In bluk logged you have to additionally worry about log backups.

    Besides, updates are not minimally...

  • RE: Transaction Log Growing Despite Simple Recovery

    Danny Sheridan (4/19/2010)


    EXEC sp_dboption 'db_name', 'trunc. log on chkpt.', 'TRUE'

    That option was deprecated back before SQL 2000. It should not be used any more and the replacement is Simple recovery.

  • RE: Error occurred while attempting to drop worktable with partition ID 423626411802624.

    I'd suggest upgrade to at least SP3, if not SP3 + latest Cumulative Update (CU). I know there was a bug recently (in last 12 months) found related to these...

  • RE: deleted LDF file

    You're lucky.

    Now, take measures to ensure that it can't happen again - tighten file system security, remove unnecessary permissions/logins, and make sure that administrators understand that the log file is...

  • RE: deleted LDF file

    This should help.

    http://sqlinthewild.co.za/index.php/2009/06/09/deleting-the-transaction-log/

    It's for SQL 2005+, but the steps are pretty much the same for SQL 2000, except for the emergency mode repair. You should be able to find...

  • RE: Integrity Check -- DBCC

    That will work for certain, specific types of schema corruption, it may not work for this one, as I commended several posts back.

    p.s. You did notice that this thread is...

  • RE: Introduction to Indexes: Part 3 – The nonclustered index

    1) If the clustered index is disabled, the table is inaccessible and cannot be queried at all.

    2) It's mentioned in the article, under 'What is a nonclustered index'

    3) Fill factor...

  • RE: Are the posted questions getting worse?

    RBarryYoung (4/13/2010)


    Grant Fritchey (4/13/2010)


    Roy Ernest (4/13/2010)


    Where is Gail? I havent seen her... Anyone has any news?

    She's doing fine. We've exchanged email a bit. She's busy working on her masters thesis....

  • RE: Are the posted questions getting worse?

    Roy Ernest (4/13/2010)


    Where is Gail? I havent seen her... Anyone has any news?

    Taking a long, long break from the forums. Stuff's getting on my nerves and it wass getting to...

Viewing 15 posts - 33,166 through 33,180 (of 49,552 total)