SQL Server Backup: A Comprehensive Guide to Protecting Your Data

Ensuring the safety and recoverability of your data is paramount in any database environment. Sql Server Backup is the cornerstone of this data protection strategy, providing the means to safeguard your valuable information against various forms of data loss. This in-depth guide, tailored for database administrators, IT professionals, and anyone responsible for SQL Server data, delves into the intricacies of SQL Server backups, offering a comprehensive understanding of how to effectively protect your databases.

This article provides a detailed exploration of the BACKUP command in Transact-SQL (T-SQL), the primary tool for performing SQL Server backups. We will cover the various types of backups, syntax options, and best practices to implement a robust backup strategy that meets your recovery objectives.

Understanding SQL Server Backup Operations

At its core, SQL Server backup is the process of creating a copy of your database or transaction log, which can be stored on various media such as disk, tape, or cloud storage. These backup copies serve as the foundation for restoring your database to a consistent state in case of data loss due to hardware failures, software errors, accidental deletions, or other unforeseen events.

SQL Server offers different types of backups to accommodate various recovery needs and storage considerations:

  • Full Database Backup: This backup type captures the entire database, including all data files, filegroups, and a portion of the transaction log to ensure database consistency. A full backup serves as the base for other backup types and is essential for any backup strategy.
  • Differential Database Backup: Differential backups only capture the data changes made since the last full database backup. They are smaller and faster to create than full backups, making them suitable for frequent backups between full backups. Differential backups reduce restore time by minimizing the number of backups needed for recovery.
  • Transaction Log Backup: Transaction log backups record the transaction log, which contains a record of all transactions made to the database since the last log backup (or full backup, if it’s the first log backup). Log backups are crucial for point-in-time recovery in databases using the full or bulk-logged recovery models.
  • File and Filegroup Backups: For large databases, file and filegroup backups allow you to back up individual files or filegroups instead of the entire database. This can improve backup and restore performance, especially for very large databases with multiple filegroups.
  • Partial Backups: Partial backups include the read-write filegroups and optionally, specific read-only filegroups. This type of backup can be useful in scenarios where you need to back up a subset of a large database.
  • Copy-Only Backups: These are special backups that do not interfere with the regular backup sequence. Copy-only backups are useful for taking backups for specific purposes like testing or reporting without disrupting your standard backup schedule.
  • Snapshot Backups: Introduced in SQL Server 2022, snapshot backups offer a fast way to back up entire SQL Server instances or database groups using Azure snapshot technology. These backups are metadata-only, leveraging underlying storage snapshots for rapid backup and restore operations.

Choosing the right combination of backup types depends on your Recovery Time Objective (RTO) and Recovery Point Objective (RPO), as well as storage capacity and performance considerations.

Syntax of the BACKUP Command

The BACKUP Transact-SQL statement is used to perform all types of SQL Server backups. Here’s a breakdown of the basic syntax for different backup types:

1. Full Database Backup:

BACKUP DATABASE { database_name | @database_name_var }
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { DIFFERENTIAL | <general_with_options> [ ,...n ] } ]
[;]

2. File or Filegroup Backup:

BACKUP DATABASE { database_name | @database_name_var }
<file_or_filegroup> [ ,...n ]
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { DIFFERENTIAL | <general_with_options> [ ,...n ] } ]
[;]

3. Partial Backup (Read-Write Filegroups):

BACKUP DATABASE { database_name | @database_name_var }
READ_WRITE_FILEGROUPS [ , <read_only_filegroup> [ ,...n ] ]
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { DIFFERENTIAL | <general_with_options> [ ,...n ] } ]
[;]

4. Transaction Log Backup:

BACKUP LOG { database_name | @database_name_var }
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { <general_with_options> | <log_specific_options> } [ ,...n ] ]
[;]

5. Server Backup (SQL Server 2022 and later):

ALTER SERVER CONFIGURATION SET SUSPEND_FOR_SNAPSHOT_BACKUP ON [;]
BACKUP SERVER
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { METADATA_ONLY | <general_with_options> [ ,...n ] } ]
[;]

6. Group Backup (SQL Server 2022 and later):

