backup

MySQL- Is it possible to backup mySQL database within a period of time? [closed]

℡╲_俬逩灬. 提交于 2019-12-14 01:52:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am going to backup mySQL database in a period of time. For example: Only backup the data from January to June. Is it possible to do that? The reason I want to do this is I don't want to back up the database that is too old. If it is possible please give me some suggestion how to do that. Thanks. 回答1: I am

Cassandra Backup with EBS

冷暖自知 提交于 2019-12-13 22:03:41
问题 Currently I am looking how the backup/restore be done in Cassandra. We've setup a three node cluster in AWS. I understand that using nodetool snapshot tool we can take a snapshot but it's bit cumbersome process. My idea is : Make use of EBS snapshot because they're more durable and easy to setup but one problem which I see with EBS is inconsistency backup. Hence, my plan is run a script prior to taking EBS snapshot which would just run flush command to flush out all the memtable data and

oracle rman simple backup

◇◆丶佛笑我妖孽 提交于 2019-12-13 20:39:45
问题 I would like to backup an Oracle 10G as simple as possible. It is in NOARCHIVELOG mode and I can shut down for backup (it is only a development server). After reading tons of documentation abour rman I tried this way in rman: shutdown immediate; startup mount backup database; sql 'alter database open'; As I see it works fine, list backup shows backups. Than I made some modifications (droping some tables, adding data) and I tried to restore backup: shutdown immediate; startup mount restore

How to create database backup, when DB not stored in Microsoft SQL Server?

给你一囗甜甜゛ 提交于 2019-12-13 15:55:06
问题 I am building a C# application with SQL Server 2008 R2 database which is stored in the bin folder of my project. I use Linq to Sql method to create the database and attach it to my project. The problem that I'm having is that when I'm trying to create a backup of my database. It throws an error saying Database (database_name) does not exist make sure the name is entered correctly. BACKUP DATABASE is terminating abnormally. Here is the code that i write on my button click event: try {

Firebird remote backup

拟墨画扇 提交于 2019-12-13 15:52:51
问题 I want to backup a firebird database. I am using gbak.exe utility. It works fine. But, when i want to do a backup from a remote computer, the backup file is stored on the serveur file system. Is there a way to force gbak utility to download backup file ? Thanks 回答1: Backup is stored on the Firebird Server gbak -b -service remote_fb_ip:service_mgr absolute_path_to_db_file absolute_path_to_backupfile -user SYSDBA -pass masterkey Backup is stored on the local machine gbak -b remote_fb_ip

What's a good way to backup (and maybe synchronize) your development machine? [closed]

这一生的挚爱 提交于 2019-12-13 13:25:58
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I make extensive use of source control for anything that relates to a project I'm working on (source, docs etc.) and I've never lost anything that way. However, I have had two or three crashes (spread over the last 4 years) on my development machine that forced me to reinstall my system and reconfigure my apps

Using SoftLayer API to configure Evault Backup (configure agent, jobs, and schedule)

主宰稳场 提交于 2019-12-13 04:49:11
问题 I would like to automate, via the SoftLayer API, the configuration of an Evault Backup system -- configure the agent, create a job, set the file selection to backup, create the schedule. I can't find any structures that seem to contain that information to create the configuration (except for creating a schedule). Does anyone know if the items needed are available using the SoftLayer API? To try to get a better picture of related underlying structures, I went via the GUI and created an agent,

Backup SQLite using Java

谁都会走 提交于 2019-12-13 00:41:49
问题 I need to create a Java class that creates a backup of my database. My problem is, I don't know how to do this using a SQLite database. Can anyone show me how? 回答1: If the database is reasonably small, you can just call BEGIN EXCLUSIVE TRANSACTION to prevent other processes from modifying the database, then copy the database file, then ROLLBACK TRANSACTION . If the file is huge, you'll have to use the online backup interface (if your Java bindings don't support it, use JNI). Of course, if

How to create Cron job to backup MySQL and FTP backup to my backup server? [duplicate]

有些话、适合烂在心里 提交于 2019-12-12 19:19:50
问题 This question already has answers here : Automated or regular backup of mysql data (2 answers) Linux shell script for database backup (9 answers) Closed 3 years ago . I want to setup a cron job to run so that it will automatically backup my MySQL database, while the database is running, and then FTP that backup to my backup server. I assume I can do this using a bash script. Anyone know of a good way to accomplish this? Thanks in advance. 回答1: This is a very simple approach using the lftp

Nested and independent GIT repos, for Backup, how?

我的未来我决定 提交于 2019-12-12 13:01:18
问题 I want to use GIT as a Backup solution. I have a windows shared network in my Company and a Centos Server. Each user have a unique shared folder, where is located all files of user. We have 2 developers, they can have a git repo(s). How Can I make the entire folder of user a GIT repo, a perform usual git operations, commit, push, etc, without import if subfolders have git repos? Note: Submodules is not a solution, I don't know what repositories is under the main folder of user. 回答1: There are