About 1,260,000 results
Open links in new tab
  1. Create a Full Database Backup - SQL Server | Microsoft Learn

    Aug 26, 2025 · Learn how to create a full database backup in SQL Server by using SQL Server Management Studio, Transact-SQL, or PowerShell.

  2. Backup Database in MS SQL Server - GeeksforGeeks

    Jul 15, 2025 · In Microsoft SQL Server, we can create full database backups using either SQL Server Management Studio (SSMS) or Transact-SQL (T-SQL). In this guide, we will learn an …

  3. SQL Server BACKUP DATABASE command

    Apr 29, 2025 · Learn about different options that can be used when creating a full database backup with several examples.

  4. SQL BACKUP DATABASE Statement - W3Schools

    BACKUP DATABASE Example The following SQL statement creates a full back up of the existing database "testDB" to the D disk:

  5. Create a Full Backup of a SQL Server Database

    In this tutorial, you'll learn how to create a full backup of a SQL Server database using the BACKUP DATABASE statement and SSMS.

  6. BACKUP (Transact-SQL) - SQL Server | Microsoft Learn

    SQL Server uses an online backup process to allow a database backup while the database is still in use. During a backup, most operations are possible; for example, INSERT, UPDATE, or …

  7. Backup and Restore Database in SQL Server | Step-By-Step Guide

    Apr 8, 2025 · Know the most suitable methods to backup and restore Database in SQL Server and get an easy solution to backup Database in SQL Server.

  8. How to Backup a SQL Server Database using T-SQL

    Apr 21, 2018 · Backup the Transaction Log You can also backup the transaction log. This is done with the BACKUP LOG statement. Here’s an example: BACKUP LOG Movies TO DISK = …

  9. How to Backup a SQL Server Database using SSMS

    Jan 11, 2024 · Backup a SQL Server Database Open SSMS. Expand the databases folder and select the database you want to back up. Right-click on the database name and select Tasks …

  10. How to Backup an SQL Database - trilio.io

    Sep 11, 2025 · Learn how to backup SQL databases with step-by-step methods using SSMS, T-SQL, and PowerShell. This complete manual covers best practices.