backup

Anyone able to work with shadow copy from a .Net app running on Vista?

The background information, libraries and sample code on the Joe Lynds site is really helpful and works fine with XP. There are also other code samples around to help with XP shadow copy. Advice on using shadow copying from a .NET app running on Vista / Win7 is thinner on the ground. Joe Lynds site offers a wrapper which claims to work ...

How to backup tcsh history periodically to a single file in chronological manner ?

I use tcsh at work - one of the features I use extensively is command-line history completion at the shell prompt. Currently, I've limited the size of my history file to 2000 (as I don't want to slow down the shell too much). However at times I need a command I know I've used a month or two back , but by now has been erased. So I want a ...

What's a Backup and Recovery Process for Team Foundation Server 2010?

We have a new installation of TFS 2010 (on SQL Server 2008), and I'm planning the backup and recovery process. It seems the configuration information and data is stored in the Tfs_Configuration and Tfs_DefaultCollection databases (and additional Tfs_[CollectionName] dbs if you have more than one collection). In a test setup, I tried ba...

MySQL Backup: Can I copying individual MyISAM table files to another server with different MySQL version and different OS?

I means copying individual MyISAM table files is: (shut down mysqld and copy the .frm, .myd, and .myi files from one database folder to another) Question: (a) can I use this way to backup MySQL database folder from one server to another server with different MySQL version? (b) can this backup files moved to different OS? (example: debian...

How to automatically backup ALL mysql databases into sql statement?

MySQL Administrator> Backup Project. It is a great tool to allow you to select databases, and schedule it. However my issue is: Today got a few new websites (new database created) Tomorrow got a few more new websites (new databases created) In this case, I have to always go into Backup Project> Select those remaining schema not in the...

What's the best way to back up data on Google App Engine?

Google itself provides two solutions. http://code.google.com/appengine/docs/python/tools/uploadingdata.html One of these is new and experimental and requires you to run a separate command (and separately enter your username and password) for each kind of data you want to back up. The other requires you to twice write out information o...

Backup DNS Server/s

Hi guys, I have a problem with this script here for /f "tokens=3" %%a in ('netsh interface ip show config ^| find /i "DHCP Enabled"') do set DHCP=%%a If /i "%dhcp%" == "Yes" ( REM do command here ) Else ( REM script to backup DNS servers to environment variables ) I've tried numerous ways using the first for /f example to tr...

bzr - create tgz file containing full repository

I'm trying to backup my shared bzr repository. I have looked at bzr export hotcopy.tgz but it seems only to take a snapshot of the latest revision. Is there a command for doing backups, or do I have to full checkout into a tmp dir compress the tmp dir remove the tmp dir Or is there a better way to backup a bzr repository? ...

Can you backup/create a dump of a subversion repository with out direct access to the server?

I use a hosted subversion service for a number of personal and work development projects. While they keep backups like any hosting company should I'd like to be able to create my own local backups as well just in case. This service allows you to request and download a backup, but they charge money to do this. Is there anyway I can genera...

SQL backup using SMO .net c# DeviceType.Pipe

I wrote a Program that backup SQL Databases using SMO Library on .net , and everything is just going smoothly, I just have one last point, I'm changing my way to save the .bak file on the hard disk, from DeviceType.File to DeviceType.Pipe, I have used pipes before, I just didn't know how to implement it here . ...

How to backup database file to sdcard on android?

I'd like to add a feature to my android app that automatically backs up the sqlite database to the sd card. What's the best way to go about this? Any examples/tutorials available? ...

How many tasks can task scheduler run simultaneously

How many tasks can task scheduler run at the same time? I have set up three backup tasks from within SQLyog, all to start running at 12:00 am and run at subsequent 4 hours until midnight. Each task will backup all tables from three different databases to a network attached storage. Will there be any impact on the MySQL Server performanc...

How to resolve Sql Server Error Message 117 - Too many prefixes for object name?

I am transferring a database from one hosting provider to another. The current provider uses the domain name as part of the user name. The domain name is a .co.nz domain. So some objects in the database have a fully qualified name of [email protected]. Im trying to alter the schema of these objects to put them into a dbo sche...

Backup configuration files

I need to be able to store configuration files on machines that gets disconnected by plugging off the electricity ;), I'm using basic WinApi to store configuration data (WriteFile), this works unless the machine is plugged off ;), sometimes file isn't saved at all. I was thinking of 2 solutions: 1) Transactional NTFS API (eg. CreateFil...

How to back up the embedded H2 database engine while it is running?

I would like to build up an web application with H2 database engine. However, I still don't know how to back up the data while the database is running after reading this tutorial: http://www.h2database.com/html/tutorial.html#upgrade_backup_restore Does H2 output its stored file to somewhere in the file system? Can I just back up the ou...

Simple Automatic Backup Solution for Magento?

Hello all, I've recently started work on developing a site using Magento. All of my files and DB are on a linux-based remote web hosting server. What I'd like to implement is some sort of system where all of my files and the database are backed up once per day "just in case". I'd also like to be able to use the same system to manually...

SharePoint Backup / Restore Solutions

Hi, I am using SharePoint to build a website and I am looking into the backup / restore solution. The website is hosted on a set of virtual machines (one VM for the web front-end, one VM for SQL Server). I have a backup of these VMs in a base state (fresh install of WSS and SQL, no web application created, etc.) What I would like to h...

SQL Server Backup Files

Is the structure of SQL Server database backup BAK file similar to NTBackup BKF file? Is there any reference which can be redirected to understand the difference between NTNAckup and SQL Server Backup (*.bak) files? ...

How to create MySQL back up executable file?

I am using php, mysql and my server is Windows Server 2003 with IIS6. I am planning to backup my database on hourly basis. I can do the cronjob, tested by write date&time into a log file. It works perfectly. Now I want to use the cronjob to backup my databases. How do I do that? Create a php script and let it run every hour?? ...

Postgres: clear entire database before re-creating / re-populating from bash script

hi folks, I'm writing a shell script (will become a cronjob) that will: 1: dump my production database 2: import the dump into my development database Between step 1 and 2, I need to clear the development database (drop all tables?). How is this best accomplished from a shell script? So far, it looks like this: #!/bin/bash time=`dat...