Forum Replies Created

Viewing 15 posts - 42,601 through 42,615 (of 49,566 total)

  • RE: Error message looking at sysdatabases

    Simon Smith (12/4/2008)


    If anyone can tidy everything up and work out why it the error message at the beginning references a database name that doesn`t exists then that would be...

  • RE: Proc is giving poor performance

    Skull Killer (12/4/2008)


    Because it has to "reserve" and then destroy the structure in the temp database and it does the COMMITs.

    Same with a table variable. Main difference is that...

  • RE: Partial Backup

    The only way you can backup a single table is if that table is in a filegroup by itself. Then you can back up the filegroup.

    You can backup at the...

  • RE: Error message looking at sysdatabases

    and no [] inside the IF, because you're trying to do a string match there, not refer to the DB itself.

  • RE: Error message looking at sysdatabases

    What's the code you're trying to run inside sp_MSforeachdb?

  • RE: Questions about full database backup

    Full backups do not break the LSN chain.

    Easy to demonstrate

    Create database TestingLogs

    Go

    use TestingLogs

    go

    Create Table Test (id int)

    insert into Test values (1)

    go

    backup database TestingLogs to disk = 'D:\Develop\TestingFull1.bak' -- full backup...

  • RE: Backups and Transactions Log relationships

    Three steps backwards....

    When data is changed in SQL, the changes are made to the data pages in memory. The record of the change is then written to the transaction log...

  • RE: Proc is giving poor performance

    Skull Killer (12/4/2008)


    That's true. But creating a temp table, even with no data, costs more than a table variable.

    Why?

  • RE: Questions about full database backup

    Phil Auer (12/4/2008)


    I'm still not clear on the issue. This video talks specifically about only full backups and transaction log backups.

    I'll download the video later, watch it and see...

  • RE: Integrity Check -- DBCC

    srawant (12/2/2008)


    Hey Gail,

    I have a same database in one of my pre-prod server which is currently dead. I can work on this server to fix the database. So, can you...

  • RE: Backups and Transactions Log relationships

    Bristolred (12/3/2008)


    I now realise that this is not the case, as I’ve found out that the log is truncated every time it is backed up. So I don’t understand where...

  • RE: Two DDL database triggers

    If the triggers are on the same event, why not just have one trigger that does the work of both?

  • RE: Minatanace plan for backup

    Just check the version of that management studio, make sure that the patch did successfully patch the client tools.

  • RE: Integrity Check -- DBCC

    Steve Jones - Editor (12/3/2008)


    Corruption errors are most often hardware related, so be sure that your drivers and hardware is not causing issues.

    This particular one's usually the result of...

  • RE: Minatanace plan for backup

    So where did you set the maintenance plan up from?

Viewing 15 posts - 42,601 through 42,615 (of 49,566 total)