Forum Replies Created

Viewing 15 posts - 45,871 through 45,885 (of 49,571 total)

  • RE: transaction log for database is full

    Set the DB to simple recovery mode, like all the others, then do a once-off shrink of the log (just the log) if it's larger than it's supposed to be....

  • RE: transaction log for database is full

    terry.jago (7/9/2008)


    the back up the log with a no_log command

    no_log is deprecated in SQL 2005 and not recommended for use. If log backups are not required, then just switch...

  • RE: transaction log for database is full

    ltoso (7/8/2008)


    Hi,

    thanx for the fast reply, i am very new to sql server so can you help me further like

    What is the recovery model for this database?

    where can check this...

  • RE: trigger to delete FK and PK

    Leave off the triggers. consider cascading deletes on your foreign key relationships.

  • RE: What's an MVP?

    I spoke with the South African MVP lead back in March on this topic. He said that in his opinion (not an official MS statement) the most important quality is...

  • RE: Date Function

    Try this.

    DECLARE @TheDate DATETIME

    SET @TheDate = '1994-08-01 00:13:00.000'

    select dateadd(dd, datediff(dd,0, @TheDate),0)

  • RE: Select * shocking faster than Select individual columns

    Is it consistent? Did the data have to be fetched from disk on one? Possible blocking?

  • RE: SQL 2000 cluster getting rebooted on its own

    What I suspect is happening is that the cluster service notices that SQL is not responding (IsAlive Check) when SQL hits memory problems and forces a fail-over to the other...

  • RE: Performance Issue Of One Database Effecting Another

    Graham (7/8/2008)


    Hi Gail

    Thanks for your reply, i appreciate it, will get back to this thread tomorrow when the office is open.

    Yes i saw the full scans are pretty high, does...

  • RE: consistency error in xml_index_nodes

    sqlservercenter (7/8/2008)


    maybe you could consider to shrinke it first,

    then reindex or reorgnize is ok.

    Don't! Shrink! Your! Databases!

    tucankur: Have you checked for hardware errors? Reoccuring corruption can indicate a storage...

  • RE: Deadlocks

    Suresh B. (7/8/2008)


    Is it possible to have 0 deadlocks in a busy multiuer system?

    Is it normal to have around 10 deadlocks daily?

    It is not normal to have 10 deadlocks a...

  • RE: restore logs

    Mani Singh (7/8/2008)


    Here the STEPS you should perform.

    Kill destination connections. (run multiple times)

    set Db in single_user mode.

    Or just set the database into single user mode with rollback_immediate

  • RE: Deadlocks

    Mani Singh (7/8/2008)

    if you see a deadlock that is in place for a long time, make sure, it is not running a HUGE Query.. then kill the SPID associated with...

  • RE: Slow queries in reporting services! Bug or feature?

    And you see the one from reporting services with duration = 60 sec?

    Can you perhaps post the query?

  • RE: INDEX ON TABLES

    Index placement depends on what queries you have running and what your data distribution looks like. To put it very simply, you create indexes to support queries that you have...

Viewing 15 posts - 45,871 through 45,885 (of 49,571 total)