ALTER DATABASE <database> SET SUSPEND_FOR_SNAPSHOT_BACKUP ON
ALTER DATABASE <...> SET SUSPEND_FOR_SNAPSHOT_BACKUP ON
...
BACKUP GROUP {<database> [,... ]}
TO <backup_device> [ ,...n ]
[ <mirror clause="" to=""> ]
[ next-mirror-to ]
[ WITH { METADATA_ONLY | <general_with_options> [ ,...n ] } ]
[;]

Key Syntax Elements:

  • DATABASE or LOG: Specifies the type of backup (database or transaction log).
  • database_name: The name of the database to be backed up.
  • TO <backup_device>: Specifies the destination for the backup. This can be:
    • DISK = 'physical_device_name': Back up to a disk file.
    • TAPE = 'physical_device_name': Back up to a tape device (Note: Tape support is being deprecated).
    • URL = 'physical_device_name': Back up to Azure Blob Storage or S3-compatible object storage.
    • logical_device_name: A pre-configured logical backup device.
  • <mirror clause="" to="">: Creates mirrored backups for redundancy.
  • WITH <options>: Specifies various backup options to customize the backup operation.

Understanding BACKUP Command Arguments

The BACKUP command offers a wide array of arguments to control the backup process. Let’s explore the key arguments:

Database and Log Specification

  • DATABASE { database_name | @database_name_var }: Indicates a full database backup. If files or filegroups are specified, it becomes a file or filegroup backup. For full or differential backups, SQL Server also backs up enough of the transaction log to ensure consistency. Only full database backups are allowed for the master database.
  • LOG { database_name | @database_name_var }: Specifies a transaction log backup. Log backups capture the transaction log from the last successful log backup to the current end of the log. A full database backup must be performed before the first log backup.
  • GROUP (,...n) (SQL Server 2022 and later): Backs up a group of databases using snapshot backup technology. Requires WITH METADATA_ONLY.
  • SERVER (SQL Server 2022 and later): Backs up all databases on a SQL Server instance using snapshot backup. Requires WITH METADATA_ONLY.
  • METADATA_ONLY (SQL Server 2022 and later): Required for snapshot backups (BACKUP SERVER or BACKUP GROUP). Synonymous with SNAPSHOT.

File and Filegroup Specification

  • FILE = { logical_file_name | @logical_file_name_var }: Specifies a file to include in a file backup.
  • FILEGROUP = { logical_filegroup_name | @logical_filegroup_name_var }: Specifies a filegroup to include in a file or filegroup backup. Filegroup backups under the simple recovery model are limited to read-only filegroups.
  • READ_WRITE_FILEGROUPS [ , FILEGROUP = { logical_filegroup_name | @logical_filegroup_name_var } [ ,...n ] ]: Initiates a partial backup, including all read-write filegroups and optionally specified read-only filegroups. READ_WRITE_FILEGROUPS backs up all read-write filegroups in a partial backup.

Backup Destination (TO)

  • TO <backup_device> [ ,...n ]: Defines the backup devices. Multiple devices can be specified for striped backups.
  • { logical_device_name | @logical_device_name_var }: Specifies a logical backup device name.
  • { DISK | TAPE | URL } = { 'physical_device_name' | @physical_device_name_var | 'NUL' }:
    • DISK: Backs up to a disk file. 'NUL' device can be used for testing backup performance but should not be used in production.
    • TAPE: Backs up to a tape device (deprecated).
    • URL: Backs up to Azure Blob Storage or S3-compatible object storage.

Mirrored Backups (MIRROR TO)

  • MIRROR TO <backup_device> [ ,...n ]: Creates mirrored backups for high availability and redundancy. Up to three mirrors can be specified. The MIRROR TO clause must match the TO clause in the type and number of backup devices.

WITH Options: Customizing Backup Behavior

The WITH clause is crucial for customizing SQL Server backups. It allows you to control various aspects of the backup operation, including backup type, compression, encryption, media handling, error management, and monitoring.

General WITH Options

