Forum Replies Created

Viewing 15 posts - 271 through 285 (of 342 total)

  • RE: copying .mdf and .ldf files

    The advice you received was right: you should never just copy the files after the service is stopped.  You need to detach them first.  This is a common error.

    If you...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Log Shipping and Backup

    You will have to remove your trx log backup jobs, and also ensure no jobs truncate the log.  Full and differential backups will not break the chain of log backups.

    You...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Backup file paths

    Caught me napping there!    As others have pointed out, msdb..backupmediafamily is the table to look at.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: How can I find out duration of log ins to SQLServer?

    You could use SQL Profiler and capture the Audit Logout events.  You would be able to see the login time and duration easily.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Backup file paths

    You might want to take a look at the msdb..backupfile table.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: backing up transaction log backups

    If you restore a differential backup, you just need to restore the trx log backups made after the differential backup.  You do not need to apply all the logs made...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Good SQL (SQL Server) Book

    Inside SQL Server 2000 by Kalen Delaney/Ron Soukop is a very good detailed look at SQL Server.  It does not just address writing SQL, it also tells you how the...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: How to abort a running backup job?

    I don't know about Oracle, but there isn't really a 'backup' mode in SQL Server.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Multiple database files.

    >>  My question is, since these files reside on a RAID 1+0 SAN storage, is there any pupose in having two/multiple data files?

    Perhaps the previous DBA wanted to be able...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: sp_detachdb lies!..help!

    You could try the File Handle Analyzer utility located at http://www.wilsonc.demon.co.uk/d7fileanalyzer.htm.  Might be able to reveal the process holding on to the files.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: How to abort a running backup job?

    Kill the connection using

    kill {spid}

    ?

    Seems to work, but I don't know if there's any side-effects.

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Shrink database

    One possibility for the growth is that you are running DBCC DBREINDEX on one or more large tables.  If so, the growth is unavoidable, since SQL Server needs the space...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: how to find size of the index

    A clusterd index determines how that data is physically ordered in the table, and its leaf nodes contains the table data. 

    A good metaphor would be the dictionary.  The clustered...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: differential backup vs. log backup

    A differential backup contains all changes made since the last full backup.  Thus, in a way, you could say that it contains 'all the log files in one back which...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

  • RE: Identical simultaneaous Full and Trans Log Backups??

    Alex, I should add that if all you want is to perform 3 backups simultaneously (no compression, encryption etc) and you can read a little C, I suggest you download...

    SQL BAK Explorer - read SQL Server backup file details without SQL Server.
    Supports backup files created with SQL Server 2005 up to SQL Server 2017.

Viewing 15 posts - 271 through 285 (of 342 total)