How can we help you today?
You are currently viewing the content available in Vietnam. If you are looking for information for another region, please select the correct country from the top-left dropdown in the page and 'Navigate to Browse FAQs' in the Support menu.

How to recover Missing Data in SQL Server Using a Partial Restore

Issue:

Data is missing from a database or the database is corrupted.

Product Line:

Power Monitoring Expert

Environment:

SQL Server Instance

Cause:

Part of a SQL Server database may be missing or corrupted. A partial restore can be used to recover specific filegroups or extract missing records without restoring the entire database.

Resolution:

Warning: Irreparable database damage can occur. This procedure must only be performed by users experienced with SQL Server Management Studio (SSMS). Always back up all databases before proceeding.

If you suspect part of a database is missing or corrupted, you can perform a partial restore into a separate database. This allows you to analyze or extract the missing data safely.
Partial restores work at the filegroup level. The PRIMARY filegroup is always restored. Filegroups not restored remain offline.

Steps to Perform a Partial Restore:

1. Run a partial restore to a new database name and location

Use the PARTIAL option and MOVE clauses to redirect data files.

Example:

RESTORE DATABASE new_partial_data
FILEGROUP = 'DataFiles'
FROM DISK = 'G:\mydata.dmp'
WITH FILE = 1,
NORECOVERY,
PARTIAL,
MOVE 'mydata' TO 'G:\mydata2.pri',
MOVE 'mydata_log' TO 'G:\mydata2_log.log',
MOVE 'mydata_data_2' TO 'G:\mydata_data_2.dat2';

2. Extract the needed data from the partial restore

After the partial database loads:

  • Query the tables containing the missing data
  • Export results as needed
  • Insert the recovered data back into the original database (via INSERT…SELECT, SSIS, or manual operations)

Schneider Electric Vietnam

Explore more
Range:
Users group

Discuss this topic with experts

Visit our community and get advice from experts and peers on this topic and more
Explore more
Range:

Need help?

Need help?

Product Selector

Product Selector

Quickly and easily find the right products and accessories for your applications.

Get a Quote

Get a Quote

Start your sales enquiry online and an expert will connect with you.

Where to buy?

Where to buy?

Easily find the nearest Schneider Electric distributor in your location.

Help Centre

Help Centre

Find support resources for all your needs, in one place.

  • Products Documentation
  • Software Downloads
  • Product Selector
  • Product Substitution and Replacement
  • Help and Contact Center
  • Find our Offices
  • Get a Quote
  • Where to buy
  • Schneider Electric Community
  • Careers
  • Company Profile
  • Report a misconduct
  • Accessibility
  • Investors
  • EcoStruxure
  • Job Search
  • Blog
  • Privacy Policy
  • Cookie Notice
  • Terms of use
  • Change your cookie settings