These options are applicable to various backup types:

  • CREDENTIAL (SQL Server 2012 SP1 CU2 and later): Used when backing up to Azure Blob Storage, specifying the credential for accessing the storage account.
  • FILE_SNAPSHOT (SQL Server 2016 and later): Creates Azure snapshots of database files when using Azure Blob Storage. Supports both BACKUP DATABASE and BACKUP LOG.
  • DIFFERENTIAL: Creates a differential database or file backup, capturing changes since the last full backup.
  • ENCRYPTION: Enables backup encryption to protect backup files. Supports algorithms like AES_128, AES_192, AES_256, and TRIPLE_DES_3KEY. Requires specifying an encryptor using SERVER CERTIFICATE or SERVER ASYMMETRIC KEY.
  • COPY_ONLY: Creates a copy-only backup, which does not affect the normal backup sequence. Useful for backups taken for special purposes.

Backup Set Options

These options affect the backup set being created:

  • COMPRESSION [ ALGORITHM = { MS_XPRESS | accelerator_algorithm } ] | NO_COMPRESSION: Enables or disables backup compression. COMPRESSION reduces backup size and storage space. SQL Server 2022 introduces ALGORITHM for specifying compression algorithms, including hardware accelerators like QATzip.
  • DESCRIPTION = { 'text' | @text_variable }: Adds a free-form text description (max 255 characters) to the backup set.
  • NAME = { backup_set_name | @backup_set_var }: Specifies a name for the backup set (max 128 characters).
  • { EXPIREDATE = 'date' | RETAINDAYS = days }: Defines when the backup set can be overwritten. RETAINDAYS takes precedence over EXPIREDATE if both are used. If neither is specified, the media retention server configuration setting determines expiration.
  • { METADATA_ONLY | SNAPSHOT } (SQL Server 2022 and later): Synonyms for snapshot backups.

Media Set Options

These options manage the media set as a whole:

  • { NOINIT | INIT }:
    • NOINIT (default): Appends the backup set to the existing media set.
    • INIT: Overwrites all backup sets on the media while preserving the media header.
  • { NOSKIP | SKIP }:
    • NOSKIP (default): Checks expiration dates and backup set names before overwriting.
    • SKIP: Disables expiration and name checks, allowing overwriting.
  • { NOFORMAT | FORMAT }:
    • NOFORMAT (default): Preserves the existing media header.
    • FORMAT: Creates a new media set, overwriting existing headers and backup sets. Use FORMAT carefully as it invalidates the entire media set.
  • MEDIADESCRIPTION = { 'text' | @text_variable }: Adds a description to the media set (max 255 characters).
  • MEDIANAME = { media_name | @media_name_variable }: Specifies a name for the media set (max 128 characters). When specified for existing media, it must match the existing media name.
  • BLOCKSIZE = { blocksize | @blocksize_variable }: Sets the physical block size in bytes (512, 1024, 2048, 4096, 8192, 16384, 32768, 65536). Default is 65536 for tape and 512 otherwise. Usually, SQL Server automatically selects an appropriate block size.

Data Transfer Options

These options optimize data transfer performance:

  • BUFFERCOUNT = { buffercount | @buffercount_variable }: Specifies the number of I/O buffers used for the backup operation. Increasing BUFFERCOUNT can improve performance, but excessive values can lead to memory issues.
  • MAXTRANSFERSIZE = { maxtransfersize | @maxtransfersize_variable }: Sets the largest unit of transfer in bytes between SQL Server and backup media (multiples of 65536 bytes, up to 4MB; 10MB for S3). For TDE-encrypted databases, setting MAXTRANSFERSIZE greater than 65536KB can improve compression.

Error Management Options

These options handle errors during backup operations:

  • { NO_CHECKSUM | CHECKSUM }:
    • NO_CHECKSUM (default): Disables backup checksums.
    • CHECKSUM: Enables checksum generation and page validation, improving backup reliability at the cost of some performance overhead.
  • { STOP_ON_ERROR | CONTINUE_AFTER_ERROR }:
    • STOP_ON_ERROR (default): Stops the backup operation upon encountering an error.
    • CONTINUE_AFTER_ERROR: Continues backup operations even after encountering errors like checksum failures. Useful for tail-log backups when a database is damaged.

Monitoring Options

  • STATS [ = percentage ]: Displays progress messages every percentage completed. If percentage is omitted, messages are shown every 10%.

