Forum Replies Created

Viewing 15 posts - 44,836 through 44,850 (of 49,571 total)

  • RE: Re: Intermittent slow database resposne

    jlp3630 (8/27/2008)


    I'm running RAID-0 on my c: drive (contains Windows, SQL server, master, model and msdb databases and log files).

    I'm running RAID-50 on my f: drive (tempdb, user databases and...

  • RE: Recovery model for a database

    SQL does not have a mind of its own. It will not change a database's recovery model unless someone issues a command to do so.

    Check any jobs that run...

  • RE: Understanding waitresource coloumn in sysprocesses

    Ahmad Osama (8/27/2008)


    wait type is pageiolatch_sh....

    Then it is databaseID : FileID : PageID

    Is there any chart to get this depending on the waittype....

    or any logic

    I've seen one before, I can't...

  • RE: SqlDumpExceptionHandler: Process 59 generated fatal exception c0000005 EXCEPTION_ACCESS_VIOLATION.- Please helpits urgent

    For this kind of error, you should probably contact Microsoft's customer support people. We don't have the tools to read stack dumps and figure out what caused them.

    Generally, it's...

  • RE: Understanding waitresource coloumn in sysprocesses

    What's in the waitresource column depends on the wait type. I'm going to guess that the wait is for a page latch/page io latch and that this resource is databaseID:FileID:...

  • RE: Value of a Primary Key

    There shouldn't really be any performance impact.

    The main problems you're going to encounter is that you won't be able to use foreign keys (as they require a unique or...

  • RE: Recovery model for a database

    Something within the loop (or someone else) must have changed the recovery model. SQL won't change recovery models on its own

    Look for ALTER DATABASE statements within the code you're running....

  • RE: Slow Running Store Procedure

    Can you save the exec plan as a .sqlplan file, zip it and attach it? That will help a bit.

    Otherwise, you can check and see if the indexes are being...

  • RE: SQL Transaction "-2"

    To expand a bit, they are orphaned distributed transactions. What happens is that some app uses DTC in it's communications with SQL and then doesn't properly commit or rollback the...

  • RE: paging problems

    bodhilove (8/26/2008)


    I was wrong the edition is standard for the instances. Is there any advice dealing with paging with this?

    Standard edition ignores the locked pages setting. I would suggest, as...

  • RE: SQL Server

    What error do you get from attaching? If you can't attach the DB, then you're only real option is to restore the backup you have and live with the data...

  • RE: Deadlock troubleshooting

    Strange. Did you run it in database 6?

    Have you dropped/truncated any tables since the deadlock message? It could account for why the partition is no longer there.

  • RE: Re: Intermittent slow database resposne

    On 64 bit systems you should limit the max memory. SQL's quite capable of taking all tha available memory and starving the OS. Try setting it to 6.5GB. Dunno if...

  • RE: DBCC CheckDB Msg 8964text ID is not referenced consistency error

    SQL 2000 or SQL 2005? The checkDB output looks like SQL 2005.

    Do you have a clean backup?

  • RE: Database migration from 2005 to 2000

    Once you've done the migation, be sure to update all the statistics and do a checkDB.

    SQL 2005 can use the SQL 2000 statistics, but badly. Queries often run slower until...

Viewing 15 posts - 44,836 through 44,850 (of 49,571 total)