Forum Replies Created

Viewing 15 posts - 6,451 through 6,465 (of 9,707 total)

  • RE: database crash

    If db recovery is full, then your last full backup and every transaction log since can be used for restoring the database. Go into SSMS -> Databases, right click and...

  • RE: Severity 20 Error - Connection Pooling

    Nope. I can't even find these errors in the logs. It's like they happened, but didn't happen (according to the server logs). That's what's driving me nuts.

    The earliest entry before...

  • RE: Job stops running as per schedule after maitenance?

    David Benoit (2/15/2011)


    Of course, according to BOL it is supposed to update the cache with every change but it may not be happening here. I haven't heard of the job...

  • RE: Job stops running as per schedule after maitenance?

    sqldba_icon (2/15/2011)


    Brandie Tarvin (2/15/2011)


    Could it be that the job cache hasn't been updated since right after you disabled things?

    Could be..what do u mean by "job cache"..how can i check that?

    Job...

  • RE: Job stops running as per schedule after maitenance?

    Could it be that the job cache hasn't been updated since right after you disabled things?

  • RE: installation location for mdf, ldf, backup files

    To add to what Nadrek just said, remember that just because the drive letter is different, doesn't mean the drive is different. Too many DBAs make the assumption that logical...

  • RE: Who created the job?

    SQL Server does NOT track who created jobs, just the current owner of the jobs.

    However, the work around is to create your own DDL trigger (if Create Job is one...

  • RE: datetime column conversion

    Ditto what GSquared said. Don't worry about the data in the table. Display is where that sort of things matter.

    If you absolutely must tinker with the table, though, look into...

  • RE: PURPOSE OF TEMPORARY TABLES

    In addition to the breaking up of queries for better performance...

    Temp tables give me the option of winnowing down my data results, and deleting duplicates as necessary, when working with...

  • RE: Severity 20 Error - Connection Pooling

    Nothing in the logs happened right before these errors, except a few security audit failures in the Event Log. I've checked the SQL Server Log, SQL Agent Log, Application, Security...

  • RE: database crash

    What recovery model was your database set at? FULL, BULK LOGGED, or SIMPLE?

    EDIT: Also, do you see the database in SSMS? Is it perhaps in Suspect mode instead of just...

  • RE: xp_cmdshell not supported in SQL 2005 Express Edition

    I think embedded edition is even more crippled than the usual SQL Express. Which means certain options that Express has are not available unless you actually install Express.

    See this link...

  • RE: Fun(?) with DATETIME2

    Oh, okay. I think I get what the issue is. Thank you for the second link.

    I just don't understand why people would use varchar (or any string) to represent dates...

  • RE: Random Recipes

    So, 4 eggs total or did you mistakenly enter the 2 eggs twice?

  • RE: DBCC updateUsage

    george sibbald (2/14/2011)


    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 :-))

    Interesting. Either...

Viewing 15 posts - 6,451 through 6,465 (of 9,707 total)