Tape Options (Tape Devices Only)

  • { REWIND | NOREWIND }:
    • REWIND (default): Rewinds and releases the tape after backup.
    • NOREWIND: Keeps the tape open after backup, improving performance for multiple backups to tape. Implies NOUNLOAD.
  • { UNLOAD | NOUNLOAD }:
    • UNLOAD (default): Rewinds and unloads the tape after backup.
    • NOUNLOAD: Keeps the tape loaded after backup.

Log-Specific Options (BACKUP LOG Only)

  • { NORECOVERY | STANDBY = undo_file_name }:
    • NORECOVERY: Backs up the tail of the log and leaves the database in RESTORING state. Useful for log shipping and disaster recovery scenarios.
    • STANDBY = undo_file_name: Backs up the tail of the log and leaves the database in read-only STANDBY state.
  • NO_TRUNCATE: Prevents transaction log truncation and attempts backup regardless of database state. Equivalent to COPY_ONLY and CONTINUE_AFTER_ERROR. Useful for backing up logs of damaged databases.

Backup Types in Detail

Full Database Backups

Full database backups are the most fundamental type of SQL Server backup. They create a complete copy of your database, including all data files, log files (enough to maintain consistency), and system tables. Full backups are the basis for all other backup strategies and are essential for point-in-time recovery.

Use Cases:

  • Initial backup of a new database.
  • Regularly scheduled backups as part of a comprehensive backup strategy.
  • Base for differential backups.
  • Independent backups for archival purposes.

Example:

BACKUP DATABASE AdventureWorks2022
TO DISK = 'Z:SQLServerBackupsAdventureWorks_Full.bak'
WITH FORMAT,
     NAME = 'Full Backup of AdventureWorks2022 Database';

Differential Database Backups

Differential backups capture only the changes made to the database since the last full database backup. This makes them significantly smaller and faster to create compared to full backups. Differential backups are used to reduce the time required to restore a database, as you only need to restore the last full backup and the latest differential backup.

Use Cases:

  • Frequent backups between full backups to minimize data loss potential.
  • Reducing backup window duration compared to frequent full backups.
  • Improving restore speed compared to restoring multiple log backups.

Example:

BACKUP DATABASE AdventureWorks2022
TO DISK = 'Z:SQLServerBackupsAdventureWorks_Diff.bak'
WITH DIFFERENTIAL,
     NAME = 'Differential Backup of AdventureWorks2022 Database';

Transaction Log Backups

Transaction log backups are critical for databases using the full or bulk-logged recovery models. They capture the transaction log, which records all transactions made to the database. Log backups enable point-in-time recovery, allowing you to restore a database to a specific point in time or transaction. Frequent log backups are essential to minimize data loss and truncate the transaction log, preventing it from growing indefinitely.

Use Cases:

  • Point-in-time recovery for databases in full or bulk-logged recovery models.
  • Log shipping for disaster recovery and high availability.
  • Database mirroring and Always On Availability Groups.
  • Regularly scheduled backups (e.g., every few minutes or hours) to minimize data loss.

Example:

BACKUP LOG AdventureWorks2022
TO DISK = 'Z:SQLServerBackupsAdventureWorks_Log.trn'
WITH NAME = 'Transaction Log Backup of AdventureWorks2022 Database';

File and Filegroup Backups

File and filegroup backups allow you to back up specific files or filegroups within a database. This is particularly useful for very large databases where backing up the entire database is impractical or time-consuming. File backups can improve backup and restore performance, especially when dealing with large databases spread across multiple filegroups.

Use Cases:

  • Backing up specific filegroups for very large databases.
  • Reducing backup time for databases with large, static filegroups.
  • Restoring individual filegroups to reduce downtime.

Example:

BACKUP DATABASE AdventureWorks2022
FILEGROUP = 'SalesGroup1', FILEGROUP = 'SalesGroup2'
TO DISK = 'Z:SQLServerBackupsSalesFilegroups.bak'
WITH NAME = 'Filegroup Backup of SalesGroup1 and SalesGroup2';

Partial Backups

Partial backups are a specialized type of database backup that includes all read-write filegroups and optionally, specific read-only filegroups. They are primarily intended for databases containing read-only filegroups and can be useful in scenarios where you need to back up a subset of a database.

