Szybki backup serwera mssql w trakcie aktualizacji vCenter/VUM

  • By :
  • Category : VMware
VMware

Podczas aktualizacji usługi vCenter/VUM lub innej (jeśli ktoś ma je jeszcze ma oparte na windows i mssql), zachodzi potrzeba szybkiego backupu całej bazy danych. Można to oczywiście zrobić za pomocą kilku kliknęć w “sql management studio” w sposób w jaki opisano tutaj: https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/create-a-full-database-backup-sql-server?view=sql-server-ver15

Niestety “sql server management studio” nie zawsze jest zainstalowany -zwłaszcza dla małej wbudowanej bazy, gdzie rozmiar samego studio może być większy niż bazy i silnika SQL razem.

Warto wówczas pamiętać, że jest jeszcze kilka sposobów zrobienia backupu a jednym z wygodniejszych jest użycie polecenia (przystawki) dla powershell.

To czy jest ona zainstalowana można zweryfikować poleceniem:

Get-Module -Name SqlServer

https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/create-a-full-database-backup-sql-server?view=sql-server-ver15

Ew. zostaje instalacja modułu (pod warunkiem dostępu do internetu):

Install-Module -Name SqlServer

Jeśli podczas importu modułu pojawi się błąd związany z restrykcją na zdalnie podpisane skrypty, wówczas można zmienić poziom bezpieczeństwa PowerShell wydając polecenie:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

https://docs.microsoft.com/pl-pl/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-6

W końcu, polecenie do backupu bazy danych ma następującą postać:

Backup-SqlDatabase-ServerInstance $serverName -Database $sqldbname -BackupFile "$($backupFolder)$($dbname)_db_$($addinionToName).bak"

Backup-SqlDatabase -ServerInstance Computer[\Instance] -Database <myDatabase> -BackupAction Database -Credential $credential

Inne przykłady polecenia można znaleźć w artykule: https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/create-a-full-database-backup-sql-server?view=sql-server-ver15

Teraz pozostaje to oskryptować i używać przy ew. aktualizacjach. Przynajmniej do momentu przejścia na appliance VMware i przerzucania się na vPostgresql ( hmmm … ) lub $$$Oracle$$$.

No Comments

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Linux
Migrate WordPress site to another hosting service.

IntroductionThis article details the migration of WordPress site (exactly this site you are now on) from one service provider to Amazon Lightsail. There might be various reason to do that (mine is outlined below) but in general I hope to share the message that especially with WordPress, migration can be …

VMware
VMware Workstation and Fusion can be installed and use for free (even for the enterprise)

For a while now, the VMware Workstation (and Fusion for MacOS) can be used without any additional fee for Personal use. That was a great Broadcom news and nice gesture from that software vendor. Recently Broadcom announced that the software will be available for all, even the commercial sector. This …

Linux
Salt, VMware implementation – part 1, introduction

As every IT administrator knows, the infrastructure (meaning storages, compute, VMware virtualisation stack) is just a fundaments to run various operating systems (OS) and finally (containerized) application. Therefore, installation of (let’s call it) infrastructure in the datacenter (SDDC), in that sense is just the beginning of the adventure. No wonder, …