Skip to main content
Skip table of contents

Restoring a Data Warehouse from a SQL Backup

Information Required Before Restoring a Data Warehouse

When restoring a data warehouse from a SQL Server backup, it is helpful to gather the information below beforehand. This allows us to verify SQL Server version compatibility, estimate storage requirements, and prepare the target environment appropriately.

SQL Server Properties

In SQL Server Management Studio (SSMS):

  1. Right-click the SQL Server instance.

  2. Select Properties.

  3. Please send a screenshot of the General page similar to the example below.

Example:

image-20260611-061306.png

Database File Information

In SSMS:

  1. Right-click the data warehouse database.

  2. Select Properties.

  3. Select the Files page.

  4. Capture a screenshot showing the database files. Please ensure the screenshot includes the following columns: Logical Name, File Type, Path, Size

Example:

  • Right-click DwPlainProperties → Files.

image-20260611-061614.png

If the Information Above Is Not Available

If the screenshots above were not provided or the information appears incomplete, you can retrieve key backup details directly from the backup file.

Run the following query in SSMS on a SQL Server that has access to the backup file:

CODE
RESTORE FILELISTONLY
FROM DISK = 'C:\Backups\YourBackup.bak';

This command returns information about the database files contained in the backup, including logical file names, file types, and sizes, which can be used to estimate storage requirements and prepare the restore process.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.