Comments on: How to Backup SQL Server on Linux https://sqlserveronlinuxbackup.com/backup-sql-server-linux/ All about SQL Server on Linux Backup & Maintenance Mon, 11 Oct 2021 11:39:14 +0000 hourly 1 https://wordpress.org/?v=6.1.10 By: Alexander Omelchenko https://sqlserveronlinuxbackup.com/backup-sql-server-linux/#comment-141 Mon, 11 Oct 2021 11:39:14 +0000 http://sqlserveronlinuxbackup.com/?p=74#comment-141 In reply to warman.

Hi WARMAN,

The database consists of files. If the server is not running, then you can copy these files to another location to restore them later. To get a list of database files execute the following T-SQL query:

SELECT
db.name AS DBName,
type_desc AS FileType,
Physical_Name AS Location
FROM
sys.master_files mf
INNER JOIN
sys.databases db ON db.database_id = mf.database_id

]]>
By: Alexander Omelchenko https://sqlserveronlinuxbackup.com/backup-sql-server-linux/#comment-105 Thu, 30 Sep 2021 11:41:25 +0000 http://sqlserveronlinuxbackup.com/?p=74#comment-105 In reply to John.

Hi John,

Yes, you can use SqlBak on Linux, here are more details: https://sqlbak.com/blog/how-to-automate-mysql-database-backups-in-linux

]]>
By: John https://sqlserveronlinuxbackup.com/backup-sql-server-linux/#comment-82 Thu, 09 Jul 2020 12:40:12 +0000 http://sqlserveronlinuxbackup.com/?p=74#comment-82 Is there any free tool to backup MySQL Server automatically?

]]>
By: warman https://sqlserveronlinuxbackup.com/backup-sql-server-linux/#comment-67 Thu, 03 Oct 2019 16:38:34 +0000 http://sqlserveronlinuxbackup.com/?p=74#comment-67 how to backup database if service mssql not running?

]]>
By: MCV https://sqlserveronlinuxbackup.com/backup-sql-server-linux/#comment-53 Fri, 15 Feb 2019 10:31:59 +0000 http://sqlserveronlinuxbackup.com/?p=74#comment-53 simple and clean explanation, thanks! 🙂

]]>