Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
53 views

I have a bash script for backing up some databases to the location: /media/backup-disk/mysql-backup It runs from cron every 30min and a script contains: #!/bin/sh -e /usr/bin/mysqldump --defaults-file=...
Marko Amb's user avatar
0 votes
1 answer
466 views

I was testing the restoring of my database backup and when it comes to the views, most of them are restored but for some views it gives me an Error I went to check the view, the view has a select ...
a7salty's user avatar
0 votes
1 answer
353 views

I want to take differential backup of a MYSQL DB, this backup should contain the data after the last full backup was taken. and then I should be able to restore both full and latest differential ...
vishwadeep sharma's user avatar
0 votes
1 answer
619 views

I successfully did a backup of my database, dropped the DB in workbench and created a new one, and attempted to restore it. First, it didn’t restore until I ran the creation of a custom function first ...
angryteacup's user avatar
0 votes
0 answers
80 views

I'm trying to take a backup of a mysql database using the following code: @echo off For /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%b-%%a-%%c) For /f "tokens=1-2 ...
Angelique Ann Yadao's user avatar
0 votes
1 answer
268 views

I have a client that backed up his data with MEB 4.0.0, so now I need to extract the contents of the image, but because I'm using mysql Enterprise Backup 8.0 I can't since it's not compatible. Is ...
Kelvin Klein's user avatar
-1 votes
1 answer
504 views

I am using MySQL v8.0.21 and mysqldump v8.0.23. I have a table with the following schema: mysql> desc resource_downloads; +-------------+--------------+------+-----+---------+------------------+ | ...
Antoine Laffargue's user avatar
0 votes
1 answer
146 views

I have a MySql Database connected to a VB.Net application. All I want is to create the database automatically using my application. I currently use MySqlBackup.Net available in NuGet Packages to ...
Albert Alberto's user avatar
0 votes
2 answers
8k views

I have deployed a Laravel application with Laradock. I want to point out that the database connection works fine (users can register, login, ... etc.). In order to back up the application, I have ...
Pathros's user avatar
  • 10.8k
1 vote
2 answers
817 views

Im trying to restore a mysql database from a back up. I was able to do it on command prompt directly using mysql> -u username -ppassword < E:\replication\DestinationTest\restore.sql. This ...
SaraDob's user avatar
  • 69
0 votes
1 answer
243 views

Is there any way where I can take a backup of some files/folders to take the backup of all my Mysql databases. I am using Acronis Cloud Backup tool and I dont find any option where I can backup mysql ...
Kalpak's user avatar
  • 3,540
0 votes
2 answers
376 views

I have created a cron tab to backup my DB each 30 minutes... */30 * * * * bash /opt/mysqlbackup.sh > /dev/null 2>&1 The cron tab works well.. Each 30 minutes I have my backup with the ...
Chatis's user avatar
  • 57
1 vote
0 answers
151 views

I try to save my database from my wordpress on a EC2 instance in AWS. Manually it's ok if i do : mysqldump -u root -p*mypassword* bitnami_wordpress > bdd.sql</i> But if i do this script (...
Anne-Lise Coruble's user avatar
4 votes
0 answers
2k views

I have an application in laravel and I want to take a backup of a MySQL database and upload it to my Google Drive automatically. Can you please guide me how can I do that without Third party API.
a.ak's user avatar
  • 649
0 votes
0 answers
312 views

I'm current on MySQL 5.7.26, and am trying to mysqlpump to take dumps of my database. I have successfully used mysqldump previously. Doing the mysqlpump and piping that to a slave instance results in ...
Mobile Ben's user avatar
  • 7,379
0 votes
1 answer
661 views

I have a live newspaper WordPress website with about 10 users updating it daily with about 2000+ unique visitors a day. I have a sum of about 30 posts a day added to my db and i host my own pictures. ...
Amir Khadem's user avatar
0 votes
1 answer
454 views

please i want to backup my database using php. i have tried many answered question on this similar problem but still not working. $username = "***"; $password = '******'; $database = 'mydatabase'; $...
justice's user avatar
  • 85
3 votes
1 answer
2k views

I have master and slave servers. Replication done. Now I did follow the below steps on both servers. mysql> show binary logs; +------------------+-----------+ | Log_name | File_size | +----...
Vasantha Kumar G's user avatar
0 votes
1 answer
448 views

I have two servers. master and slave which moderated for replication. replication process is working good. Here I wants to use "incremental dump" option for every one hour and upload that to s3 bucket ...
Vasantha Kumar G's user avatar
2 votes
1 answer
2k views

I have multiple MySQL databases on WIndows Server and I would like to backup all these databases by creating a folder with the name of the database and inside the .SQL file folder for each table of ...
Diego Lima's user avatar
0 votes
1 answer
37 views

I have a working database - and I want to copy all its data (or even just 1 table from it) and create a backup on disk and also create a "backup" database on another location (not the same computer). ...
Korenron's user avatar
  • 101
0 votes
1 answer
5k views

Using binary log file to restore mysql database is very useful, especially in misoperation. Below is my method to do this on Windows. If this question helps you, please mark it as "Useful", thanks.
danny's user avatar
  • 467
0 votes
0 answers
128 views

My Java application needs to be able to run on a remote system without the MySQL cli installed on it and can only interface with the MySQL database using a MySQL connection ( no ssh ). I can't use ...
Mike Flynn's user avatar
1 vote
3 answers
3k views

How should you go about restoring (and backing) up a MySQL database "safely"? By "safely" I mean: the restore should create/overwrite a desired database, but not risk altering anything outside that ...
JonBrave's user avatar
  • 4,300
2 votes
1 answer
282 views

in PHP how can I redirect my page once scrpit has run with a successful case 0 but stay on current page for anything else? exec( $command, $output = array(), $worked ); switch( $worked ) { case ...
shaggs's user avatar
  • 620