Use Cases:

  • Backing up the actively changing parts of a large database with read-only components.
  • Reducing backup size and time in specific scenarios.

Example:

BACKUP DATABASE AdventureWorks2022
READ_WRITE_FILEGROUPS,
FILEGROUP = 'ReadOnlyGroup1'
TO DISK = 'Z:SQLServerBackupsPartialBackup.bak'
WITH NAME = 'Partial Backup of AdventureWorks2022 Database';

Copy-Only Backups

Copy-only backups are taken independently of the regular backup schedule. They do not affect the differential base or log chain, making them ideal for special purposes without disrupting your standard backup strategy.

Use Cases:

  • Taking backups for testing or development purposes.
  • Creating backups for reporting or data analysis without interfering with regular backups.
  • Performing online index rebuilds where a log backup is needed before the operation.

Example:

BACKUP DATABASE AdventureWorks2022
TO DISK = 'Z:SQLServerBackupsCopyOnlyBackup.bak'
WITH COPY_ONLY,
     NAME = 'Copy-Only Backup of AdventureWorks2022 Database';

Snapshot Backups (SQL Server 2022 and later)

Snapshot backups, introduced in SQL Server 2022, leverage underlying storage snapshot capabilities for extremely fast backups. They are metadata-only backups, meaning they primarily capture metadata describing the storage snapshots. Snapshot backups are ideal for backing up entire SQL Server instances or groups of databases rapidly.

Use Cases:

  • Rapid backups of entire SQL Server instances.
  • Efficient backups of large database groups.
  • Scenarios requiring minimal backup duration.

Example (Server Snapshot Backup):

ALTER SERVER CONFIGURATION SET SUSPEND_FOR_SNAPSHOT_BACKUP ON;
BACKUP SERVER
TO DISK = 'Z:SQLServerBackupsServerSnapshotBackup.bak'
WITH METADATA_ONLY,
     NAME = 'Server Snapshot Backup';

Example (Group Snapshot Backup):

ALTER DATABASE Database1 SET SUSPEND_FOR_SNAPSHOT_BACKUP ON;
ALTER DATABASE Database2 SET SUSPEND_FOR_SNAPSHOT_BACKUP ON;
BACKUP GROUP DatabaseGroup1 = (Database1, Database2)
TO DISK = 'Z:SQLServerBackupsGroupSnapshotBackup.bak'
WITH METADATA_ONLY,
     NAME = 'Group Snapshot Backup';

Backup to Different Media

SQL Server supports backing up to various media types, each with its own advantages and considerations:

Disk Backups

Disk backups are the most common and versatile backup media. They offer fast backup and restore speeds and are relatively inexpensive. Disk backups can be stored locally, on network shares, or in cloud storage.

Advantages:

  • Fast backup and restore performance.
  • Cost-effective storage.
  • Flexibility in storage locations (local, network, cloud).

Considerations:

  • Disk failures can lead to data loss if backups are not properly protected (e.g., RAID, redundancy).
  • Requires managing disk space and backup retention policies.

Example (Disk Backup):

BACKUP DATABASE AdventureWorks2022
TO DISK = 'Z:SQLServerBackupsAdventureWorks_Full.bak'
WITH FORMAT;

Tape Backups (Deprecated)

Tape backups were historically used for large-scale backups and archival purposes. However, tape technology is becoming less common due to slower performance and management complexities compared to disk and cloud solutions.

Advantages (Historical):

  • High capacity for archival storage.
  • Offline storage for disaster recovery.

Disadvantages:

  • Slower backup and restore speeds compared to disk and cloud.
  • Complex management and maintenance.
  • Decreasing popularity and support.

Example (Tape Backup – Deprecated):

BACKUP DATABASE AdventureWorks2022
TO TAPE = '\.tape0'
WITH FORMAT;

Azure Blob Storage Backups

Backing up directly to Azure Blob Storage offers a scalable, durable, and cost-effective cloud-based backup solution. Azure Blob Storage provides off-site storage, enhancing disaster recovery capabilities and reducing the need for local storage infrastructure.

Advantages:

  • Scalable and durable cloud storage.
  • Off-site backups for disaster recovery.
  • Integration with Azure services.
  • Cost-effective for long-term retention.

