Forum Replies Created

Viewing 15 posts - 36,856 through 36,870 (of 49,563 total)

  • RE: Tranasaction log file

    Please read through this - Managing Transaction Logs[/url]

    and don't even consider deleting the log. It's asking for lots of trouble.

  • RE: Odd series of events in log - runs checkdb frequently throughout the day

    That's the standard database startup messages. SQL will always print those in the log when it brings a DB online and opens it.

    The things that will cause that are:

    autoclose

    the...

  • RE: mirroring: two instances, one machine

    t-jonat (8/25/2009)


    WITH REPLACE, NORECOVERY and MOVE didn't work either, although I don't remember the exact error message and im not on that machine right now.

    To offer any useful help, I'll...

  • RE: Event ID 832

    Paul Randal (8/24/2009)


    This error says that the page has a page checksum which was valid when the page was read into memory, but when the page was just about...

  • RE: Odd series of events in log - runs checkdb frequently throughout the day

    Can you post the actual messages from the error log? (cut and paste). That's not a standard CheckDB message, so I'm going to assume you're paraphrasing.

    If it says something like

    CHECKDB...

  • RE: Locking trouble

    jan.tilburgh (8/24/2009)


    insert into test

    (

    testTIMESTAMP,

    testVALUE

    )

    select

    @newTimeStamp,

    testValue + newValue

    from test

    order by

    testtimestamp desc

    If there are 4 rows in test at the point where that insert runs, how many rows should it insert? Currently it...

  • RE: T-sql query and tempdb growth

    Is the distinct really necessary? If there's no where clause, nothing limiting rows, you're probably going to get hash joins (that use TempDB) and the sort for the distinct will...

  • RE: Optimization job

    Krasavita (8/24/2009)


    1.The only way in 2000 to run optimization job:is offline?

    I can't recall what settings the 2000 maint plan uses (if it uses) to decide index reorg vs index rebuild....

  • RE: tmp Tables

    In management studio, press F7. Select all the tables that you want to delete, press the delete key.

  • RE: Lost Certificate and Master Key

    Some advice not directly related. Tell your colleague that it's better to own up to a mistake than for it to be discovered and for the boss to have to...

  • RE: LOB data type node does not exist?

    Did you do what the error message said? If not, please run the following and post the full output

    DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS

    Do you have...

  • RE: can I lose data by using on Log File DBCC SHRINKFILE ( )

    russ (8/24/2009)


    The issue I am concerned with is table changes first go to the log file then the data file.

    Mostly correct. More correct would be to say that the changes...

  • RE: Optimization job

    Krasavita (8/24/2009)


    It is 2000 edition

    Then why is it posted in a sQL 2005 forum?

    it locks all of the tables in the database.Reorginizes data and index pages.Change persantage to 10...

  • RE: mirroring: two instances, one machine

    t-jonat (8/19/2009)


    another possible solution that i read regarding the first error message above is to RESTORE WITH REPLACE but when i try to restore the log backup, i get an...

  • RE: DeadLock - Select Update Select

    The best way to avoid deadlocks are optimal code and effective indexes.

    If you're getting deadlocks, please can you post table structure, the two queries involved and the deadlock graph.

    Switch traceflag...

Viewing 15 posts - 36,856 through 36,870 (of 49,563 total)