Forum Replies Created

Viewing 15 posts - 1,921 through 1,935 (of 4,745 total)

  • RE: Are the posted questions getting worse?

    Roy Ernest (2/18/2011)


    Now a days, you do not see that many Draws in test. I am glad. Even though it takes 5 days, I prefer test over the One days...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (2/18/2011)


    Stefan Krzywicki (2/18/2011)


    I wouldn't have any problems with his poor English skills if he wasn't being such a jerk about other people's.

    I agree. In fact, I was mentally...

  • RE: error 823

    we just tried that, same error there! Oh dear. something server related or we just found a new bug. I'm calling in MS.

  • RE: error 823

    its a new database created by an ETL process, database is corrupted as it creates so no chance to back it up!

    It obviously can be recreated but new database...

  • RE: error 823

    thanks for the confirmation Gail. Have a good day (I'm not!)

  • RE: Failing Job fix with adding '\' ?

    there were loads of issues with jobs in early releases of SQL2005, this was likely one of them.

    you should patch your SQL instance for this reason and more importantly...

  • RE: heaviest utilized database on a server

    you might want to break that down further to database files so you can see data and log file activity, but anyway DMV sys.dm_io_virtual_file_stats is the one you want, it...

  • RE: heaviest utilized database on a server

    I'd look at the amount of IO per database so try this

    --Calculating the Percentage of I/O for Each Database

    ---------------------------------------------------

    WITH Agg_IO_Stats

    AS

    (

    SELECT

    DB_NAME(database_id) AS database_name,

    ...

  • RE: Failing Job fix with adding '\' ?

    you are on the RTM version of SQL2005 which is somewhat out of date. SP4 is out now so you should roll that out(after testing first)

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (2/16/2011)


    Jeff Moden (2/16/2011)


    CirquedeSQLeil (2/16/2011)


    For the execution of Wayne:

    --get spid of code requestor

    sp_whorequestedcodeIntheThread 'Wayne'

    --use returned spids to verify the request

    dbcc inputbuffer(61)

    --output

    'Wayne definitely requested code on the thread'

    --yup...

  • RE: OldSQL

    the situation during extended support seemed to have changed which piqued my curiosity so I asked our MS contact what the rules are. I post his answer below which I...

  • RE: Problems restoring master db in SQL 2005

    backup every database to a separate file, don't mix different backups together. In fact don't use backup sets, I can't see any point in them. As you are finding out...

  • RE: DBCC updateUsage

    With my memory I am in the unfortunate position of being able to truthfully claim to have forgotten more about SQL than I actually know 🙂

  • RE: Problems restoring master db in SQL 2005

    Are you backing up all your databases to the same backup set? If so I would stop doing that.

    Looks like the backup file you are selecting is not the master...

  • RE: DBCC updateUsage

    As this database has been upgraded from SQL2000 run DBCC CHECKDB with DATA_PURITY if you have not already done so (during next quite period yada yada :-))

    After that run checkdb...

Viewing 15 posts - 1,921 through 1,935 (of 4,745 total)