Considerations:

  • Requires configuring Azure storage accounts and credentials.
  • Network bandwidth limitations can affect backup and restore speeds.

Example (Azure Blob Storage Backup):

BACKUP DATABASE AdventureWorks2022
TO URL = 'https://<storage_account_name>.blob.core.windows.net/<container_name>/AdventureWorks_Full.bak'
WITH CREDENTIAL = 'my_azure_credential',
     FORMAT;

S3-Compatible Object Storage Backups (SQL Server 2022 and later)

SQL Server 2022 and later versions support backing up to S3-compatible object storage platforms, offering flexibility in choosing cloud storage providers. This option allows you to leverage various S3-compatible storage services for SQL Server backups.

Advantages:

  • Flexibility in choosing cloud storage providers.
  • Scalable and durable object storage.
  • Cost-effective cloud backup solution.

Considerations:

  • Requires configuring S3-compatible storage endpoints and credentials.
  • Network bandwidth considerations similar to Azure Blob Storage.

Example (S3 Backup):

BACKUP DATABASE AdventureWorks2022
TO URL = 's3://<s3_endpoint>/<bucket_name>/AdventureWorks_Full.bak'
WITH CREDENTIAL = 'my_s3_credential',
     FORMAT;

Best Practices for SQL Server Backup

Implementing a robust SQL Server backup strategy requires adherence to best practices to ensure data protection and efficient recovery. Here are some key recommendations:

  • Choose the Right Recovery Model: Select the appropriate recovery model (Full, Bulk-Logged, or Simple) based on your RTO and RPO requirements. The Full recovery model offers the most comprehensive recovery options but requires transaction log backups.
  • Regular Full Backups: Schedule regular full database backups to establish a consistent baseline for recovery. The frequency depends on your data change rate and RPO.
  • Frequent Differential Backups: Implement differential backups between full backups to reduce backup size and restore time.
  • Frequent Transaction Log Backups (Full/Bulk-Logged Models): For databases in Full or Bulk-Logged recovery models, perform frequent transaction log backups to enable point-in-time recovery and prevent transaction log growth.
  • Test Backups Regularly: Periodically test your backups by performing restore operations to ensure their integrity and validate your recovery procedures.
  • Automate Backups: Automate your backup schedule using SQL Server Agent jobs or other scheduling tools to ensure consistent and reliable backups.
  • Monitor Backup Operations: Monitor backup job success and failure rates to identify and resolve any backup issues promptly.
  • Off-Site Backups: Store backups off-site or in cloud storage to protect against site-wide disasters.
  • Backup Compression: Utilize backup compression to reduce backup size, storage space, and backup/restore times.
  • Backup Encryption: Encrypt your backups to protect sensitive data from unauthorized access, especially when storing backups in cloud or off-site locations.
  • Mirrored Backups (Optional): Consider mirrored backups for critical databases to provide redundancy and fault tolerance for backup media.
  • Proper Backup Naming Conventions: Establish clear and consistent naming conventions for backup files to easily identify backup types, databases, and timestamps.
  • Retention Policies: Implement backup retention policies to manage backup storage space and comply with data retention requirements. Regularly prune or archive older backups according to your policies.
  • Secure Backup Storage: Secure your backup storage locations to prevent unauthorized access, modification, or deletion of backup files.
  • Document Backup Procedures: Document your backup strategy, schedules, procedures, and recovery steps for easy reference and knowledge sharing.

Conclusion

SQL Server backup is a critical aspect of database administration, ensuring data protection and business continuity. By understanding the different backup types, syntax options, and best practices, you can implement a robust and effective backup strategy tailored to your specific needs. Regularly reviewing and testing your backup strategy is crucial to guarantee data recoverability and minimize downtime in the event of data loss. Leveraging features like backup compression, encryption, and cloud storage integration further enhances the efficiency, security, and resilience of your SQL Server backup solution. This comprehensive guide provides a solid foundation for mastering SQL Server backups and safeguarding your valuable data assets.


Please note: This article is based on the provided source documentation and aims to be a comprehensive guide on SQL Server backup. For the most up-to-date and detailed information, always refer to the official Microsoft SQL Server documentation.

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *