Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6364773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:12:28+00:00 2026-05-25T00:12:28+00:00

I was trying to backup all my SQL Server databases and came across the

  • 0

I was trying to backup all my SQL Server databases and came across the following script from here:

DECLARE @name VARCHAR(50) -- database name  
DECLARE @path VARCHAR(256) -- path for backup files  
DECLARE @fileName VARCHAR(256) -- filename for backup  
DECLARE @fileDate VARCHAR(20) -- used for file name 

SET @path = 'C:\Backup\'  

SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) 

DECLARE db_cursor CURSOR FOR  
SELECT name 
FROM master.dbo.sysdatabases 
WHERE name NOT IN ('master','model','msdb','tempdb')  

OPEN db_cursor   
FETCH NEXT FROM db_cursor INTO @name   

WHILE @@FETCH_STATUS = 0   
BEGIN   
       SET @fileName = @path + @name + '_' + @fileDate + '.BAK'  
       BACKUP DATABASE @name TO DISK = @fileName  

       FETCH NEXT FROM db_cursor INTO @name   
END   

CLOSE db_cursor   
DEALLOCATE db_cursor

This works perfectly fine except that I’m thinking that I’ll have to reconstruct all the indexes of the database after I restore it. I wanted to know if it is possible to dump the CREATE statements for all the indexes so that I can re-run them in one-go after restoring all these database?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:12:28+00:00Added an answer on May 25, 2026 at 12:12 am

    Is this the regular maintenance backup operation? If not, then it must add a WITH COPY_ONLY clause, otherwise it breaks the backup chain.

    As a regular maintenance backup this is rather poor:

    • it ignores each database recovery model (may be different)
    • it does not do a good job of scheduling full/differential/log backup (ie. uses way too much disk space and causes way too much disaster recovery loss of data)
    • it is not error safe, one db error will fail the entire loop
    • it does not sanitize the file names generated (eg. a database named [a:b] will create an invalid file name and always fail).
    • it does not do maintenance of old backups and reclaim disk space from obsolete backups
    • it does not allow for things like backup compression
    • backup on the same disk as the database is a useless illusion of safety, you’ll lose all data anyway on disk loss

    But ultimately the fundamental issue is that you’re looking at it from the wrong angle. Your goal is not to have a backup plan, but to have a recovery plan. Read some more here: Importance of testing your disaster recovery plan. And btw, you need a recovery plan for master too.

    As for your question about indexes, I don’t think you understand how SQL Server backup works at all. Start here: SQL Server: Recovering from Disasters Using Backups

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

SQL Server 2000 on Windows Server 2003. I am trying to run a backup,
Running sql server 2005 I have database A. I am trying to restore from
I am trying to pragmatically run a backup of an SQL Server database using
I am trying to backup all the files on our server using some SSH
Trying to find some simple SQL Server PIVOT examples. Most of the examples that
Trying to make a MySQL-based application support MS SQL, I ran into the following
In SQL Server Management Studio, if I attempt to restore a database from a
I am trying to restore a database in my sql server 2005 express edition.
I was trying to run a script to create a DB with all the
I've been trying to pass my login and password from Python script to the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.