Langsung ke konten utama

Automate MySQL Database Backups in Windows

https://wowilingrivo.wordpress.com/2020/02/20/cara-backup-mysql-otomatatis-di-windows/ 

Banyak cara sebenarnya, untuk proses otomatisasi ini. bisa menggunakan tools software atau bisa juga dengan scripting, kalau di Windows, dikenal batch file, di Linux kita kenal bash script.

kali ini, saya coba berbagi script yang biasa saya gunakan di windows. ini bisa dicopy – paste ke notepad, kemudian save as dengan format  *.bat

@echo off
title autobackup mysql by RW
set timestamp=%date:~6,4%%date:~3,2%%date:~0,2%
set archive="c:\Program Files\7-Zip\7z.exe"
set backupDir="C:\script\test"
cd "C:\Program Files (x86)\MySQL\MySQL Server 5.1\bin"
mysqldump.exe -uUserNameDB -ppasswordDB -hlocalhost DbName > %backupDir%\test.sql
%archive% a -tgzip %backupDir%\%timestamp%_test.zip %backupDir%\test.sql
del %backupDir%\test.sql
::pause

notes pada font merah…

  • mohon ganti dan sesuaikan dengan lingkungan Database yang sedang kamu gunakan ya, seperti lokasi “backupDir”, UserNameDB, PasswordDB, dan DbName.
  • kalau belum ada 7z tools archive, silakan didownload dan install dulu.  https://www.7-zip.org/download.html

selanjutnya, kita buat otomatis backup & archive sesuai jadwal yang ditentukan. di Windows pakai “task scheduler”, linux pakai “cronjob”.

windows > Start -> Accessories -> System Tools -> Task Scheduler

atau ketik di tombol search  “Task Scheduler”

kira-kira di windows seperti ini yang harus di-setup “task scheduler”, pastikan “runas administrator” dulu, ada beberapa tahap :

  1.  create task : tentukan nama jadwal, contoh “test mysql backup”
  2. setting trigger: tentukan jadwal daily atau monthly, dsb.trigger
  3. setting action. Tentukan Lokasi Script (batch file).
  4. setting condition. berguna apabila menggunakan backup external atau ke NAS & storage lainnya, script bisa jalan apabila ada koneksi jaringan, dsb.testback

 

setelah dijalankan akan muncul tampilan cmd seperti ini

archive

hasil backup mysql tersimpan di folder yang sudah ditentukan sebelumnya, misal. di C:\Script\test (seperti font merah diatas).

script_

jika ada yang kurang jelas, silakan comment ya ….

Komentar

Postingan populer dari blog ini

CREATE CROSS TAB QUERY IN MYSQL

MySQL Multi-Aggregated Rows in Crosstab Queries MySQL’s crosstabs contain aggregate functions on two or more fields, presented in a tabular format. In a multi-aggregate crosstab query, two different functions can be applied to the same field or the same function can be applied to multiple fields on the same (row or column) axis. Rob Gravelle shows you how to apply two different functions to the same field in order to create grouping levels in the row axis. Today’s topic of discussion is crosstabs, which contain multiple aggregate functions in the row axis of a tabular resultset. Recall from the the  All About the Crosstab Query  article that an aggregate function is one that summarizes a group of related data in some way. Examples of aggregate functions include COUNT, SUM, AVG, MIN, and MAX. In a multi-aggregate crosstab query, two different functions can be applied to the same field or the same function can be applied to two or more fields. Today we’ll create a query...

Mysql Import data from CSV File

  Microsoft Windows [Version 10.0.15063] (c) 2017 Microsoft Corporation. All rights reserved. C:\Users\PSI011>cd C:\xampp\mysql\bin C:\xampp\mysql\bin> mysqld 2017-08-22 14:24:49 15428 [Note] mysqld (mysqld 10.1.25-MariaDB) starting as process 16352 ... C:\xampp\mysql\bin> mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 9 Server version: 10.1.25-MariaDB mariadb.org binary distribution Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> use pkh; Database changed MariaDB [pkh]> LOAD DATA LOCAL INFILE 'D:/2017/PKH_FOR_BPKP/PKH_FOR_BPKP_01.csv' -> INTO TABLE pkh_bpkp -> FIELDS TERMINATED BY ',' -> OPTIONALLY ENCLOSED BY '"' -> ESCAPED BY '"' -> LINES TERMINATED BY '\n...

Pentaho Data Integration: Membuat Koneksi ke database MSSQL Server 2008 R2

Untuk terhubung ke database SQL Server langkah-langkah berikut harus dilakukan:   Download Driver Microsoft JDBC di https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774  Tutup Spoon atau Kettle project  Unzip/extract paket dalam direktori temporer (bebas) Copy '<temp directory> \ sqljdbc_6.0\enu\auth\x64\ sqljdbc_auth.dll' ke 'C:\Program Files\Java\jre1.8.0_131' atau sesuaikan dengan path java runtime terinstall  Copy '<temp directory>\ sqljdbc_6.0\enu\jre8\sqljdbc42.jar' ke '<Kettle folder instalasi> \ data-integration \ lib' Buka Spoon atau Kettle project Uji koneksi dalam Spoon Hapus direktori temporer karena sudah tidak digunakan lagi Jika kita meng-upgrade Kettle, Java, JDBC Driver ke versi yang lebih tinggi, maka serangkaian langkah-langkah di atas harus diulang lagi.