Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Copy production database to development database on the SAME server

    your procedure of restoring the db is right, point 3: don't change the logical file name

    here is a snippet you can paste into QA:

    USE master

    GO

    RESTORE FILELISTONLY

       FROM DISK = ...

  • RE: Deleting rows

    Hi,

    write you how I do it usually, because I often need to delete the data in some tables.

    Open isqlw and type 'delete from <tablename>'. Then mark the tablename and press if the...

Viewing 2 posts - 1 through 2 (of 2 total)