Forum Replies Created

Viewing 15 posts - 44,281 through 44,295 (of 49,571 total)

  • RE: Execution Plan question

    Possibly that it's running as a parallel operation. If you could attach a pic of said operator, I can tell you for sure.

  • RE: Another Backup scenario

    Ahmad Osama (9/23/2008)


    Cath Trimble (9/23/2008)


    If a Full backup has never been taken, there is no way to recover the table - any backup taken after the table was deleted would...

  • RE: Moving system database's log file on a cluster

    You don't need to stop SQL and the agent after doing the alter (not for the user databases). Just take the database offline after doing the alter database, move the...

  • RE: Update Stats for SQL Server 2005

    Most of that you can get by using sys.indexes instead of sysindexes. The row count you can get from sys.dm_db_index_physical_stats.

    The one thing you won't be able using the DMVs is...

  • RE: Performance Implications of Database Snapshots

    Alberto De Rossi (9/23/2008)


    Nice article. Would you please briefly explain us how did you get the measures to do those graphics? Did you use profiler?

    I ran the queries with...

  • RE: Performance Implications of Database Snapshots

    Steve Jones - Editor (9/23/2008)


    IMHO, the biggest feature missing from SS2K5 in this area, is that we can't backup snapshots. Doesn't make sense to me. Let me stream out pages...

  • RE: Users: Are they active?

    fjmorales (9/23/2008)


    whow! Why its so dramatic the change?

    No idea. I didn't investigate it. We created out own custom trace based on the audit requirements we were under and implemented that.

    You...

  • RE: Transaction Log growing

    Since a differential is essentially a "snapshot" of the data at the time is it necessary to retain all of the previous differentials?

    It's not a snapshot of the data at...

  • RE: Unique NONCLUSTEREDCONSTRAINT

    465789psw (9/22/2008)


    just a heads up and my already know if you do not elect to add a UNIQUE NON CLUSTERED constraint

    SQL will elect to one on its own in...

  • RE: Performance Implications of Database Snapshots

    Andreas Berchtold (9/23/2008)


    We have a replication (many hundred of pocket pc's connected) and thus a snapshot.

    What I don't understand: Why more than 1 snapshot, isn't a snapshot "only" used to...

  • RE: deleting the data

    bhuvnesh.dogra (9/23/2008)


    i know .....truncate cant be stopped by trigger 🙂 but

    can we think beyond the available features of sql 2005

    As a purely theoretical exercise?

    is there any sys ...

  • RE: I need your advice, please

    Also read through the articles section here. Here are lots of very good info there.

  • RE: A database backup scenario

    Ahmad Osama (9/23/2008)


    what if I dont have the tran log 1 backup

    You'll only be able to restore to Diff2. Trying to apply Tran log backup 2 will give an error...

  • RE: backups

    What is backup device 'dbpath'? Is there enough space on the disk?

    If you're running in full recovery, you must run log backups. If you don't the log file will grow....

  • RE: deleting the data

    bhuvnesh.dogra (9/23/2008)


    You can apply INSTEAD OF trigger FOR DELETE on that particular table

    Won't help against truncates. Truncate doesn't fire triggers.

Viewing 15 posts - 44,281 through 44,295 (of 49,571 total)