PANTHEON™ Help

 Toc
 PANTHEON Help - Welcome
[Collapse]PANTHEON
 [Collapse]Guides for PANTHEON
  [Expand]Guide for PANTHEON
  [Expand]Guide for PANTHEON Retail
  [Expand]Guide for PANTHEON Vet
  [Expand]Guide for PANTHEON Farming
 [Collapse]User Manuals for PANTHEON
  [Collapse]User Manual for PANTHEON
   [Collapse]Getting Started
     Dictionary of terms
     First steps with PANTHEON
    [Expand]Using PANTHEON at Tecta, a fictional company
    [Expand]Instructions for Ensuring Compliance of PANTHEON with SAS
    [Expand]PANTHEON Installation
    [Collapse]PANTHEON System
     [Expand]PANTHEON System data
     [Collapse]MS SQL Server
       Download and install MS SQL Server
       Upgrading MS SQL Server to 2019 or 2022
       MS Management Studio - Download and install
       Restoring database onto SQL server
       Adding users to server level (AddUser_PAX)
       Installing SQL for external access
       Installing PANTHEON clients
       Nastavitve MS SQL strežnika za večja Pantheon™ oko
       Changing SQL Sort Order
      [Expand]MS SQL Server Security
      [Collapse]Useful SQL Queries
        SQL Queries - Users
        SQL Queries - Database Backup/Restore
        SQL Queries - Databases
        SQL Queries - Jobs
       SQLExecute
      [Expand]SQL Server Jobs
     [Expand]Microsoft Windows Utilities
     [Expand]Security Policy
     [Expand]Database Administration
    [Expand]PANTHEON Basics
    [Expand]PANTHEON Help
    [Expand]Materials and Goods Movements
    [Expand]Assigning Identifiers
    [Expand]Frequently asked questions about Pantheon (F.A.Q.)
    [Expand]Archive
   [Expand]User Manual for eBusiness
   [Expand]Settings
   [Expand]Orders
   [Expand]Goods
   [Expand]Manufacturing
   [Expand]Service
   [Expand]Help
   [Expand]Personnel
   [Expand]Financials
   [Expand]Analytics
  [Expand]User Manual for PANTHEON Retail
  [Expand]User manual for PANTHEON Vet
  [Expand]User Manual for PANTHEON Farming
[Collapse]PANTHEON Web
 [Collapse]Guides for PANTHEON Web
  [Expand]Guide for PANTHEON Web Light
  [Expand]Guide for PANTHEON Web Terminal
  [Expand]Guide for PANTHEON Web Legal
  [Expand]Old products Archive
 [Collapse]User Manuals for PANTHEON Web
  [Expand]Getting started PANTHEON Web
  [Expand]User Manual for PANTHEON Web Light
  [Expand]User Manual for PANTHEON Web Terminal
  [Expand]User Manual for PANTHEON Web Legal
  [Expand]Old products Archive
[Collapse]PANTHEON Granules
 [Collapse]Guides for PANTHEON Granules
  [Expand]Personnel Granule
  [Expand]Travel Orders Granule
  [Expand]Documents and Tasks Granule
  [Expand]Dashboard Granule
  [Expand]B2B Orders Granule
  [Expand]Field Service Granule
  [Expand]Fixed Assets Inventory Granule
  [Expand]Warehouse Inventory Granule
 [Collapse]User Manuals for PANTHEON Granules
  [Expand]Getting started
  [Expand]Personnel Granule
  [Expand]Travel Orders Granule
  [Expand]Documents and Tasks Granule
  [Expand]B2B Orders Granule
  [Expand]Dashboard Granule
  [Expand]Field Service Granule
  [Expand]Fixed Assets Inventory Granule
  [Expand]Warehouse Inventory Granule
  [Expand]Archive
[Expand]User Site

Load Time: 875.0108 ms
"
  2925 | 3316 | 337269 | Updated
Label

SQL Queries - Database Backup/Restore

Backup/Restore

Backup/Restore

Database Backup

backup database database_name
 to disk = 'path_and_file_name'

database_name - the name of the database that you want to back up
path_and_file_name - the path and file name to which you want to make the backup.

Example:

backup database msDataLab
to disk = 'c:\datalab\backup\msDatalab.BAK'

List of Backups

select NAME,USER_NAME,BACKUP_START_DATE,BACKUP_FINISH_DATE,DATABASE_NAME,SERVER_NAME,MACHINE_NAME
 from msdb..backupset 
 where type = 'D' 
 and database_name = 'DataLab' 
 order by BACKUP_FINISH_DATE desc

Get File Names from Backup

restore filelistonly
  from disk = N'C:\DataLab\Backup\MyBKP.bak' 
  with file = 1 ,
  nounload

Database Restore

restore database database_name
  from disk = 'path_and_file_name'

database_name the name of the database that you want to restore.
path_and_file_name - the path and file name of the backup file from which you want to restore the database.

Example:

restore database msDataLab
  from disk = 'c:\datalab\backup\msDatalab.BAK'

Warning! This command usually creates database and log files (.MDF and .LDF in SQL Server's default database folder, for example C:\MSSQL7\DATA.

Database Restore by Moving the Database to Other Location

restore database database_name
  from disk = 'path_and_file_name' 
  with move 
    'database_name' to 'path_and_MDF_file_name',
  move 'database_log_name' to 'path_and_LDF_file_name'

database_name - the name of the database that you wish to restore, as specified in the backup file.
 path_and_file_name - the path and file name of the backup file from which you wish to restore the database.
 path_and_MDF_file_name - the path and file name of the database file (.mdf).
 path_and_LDF_file_name - the path and file name of the database log file (.ldf).
 
 Example:

restore database msDataLab
  from disk= 'c:\datalab\backup\msDataLab.BAK'
  with move
     'msDataLab' TO 'f:\test\msDataLab.MDF',
     move 'msDataLab_log' to 'f:\test\msDataLab_log.LDF'


 

Rate this topic
Was this topic usefull?
Comments
Comment will also bo visible in forum!