Prompt stringlengths 14 160 | Instruction stringlengths 18 2k | Response stringlengths 8 2k |
|---|---|---|
Should I put database and CMS files on a separate EBS or S3? |
Is is possible, or even advisable to use and EBS instance that remains at Instance Termination, to store database/website files, and reattach to a new Amazon instance in case of failure? OR should I backup a volume-bundle to S3? Also, I need an application to accelerate terminal window functions intelligently. Can yo... |
0
We do this with our Nexus installation - the data is stored on a separate EBS instance that's regularly snapshotted but the root disk isn't (since we can use Puppet to create a working Nexus instance using the latest base AMI, Java, Tomcat and Nexus versions). The one d... |
MySQL data rollback for past 3 queries |
I just dropped my company's table and realized that the SQL backup I made was for STRUCTURE not DATA. I need to restore the data immediately.... is there anyway to do this? I'm using PHPMyAdmin and all i've done so far is
DROP TABLE USEFUL_TABLE
AND
CREATE TABLE IF NOT EXISTS USEFUL_TABLE
AND (IN DESPERATION)
ROLLBAC... |
DDL commands can't be rolled back in MySQL. You need to restore from a backup.
If you need to recover data that was committed since the latest backup, perform point in time recovery with binary logs. But this depends on having binary logging enabled, and having a continuous set of binary logs since the date of the... |
Derive deleted project from Xcode data or caches |
I deleted my whole project folder (all .h and .m files and graphics, etc). Coming from Windows I thought that folders in MAC OS would merge, but they were replaced :-(
I don't have any snapshots. Is there any chance to retrieve any data? (reverse engineer any derived data or sth.?)
So far I could:
rescue my graphi... |
0
How long ago did you delete them? If it was recently and you haven't emptied the trash yet, you might be able to find it there.
Just click the Trash icon on the dock, and see if the folder is in there. If it is, you can just drag it back into your project and everything ... |
Mysql backup error |
I wrote the below line to create a mysql backup , for some reasons i'm getting Errcode 13 .
E:\Xampp\xampp\mysql\bin\\mysqldump -u root --add-drop-database -B project_db -r C:\Documents and Settings\Administrator\My Documents\a.sql
Why does the above line fail to execute ? I'm trying to create a DB backup using the... |
It's probably because file "C:\Documents" does not exist. You probably want this:
-r "C:\Documents and Settings\Administrator\My Documents\a.sql"
^ ^
|
find directory trees in large tree structure that are identical |
I have an archive of about 10 years worth of files that is a large directory tree structure, having multiple copies of smaller tries at various locations in the larger tree. The tree grew into this structure because of a lack of consistent backup strategy and filing strategy (all my own fault, basically).
I'm looking... |
0
Maybe use the suffix tree data structure to find longest common substrings - even possibly with differences thus representing a similarity measure.
Create a new tree that mirrors the existing hierarcy in the sense of one node in the new tree per file/directory of the hier... |
Restore a MySQL Database and Files every 30 mins for a demo site |
Ok I read this post:
I need to restore a database (mysql) every 30 minutes using a cron job
and the answer was:
mysql -u user -ppassword databasename < /path/to/dump.sql
My question is will that erase the data that is already in the database? I need to overwrite from a stored MySQL file.
I also then need to overwrit... |
0
Using the cron job to run a .sql file can do what you want. To replace all the data you'll have to add the table drop and creation statements to the file being executed. That will force the specific data that you want to be the only data in the database.
Share
I... |
automatic cpanel backup on shared hosting |
I have been looking for a way to backup complete cpanel including all the files and databases locally on the shared hosting.
No backup option was provided in cpanel.
I've googled it but all I could found was the php script for automatic backup using FTP on remote host.
What I'm looking for is the way to backup on the... |
0
what you can or cannot backup is decided by the host. You should contact their support (it's easier). I don't understand what codes are you looking for alternatively. The surest backup is to keep a copy of your files on your hard-disk and FTP is the probably the most reli... |
MySQL backup process slowing down inserts and updates |
Currently i am using the mysqldump program to create backups, below is an example of how i run it.
mysqldump --opt --skip-lock-tables --single-transaction --add-drop-database
--no-autocommit -u user -ppassword --databases db > dbbackup.sql
I perform alot of inserts and updates on my database through out the day, bu... |
0
The absolutely best way of doing this without disturbing the production database is to have a master/slave replication set up, you then do the dump from the slave database.
More on MySQL replication here http://dev.mysql.com/doc/refman/5.1/en/replication-howto.html
... |
BACKUP DATABASE is terminating abnormally |
I have a stored procedure, which performs a database backup for a specific database like this :
ALTER PROC [dbo].[SP_Backup]
@DataBaseName NVARCHAR(500) = NULL
@fullPath NVARCHAR(500) OUTPUT
AS
BEGIN
DECLARE @dbpath NVARCHAR(500);
SELECT @DataBaseName = DB_NAME()
SELE... |
this was a problem with create folder.
SELECT @fullPath = @fullPath + N'\Backups\' + @DataBaseName + N'.bak'
server1 has "Backups" folder and sql can save backup on it, but there is not this folder on server2
|
hbase export row size limit |
I want to create a backup of my hbase table using hbase export.
The problem is that my rows are very big and I get a java heap space error. Is there any parameter I can give in order to limit the copied size in each step?
I use the following command:
hadoop jar /usr/lib/hbase/hbase-0.90.3-cdh3u1.jar export tab... |
0
You can use the export tool, that is, hadoop jar hbase-*-SNAPSHOT.jar export, with a regexp param (if it starts with ^) or interpreted as a row key prefix as the last argument. Details see in the source as it seems not yet to be documented (should work from 0.91.0 on).
... |
Dump incremental file location |
How does dump create the incremental backup? It seems I should use the same file name when I create a level 1 dump:
Full backup:
dump -0aLuf /mnt/bkup/backup.dump /
and then for the incremental
dump -1aLuf /mnt/bkup/backup.dump /
What happens if I dump the level 1 to a different file:
dump -1aLuf /mnt/bkup/backu... |
0
I think I figured out the issue. It looks like dump adds information in the file so it knows when the previous level occurred.
Level 0 backup
# file bkup_tmp_0_20130220
bkup_tmp_0_20130220: new-fs dump file (little endian), This dump Wed Feb 20 14:29:31 2013, Previo... |
Why Tape Backup dimension change for every program i use? |
i'm writing a little tape writer application in C#, using class contained in this article:
http://www.codeproject.com/Articles/15487/Magnetic-Tape-Data-Storage-Part-1-Tape-Drive-IO-Co
this works very well, but writes a lot more data on tape than the original file data.
Pratical example:
my test file is 160mb.
writing ... |
0
My take on it would be the block size of the tape is greater than your BUFFER_SIZE. You are not filling the tape blocks all the way.
Share
Improve this answer
Follow
answered Feb 8, 2014 at 6:0... |
Get backup from one folder in a pc in local network to server pc |
we have some computers in a local network, that their users create new files or update existing files in a specified folder in these computers. now i want to copy these files in this folder, to a server every 24 hours.
how can I do this in C# ? I want to write a C# program, that do this. and what network configuration... |
0
If i understood the question right you can just use a rivision control tool like subversion, or alternatively use tool to Synchronize Folders Between Computers, take a look at this article.
Share
Improve this answer
Follow
... |
Backup mysql database in ms-access format using php |
i am using mysqldump to backup the database available in MySQL using the PHP to the sql dump format which creates the .SQL file. if i want to view / check the backup file then i have to import it first in order to check/verify/view the data which takes a lot of time.
the issue/question is whether there is some way to ... |
0
In basic terms you cannot do that, mysqldump is literally a sql file which has insert statements which would insert the data, where as a Ms-access has a accdb which is where the data is actually stored.
The import you are running actually takes the sql file and inserts ... |
How to take Mysql Backup without using script? |
Is it possible to take daily backup (Only the records per day) for particular table in DB.Once the backup is done need to delete those records from table.
Is this scenario will work without using scripting language like php,perl...?
|
0
the easiest way is to use script
1) select records you need
2) put them in some form of dump
3) run delete from table with parameters you need
other constructions (triggers with stored procedures or else), IMHO, will shoot you in leg eventually
Share
Improve ... |
I am unable to find the backup image after the test restore got completed successfully |
Kindly help me out in understanding the below mentioned problem.
I took a backup of a SAMPLE db on P:\BAK and the backup was successful.
Backup successful. The timestamp for this backup image is : 20130127162614
----------------------------------------------------------------------------
Comment: DB2 BACKUP SAMPLE OF... |
As stated in the documentation for the RESTORE DATABASE command, using the TO target-directory option allows you to change the target database directory, but only if you are restoring a database that does not already exist. If the database already exists (as it does in the commands you give above), then specifying th... |
Copy files automatically from usb to specific folder with specific extensions |
I have huge amount of flash drives and I need to backup my files on specific folder (for example C:\Backup).
There are two problems :
1. I need to backup files with .doc and .docx extension only.
2. When flash drive is inserted, I want that files would copy automatically.
(It's loop if I remember)
Is there any batch s... |
0
try this tutorial for autoplay USB
Then, i am thinking, instead of the autoplay.exe you can set it to run a batch file instead.
In that batch file use the xcopy command.
Share
Improve this answer
Follow
... |
Compare File & Copy Replace if Successful |
I have written a shell script that creates a backup of my MySQL database. The script performs the following functions:
Creates a Backup of the MySQL database
Compresses the Backup
Copies the Backup to a Remote Server
Send an E-Mail displaying the size of the Backup
Removes any left over files on the source ser... |
0
I would not rely on file size. Use the date stamp and keep a rolling set of backups so you always have the last 5 days' worth of backups. rsync is what I would use.
Share
Improve this answer
Follow
... |
SQL Error when importing backup into phpmyadmin |
Hi I am getting the below error when importing a backup into phpmyadmin. Any Ideas why I am getting this?
There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem
ERROR: Unknown Punctuation String @ 593 STR: /> SQL:
-- phpMyAdmin ... |
0
Do you have magic_quotes enabled somewhere in your php.ini?
http://php.net/manual/en/security.magicquotes.disabling.php
Share
Improve this answer
Follow
answered Jan 12, 2013 at 17:26
mos... |
Runing mysqldump from java code won't dump triggers |
This is how i make mysql dumps from java
public static boolean mysqlDump(String destination){
File back=new File("tempsdfsdf.fdr");
Runtime rt = Runtime.getRuntime();
FileWriter fw=null;
try {
fw = new FileWriter(back);
}
catch (IOException ex) {
return false;
}
Process child;
try {
child = rt.exec("... |
0
If the arguments to mysqldump are the same for when you run them in two different environments, the difference must be in the permissions of the users you are using.
Check what user the commands run as (by using SHOW PROCESSLIST in another window while the mysqldumps are... |
Incremental Backup Solution (Sqlite, MySQL, SQL Server) |
I am using Sqlite in a project. Currently I have collected 30 million samples and the size of the database file is around 2 GB!. I am also performing the backup using the sqlite3.exe application automatically every 12 hours. The size of the DB is increasing and I should switch to the incremental-backup solution. I wan... |
0
Assuming that you have the necessary field in your table, you could simply change your full backup to something that pulls everything that was created after the last pull:
-- export.sql.template
sql='SELECT * FROM YourTable WHERE SampleID > $lastSampleID'
Then you could ... |
deja backup: UnicodeDecodeError "unexpected end of data" |
I'm using ubuntu 12.04 and deja backup.
It encounters an error during the preparation of the backup:
Backup failed: unknown reason:
File "/usr/lib/python2.7/dist-packages/duplicity/selection.py", line 187, in Iterate
log.Debug(_("Selecting %s") % subpath.name)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe9 in... |
0
I've a workaround,
You can change the session language before call to duplicity
declare -x LANG="en_US.UTF-8"
It work for me, my default LANG is "es_ES.UTF-8", and duplicity fails. With "en_US.UTF-8" works.
See: https://bugs.launchpad.net/ubuntu/+source/duplicity/+bug/10... |
MySQL backup and partial restored "snapshot" (time defined) with auto-increment id fields |
Hope that some one can give me a hint here.
I have a mysql (Inno) database with multiple tables related between them by foreign keys.
My database has several Gigabytes of data now.
What I need to accomplish is: backup my actual database (ok mysqldump will take care of that for me), and I want to """clean""" the databa... |
0
Adding a column to hold an entered date or a last modified date (or both) could help. You could use a trigger to set the date.
Share
Improve this answer
Follow
answered Nov 27, 2012 at 17:57
... |
c# for WP7.5: How to do remote backup of a .txt file? |
I want to complete my application with a function that automatically downloads or uploads three .txt files, which are generated by my application. How to do it? Can I do it with one of my web sites? How? Which functions should I use?
What i would to do is similar than EverNote, so I know what i want to do is possible ... |
0
i would assume that you have a server for your website.
you could use the server as the endpoint and send it over via a stream or create your own set of api.
Share
Improve this answer
Follow
an... |
How to delete and backup model in rails? |
Sometimes I need delete some data in rails:
Post.where(id: [123, 321]).delete_all
And I need backup the data in case something went wrong.
Is there any Gems or Code help me to do this?
It should export to YAML file, backup all the data destroyed, and easy revert(import data again).
I already done the database level b... |
You can always use this:
https://github.com/goncalossilva/rails3_acts_as_paranoid
It will mark your records and delete them, but not really delete them, and gives you the possibility of recovering them.
|
How to backup using backup API's in c++ [closed] |
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
... |
Read the documentation. Specifically, the second paragraph of the documentation for BackupRead:
You must set the variable pointed to by lpContext to NULL before the first call to BackupRead for the specified file or directory.
Your code is also in dire need of error handling--you do no checking for errors at all, w... |
Unable to expand list view selector |
I have restored a SharePoint - 80 application backup on a new server and mapped the existing domain name to this server.
The default list view selector does not show the available pre-defined views/pages, but returns the 500 Internal Server Error - http://SERVER_NAME/SUB_SITE/_layouts/vsmenu.aspx?List=LIST_NAME... err... |
This issue seems to be caused by associating the existing public domain name with the restored SharePoint - 80 application.
When accessing all the SharePoint pages (and the problematic functional elements as well) via the http://HOSTNAME_HERE/ address, everything operates properly.
When accessing all the SharePoint pa... |
BigCouch IDs and Backup data on EC2 |
I have a few questions about BigCouch that i'm interesting getting answers before start using it.
Do I need to choose my shard key carefully or can just use an auto-generated GUID? I start with a single server with 1 replication, but I want to be ready when I need to add another shard
Any GUI for managing the cluster... |
0
Since you have no started to use BigCouch yet and it looks like you need some features that are available out of the box in Couchbase (auto-sharding, administration console ...)
Why no going on Couchbase ?
Share
Improve this answer
F... |
Using BackupManager on a Android PHP-MySQL Server |
I'm making an Android application that uses a coin in-game currency (that can be bought using in apps billing) and with that virtual currency the user can buy items that can only be bought once.
To manage every purchase and how much coins each user has, I initially though of using a table for every purchase and user ... |
0
This is wrong approach as you are open to "frauds". On rooted devices people could easily replace or modify your "wallet" file and without own records you will not be able to catch that.
And BackupManager is well... for backups, so I am not really see a correlation betw... |
How to Download my MYSQL Backup? |
Okay I use this script here to make a backup of my database:
mysqldump -u root -h localhost -pPASSWORD forums | gzip -9 > backup-$(date +%Y-%m-%d).sql.gz
This is used in a cron daily.
But I need to download this remotely or through a ftp program every day as well so I have a physical copy of it on my home hard driv... |
0
mysqldump --user=root --password=PASSWORD forums | gzip | ncftpput -c -u root -p PASSWORD 76.121.167.17 backup-$(date +%Y-%m-%d-%s).sql.gz I found a fix, i just opened port 21 on my modem and turned on DMZ Hosting :) Thank you @MarcB!!!! Make sure NCFTP is installed :)
... |
rsync for mirror server with plesk |
I have 2 linux server (centOS) with Plesk 10 and two license. I want to make the first server master and the second a mirror slave, using RSYNC.
I know how to transfer some folders (domains and databases).. but I have a question:
If I create a new domain on the master server, how can I "update" the slave server?
If I ... |
0
Additionally to vhosts and mysql you would need to replicate
Plesk managing DB ("psa")
DNS configuration
/etc/psa, /etc/httpd and /etc/proftpd*
There may be some other folders as well - you may need to watch changes for a while
Share
Improve this answer
... |
WHM / cPanel: mySQL back-up |
I am setting a new server, with WHM / cPanel installed.
It is very important that I can take a full mySQL back-up once or twice a day.
Right now the databases are pretty small (20 mb), but volume will increase rapidly as soon s we get more customers.
I now there is a possibility to create a cron job and have the back-... |
You can have a cron job set up to back up your database and dump it to a directory of your choosing:
mysqldump --all-databases --skip-lock-tables | gzip -9 > /your/backup/dir/here/`date +%Y%m%d`_backup.sql.gz
What you do from there is up to you, but I agree that you should not email it due to the size. Perhaps you c... |
Cassandra db doesnt see new column families after backup restore |
I need to copy data from one KS to another KS. Keyspaces has different names.
I've made a snapshot of one keyspace and do all as said in datastax:
http://www.datastax.com/docs/1.1/operations/backup_restore
After start cassandra see old column families and doesn't see new column families in another KS.
What i am doing ... |
0
It sounds like you never CREATEd the columnfamilies in the new keyspace.
Share
Improve this answer
Follow
answered Oct 9, 2012 at 17:28
jbellisjbellis
19.4k22 gold badges3838 silver badg... |
Loop through directories and rsync contents |
I'm looking to rsync only specific files and directories from a cpanel backup to a remote server.
The basic structure is:
/backup/cpbackup/daily/USERNAME
from within USERNAME directory I want to backup
../USERNAME/mysql/USERNAME.sql
and also a folder (containing files and subfolders)
../USERNAME/homedir/siteassets
... |
Answered it myself:
#!/bin/bash
src="/backup/cpbackup/daily"
for dir in `ls "$src/"`
do
if [ -d "$src/$dir" ]; then
# look for mysql directory
mypath="$src/$dir/mysql"
if [ -d $mypath ]; then
mysqlfile=$mypath/$dir".sql"
rsync -vau --progress --stats -... |
How to Upload WinRAR Backup File |
I have a backup of my website in WinRAR file, I wana upload it on my new website... So I uploaded that WinRAR file on my new website panel, but it didn't worked...
Actually I'm moving my website to another hosting, so I downloaded the backup in WinRAR file and upload it on new hosting, it uploaded successfully but its... |
Upload the individual files to the server using the same method you used to upload your compressed file. The key is to NOT send the server a compressed file if you are unable to decompress it on the server.
|
shell script to only keep the latest two tar files, but delete all other tar files? [duplicate] |
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Delete all but the most recent X files in bash
The scenerio is as follows:
Two tar files will be created in one directory per day, but I need only the latest tw... |
0
Obviously this is solvable using a two pass approach.
Detect and remove corrupt tar files.
Remove all but the latest N files as described in the referenced question.
The first pass could be performed with something along
for t in *.tar; do
if program_that_checks_tar... |
BackupBuddy Plugin Error |
When backing up the whole site. This is the Error
-- Backing up with BackupBuddy v2.2.33...
15:10:14: Error #5445589. Invalid backup serial (9au6kfm0rj). Verify backup directory writer permission. Fatal error.
A fatal error has been encountered. The backup has halted. --
Solutions from the support ->
Adjust permissio... |
Do you have FTP access to your site? If you access it with an FTP program like Filezilla or SmartFTP you should be able to browse to the uploads folder and right-click to bring up the options and change the permissions.
If you don't have your FTP details or have issues accessing that then the best bet is probably to e... |
Clone mercurial repository to external repository |
I have a mercurial server, running RhodeCode, that I commit my code to. My client has a Redmine installation and has requested that code I modify for them be stored on their server (understandable).
I would like to still commit to RhodeCode and after a successful commit, push these changes to their repository automat... |
I see no problem with this; the Mercurial hook in Buildbot works this way, doesn't it?
|
Export MSSQL and Oracle database data with SSH |
How can I export the data in the database of MSSQL Server and Oracle using SSH to connnect?
Is it possible for me to type some command and export the data into, for example, a text file?
Cheers
|
0
For oracle you achieve this by using sqlplus to connect to the database and query the data. The results can be written to a file with the spool command
sqlplus user/passwd
spool exp.txt
select * from bla
sppol off
quit
Share
Improve this answer
... |
Full Online System Backup Debian |
I'm not familier with linux and debian system I work most with windows computers. But one of my clients uses debian linux web server and I need to upgrade the server's raid array.
Before I do anything with the server I would need a full system backup. I search through the internet for solution and also this site, but... |
0
You should use rsync.
It's not a snapshot, but if you don't want to use LVM, it's a start.
Share
Improve this answer
Follow
answered Aug 8, 2012 at 11:37
InternetSeriousBusinessInternetSe... |
Bash mysql / public_html only backup script |
On my dedicated, have a 5gig NAS I want to backup to.
Eventually doing a backup of the MySQL tables and public_html of each cPanel,
How could I read the content of the MySQL table folder (/var/lib/mysql) and if sub-folders are found, then make a tar.gz files of those sub-folders found then copy them to /mnt/mysql_back... |
0
Use mysqldump:
$ mysqldump my_database > my_database_dump.sql
Share
Improve this answer
Follow
answered Aug 8, 2012 at 10:57
user647772user647772
Add a comment
| ... |
Can I lose data that is being written to the database during a cron jib backup? |
I am setting up a Cron Job that will run every 15 minutes and if there is new data in a particular table it will back up that table, email it and delete it.
Do I have to be concerned that data will be written to the database at the same time as the backup is running and it will backup "half" the data and than delete ... |
0
If your job operates as you have described, there is a risk that new data could be added to the table after the SELECT used to generate the email but before the DELETE.
The simplest way to prevent this might be to run the two statements inside a transaction, assuming the ... |
Batch file to get sql backup scripts |
Is there any way where I can use Batch files to get backup of the selected scripts from the SQL database...?
Say - I have one stored procedure, one function and one view in a folder.
sp1.sql
vie1.sql
fn1.sql
Before run the batch file I want to take the backup of these files.
Kindly note: I do not want to take entire... |
0
The specific answer depends entirely on the flavor of your database engine. But the general answer is you need to SELECT the definition from your database's data catalog (meta data). The function and procedure definition will probably come out intact. But the view definit... |
Magento - Duplicate entry when importing backup |
I have some serious problems with an sql backup of a shop which I only have in form of a sql backup.
Every time I want to import the backup with phpmyadmin (even on a new database), I get this error:
INSERT INTO catalog_category_entity_datetime VALUES
(1,3,52,0,3,NULL),(2,3,53,0,3,NULL),(9,3,52,0,7,NULL),(10,3,53,0... |
0
I understand it is an old thread however, I had some success by looking at raw sql file in a text editor.
Here I found that some of my rows where indeed duplicated and I was able to remove the duplicates by hand. Luckily for me there where only five or six duplicate line... |
Using Batch Files to update and backup a directory |
I need to create a backup batch script for a directory. It will update every 10 minutes. I would like it to only update files that have been added to the directory or modified after the last backup.
I tried to use this script:
@ECHO OFF
SET srcdir=D:\Source
SET tgtdir=D:\Target
SET /A topcnt=3
SET /A cnt=0
FOR /F ... |
0
I don't understand how your code relates to your stated goal in the first paragraph of your question. If your goal is really as simple as you stated, then you don't need a batch file. You just need to schedule the following command to run every 10 minutes:
xcopy /d D:\Sou... |
Unknown object in mysql backup file error |
I am want to restore mysql backup file .
My tables have lots of Blob fields so that its size is approx 3 GB. When I restore 2.5 GB backup file it is restored successfully but I do not understand what is the problem with this.
I also tried to increase max_allowed_packet to 100MB to 1024MB but it did not worked...
Sugge... |
If your schema tables contains BLOB field then sometimes you will get this error, for this I found one solution:
Restore the backup using command line as follows:
mysql -u'username' -p'password' < pathOfMyBackup.sql
this surely solve the problem.
|
TFS2010 Disaster Recovery from Backups Only |
I have seen a lot of discussions on how to move TFS2010, the application tier and DB tier. We have the DB sitting on the same server as the App Tier. I am going to test the process of recovering the TFS2010 DB in a catastrophic failure. Therefore I will have:
SQL backups of all TFS and WSS DB's
I will have the ins... |
0
Restore an Application Tier Server
Restore Data To The Same Location
Restore Data To A Different Server
Share
Improve this answer
Follow
answered Jul 24, 2012 at 20:06
Dylan SmithDylan Sm... |
Unknown object in backup file in MySQL 5.1.41-3 ubuntu12.10 |
I am restoring mysql backup file which is of size 2.6GB...but while restoring I am getting "Unknown object in backup file" exception . How can i solve this problem. and there are no logs in mysql administrator.
Thanks,
|
0
Seems similar to the post on SO
The solution described in that bug is to increase the max_allowed_packet in the MySQL server configuration.
Share
Improve this answer
Follow
edited May 23, 2017 at 10:09
... |
SQL Server Backup (not restore!) error: The media set has 2 media families but only 1 are provided. All members must be provided |
I am running into this error when trying to Backup a database:
"The media set has 2 media families but only 1 are provided. All
members must be provided."
Please note this is on BACKUP not on restore.
There are a lot of topics on this error for RESTORE, but I didn't find any for BACKUP.
I am using this T.SQL on Sq... |
0
This is only for all database backup
DECLARE @name VARCHAR(50) -- database name
DECLARE @path VARCHAR(256) -- path for backup files
DECLARE @fileName VARCHAR(256) -- filename for backup
DECLARE @fileDate VARCHAR(20) -- used for file name
SET @path = 'C:\Backup\' ... |
sql server 2000 backup with agent |
I have this script to backup my sql server 2000 database:
BACKUP DATABASE [CRM] TO DISK = N'd:\CRM_BACKUP\crm.bak'
WITH NOINIT, NOUNLOAD, NAME = N'GUY_CRM_BACKUP', NOSKIP, STATS = 10, NOFORMAT
I want the backup to be for several days.
I thought about giving the name of the backup the day of the month
e.g. crm01.bak... |
0
You can set RETAINDAYS to the number of days you wish to keep that backup. Since you are using NOSKIP (and NOFORMAT), SQL Server will not overwrite that backup until it has expired. At that point, you could also institute a naming standard like you are mentioning, or se... |
Restoring redmine issues by email and svn |
We lost server with redmine.
Now we have old database dump and email notifications by redmine and svn history with descriptions (descriptions contains num of issue and some comment).
Does anybody know any way to restore some of lost information?
|
0
Well since i dont know for sure i`ve checked the manual page of redmine. Maybe you can create an repository with everything in there and than from there try to get all the datafiles to the right location on youre redmine server.
http://www.redmine.org/projects/redmine/wik... |
Cannot start TFS 2010 Backup Plan Wizard |
We have TFS 2010 and SP1 and TFS Power Tools December 2011 installed. When I try to run Backup Plan Wizard from TFS Admin Console, the wizard window never gets displayed. Admin Console freezes for a bit and than nothing, but when I close the Admin Console a dialog pops asking do I want to close the wizard.
Has anyone ... |
Check if all SharePoint Web Applications Settings are correct. In TFS Administration Console, go to SharePoint Web Applications and for each web app in Settings window click Verify Path.
This forum post led me to solution to my problem. In my case the issue wasn't with web application URL, but with port for Central Ad... |
Backing up large file directory |
I'm in need of suggestions for backing up a very large file directory (500+ GB) on a weekly basis. (In a LAMP environment)
I've read about rsync, but I'm not sure how to trigger that with CRON.
Also, does anyone happen to know how much the compression in rsync shrinks the filesize? (Lets say of a 3MB .jpeg). I only a... |
Here is a wiki page that has much of your question answered.
I would read the whole page to grasp one concept at a time, but the "snapshot backup" is the rsync-script-to-beat-all-rsync-scripts: it does a TimeMachine-like backup where it does differential storage going backwards in time, which is quite handy. This is g... |
How to restore MSDE database to last backup |
we have a huge (17 gig) MSDE backup file that have discovered has been appending nightly for the last 4 years.
We had a database failure last night and now we need to restore the database.
We tried a standard restore but it restored the database info all the way back to 2008. Which isnt an accurate reflection of the ... |
0
openthe log file, findout the date of the backup you want then use the script
RESTORE DATABASE [restoretest] FROM DISK = N'C:\folder\backfile.bak' WITH FILE = 1494
GO
hurray a working answer.
Buzz
Share
Improve this answer
Follow
... |
Replicate / Backup Entire Site & SQL Databases To Remote Server With PHP Cronjob |
I am trying to make a complete file & mySQL backup of my site each night.
I was thinking the best way of doing it would be to have a cronjob run each night that would login to a remote server and replicate all of the local files.
Then, I need to figure out a way to take backups of all the mysql databases (currently th... |
Use cronjob to run a bash script
mysqldump the databases
tar -cvf the files
wput it all to your remote server
Also you can set a variable like now=$(date +"%Y_%m_%d") to use in your file names
|
Conditionally importing a MySQL dump file |
I have an SQL back up file for two full fields (ID, and COUNT) from a table (CATEGORIES) and I need to import them into another identical table on another backup database where COUNT is currently default to 0.
When restoring I get an error message that the IDs do exist, which is true but all I need to restore/update i... |
0
You may want to use replace option with mysqldump:
http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html#option_mysqldump_replace
something like
mysqldump --replace -uroot -p123456 mydb > export.sql
Share
Improve this answer
Follow
... |
Database Incremental Backup and Restore (how to implement in Perl or Java) |
I have several Sqlite databases, which will be updated daily. So I need to do daily backup, in case if any crash happens so I can restore. However, it is costly to backup the whole database everyday, so I'm thinking of doing incremental backup (only backup those information between two different dates).
Currently my ... |
0
Store the timestamp of when each row was changed in your tables (call it change_timestamp column).
Don't delete rows - instead, mark them with "D" deleted status. This way you don't have to break your head/back figuring out which rows were deleted since last backup.
Have... |
sql server database backup |
I am having my sql server which is almost 10 GB of data in server A . and I need to get it through a backup restored in server B . however , the problem is that server A and server B are both in USA and i am in asia , and hosting company is asking me for $100 for that transfer , is there a way that i can make the back... |
0
Did you check the size of the log file (database properties, files, check the log file size)?
If it is taking most of the total space, you might opt to backup locally (just in case), change the the recovery model to simple, compact the database, backup it and this way mig... |
Backup SharedPreferences in Android to local Server or Device |
I am developing an App for a lot of Devices, so that they aren't registered to a Google Account.
But I want to backup my SharedPreferences somewhere. In best case in a folder on the device.
So I tried to use the BackupAgentHelper, but this backups only to Google or can it backup somewhere else ?
Alternatively is ther... |
0
Using BackupAgentHelper only uses the in-built Google backup system, and won't do anything useful for you if you don't have a Google Account on the device.
SharedPreferences files are just regular files in your app's data directory. If you want to copy them to the SD ca... |
Copy and replace (like backup) android database |
I would like to know how I can make a copy of my current sqlite db to a separate folder.
Also, I need to know how I can replace a brand new database by the stored db.
I can't use the Android backup engine because I will also copy some other files and folders.
Any help is appreciatted!
|
0
Popular question. You can find a few different way to copy files on Android devices, and a SQLite database is a simple, self contained file that you copy/replace like most others. This code works dandy: How do I backup a database file to the SD card on Android?. You ca... |
iPhone: Sequencing issue with creating file with "do not back-up" flag in Documents folder? |
Our applications set the "do not back-up" flag as per Apple's requirements. Or at least we thought so. A recent submission has been rejected because the reviewer found a file without the flag set. We tested, re-tested and tested again and see that all of our files are created with the "do not back-up" flag. Hmmm!
This... |
0
Having earned the Tumbleweed badge (= its a boring question) here is some information to answer it....
The way to set the "do not back-up" flag has changed between 5.0.1 and 5.1. The release notes for iOS 5.1 SDK has the following entry under "Backup"
iOS 5.1 introduces ... |
Java FileUtils copy backup directory |
i'm using FileUtils of Commons.IO and i'm trying to create a backup script, the simple rules is to copy from source to dest directory all files (and subdirs) that don't exist in dest or if source has a lastmodified date newer than other.
I can not understand if FileUtils.copyDirectory() is the right choice than how c... |
0
The FilenameFilter only matches the names of files or directories. It cannot help you with the decision whether or not to include an item based on existence in a different tree. However, copyDirectory() seems to do the right thing for your needs, just inefficiently - if ... |
What's a RAM efficient solution for web files & MySQL backup to Amazon S3 on a VPS? |
Here's the current solution:
http://www.tech-problems.com/backup-mysql-and-files-on-amazon-ec2-to-s3/
I'm currently using a PHP CLI script that runs nightly using cron. The problem is before the script runs for the first time there's 300MB of RAM in use then after it runs RAM doubles to almost 700MB. The web files bac... |
0
I would suggest you to go for CDP 3.0 backup solution. I am taking backup of all my VPS nodes (Linux & Windows) using CDP 3.0. It is fast, efficient and takes incremental backup of your VPS.
Share
Improve this answer
Follow
... |
On the fly file encryption in Windows server 2008 R2 |
Is there a possibility to encrypt a file "on the fly" in windows while copying file via FTP to remote storage?
i don't know if that description is good enough but i want to do something in the way of gpg -e file > ftp://xxx
or will i just have to rely on cygwin?
i'm using windows server 2008 R2 and the file i'm copyin... |
0
The file as written to local storage via ftp will simply reflect the bytes sent to it from the client. It would have to be encrypted after it was received,b as ftp has no native encryption that I know of.
Share
Improve this answer
Foll... |
Android Cloud Storage [closed] |
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
... |
A good starting point for this is the Android Cloud to Device Messaging (C2DM) introduced in Android 2.2. You should play around with it a little bit. It will give you a first understanding of what a cloud service is all about and what it entails on the server side as well as the client side. Take at the blod post, he... |
Backup Exec configuration |
I want to set-up what I believe to be a simple back-up process using Backup Exec. This is how I want it to work:
Tuesday:
Run a full back up Tuesday morning with tape "A"
Tuesday during the day, swap out tape "A" with tape "B"
Wednesday:
Run a full back up Wednesday morning with tape "B"
Wednesday during the day, sw... |
BackupExec works with append-periods and protection-periods, so yes I think you're correct. It cannot just overwrite the "oldest" backup set on the tape.
Don't forget this is an actual linear tape, so it doesn't have random access quite like a hard-drive. So when it starts to overwrite Job1 at the beginning of the tap... |
How to automate restoration of Cpanel backup to another server |
Cpanel has a built-in feature that allows automatic backup of accounts. Is there a way to automate restoration of it to another geographically separated server?
For example:
You setup daily backups from Server A.
You restore those daily backups to Server B as they come, overwriting previous restores.
Basically it's ... |
The best solution for this it's not a backup/restore-over-write.
Best solution it's a failover solution.
Combine rsync (for any file on system and files cpanel (usr(local7cpanel & /var/cpanel/) + MySQL on mode Master-Slave
In this case, you have a clone copy of your system on other server ....
A nice day.
|
Backup routine from a Windows 7 machine |
Can anyone recommend a program that automatically runs a backup on a given local path to a network destination (just sync, I only need an exact copy of the folder on the network location)? It is important that this program automatically runs the backup process even if the user is not logged in to the windows 7 machine... |
0
maybe robocopy will do if you are only on Win7
http://technet.microsoft.com/en-us/library/cc733145%28v=WS.10%29.aspx
Share
Improve this answer
Follow
answered Apr 13, 2012 at 7:12
AndersK... |
Query to determine if Backup Exec is taking backups |
Does anyone know any tactics to determine if backup exec is taking backup? We do not have access to the program to determine if it is in charge but are receiving alerts for failed backups. If you run the select * from dbo.backupmediaset for System databases it normally returns what software is being used, however Back... |
0
Have you tried using dbo.backupset instead of dbo.backupmediaset?
SELECT TOP 20 database_name,
type,
backup_start_date,
backup_finish_date,
compressed_backup_size,
backup_size
FROM msdb.dbo.backupset... |
Method of system/file/directory/application backup - Linux |
I have various applications/directories on many different servers (Linux).
My method of backing these up so far have been to just use scripts/cronjobs etc to back them up onto another server. But that isn't really scalable.
But what I want is a single backup solution that will back up all of these applications/directo... |
Posted on Superuser...ta
Entering more characters
|
How to backup and restore `ubersvn` data with command line? [closed] |
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 11 years ago.
Improve this question
... |
We have a blog on how to back up Subversion repositories here: http://blogs.wandisco.com/2012/03/20/how-to-backup-subversion-repositories/
However, that only backs up the Subversion data and not the uberSVN admin stuff (such as users and teams etc). Currently the only way to back this up is via the uberSVN interface. ... |
Keep set number of backup files |
I have some files & folders I want to back up using powershell. I'm using arrays to hold the file extensions I want to back up into one backup, and then I'm backing up the entire folder as well. The zip files I create are named TxtFileBkup_yyyymmdd_hhMMss.zip and FldrBkup_yyyymmdd_hhMMss.zip.
I build the list of it... |
0
Here is what I have after utilizing your sample code. (Thanks, BTW).
$bkup_Counts = @{
FldrBkup = 5
txtBkup = 6
}
$type = $null
#set Backup Types from the array we just defined
foreach ($type in $bkup_Counts.Keys) {
$bkupTypeArr += $type
}
# nameConv has dt stamp... |
Best Ultimate Full Cheapest Backup Software |
sorry about the long title!
I have a windows server 2003. I want to a cheap backup software that will save every single thing in the machine: files, regsitry, user accounts & settings, down to the single byte! I prefer to have dvd storages at the end to restore from. I don't want to even have to worry about Admin setu... |
On Request, I repost my comment as an answer:
Look at Clonezilla - this is the physical equivalent of a Snapshot in virtual world.
|
Accessing the image in HTTP server from a seperate image DB server |
I have a PostgreSql db that has several OID fields. The data to these fields has been inserted using the lo_import command.
But I am not able to backup the database and restore it in another server. If I try to do so, all the text entries get restored and the OID fields have a OID value, but doing an lo_export gives ... |
Here is a PHP code snippet demonstrating how to serve an image from a PostgreSQL large object to an HTTP connection:
$db=pg_connect("dbname=mydb host=dbserver");
pg_query("BEGIN");
$p = pg_query("SELECT object_id, image_type FROM contents WHERE id=$some_id");
list($oid,$type) = pg_fetch_row($p);
$h=pg_lo_ope... |
Batch File to store backup files with timestamps |
I have two folders in the same drive. I want to create backup of an access database. I need to copy the main file, append the name with the date and time and store it in a different folder.
Source Folder: G:\PMO\Talent Mgt\Data
Source file: Talent_Management_Data.accdb
Destination File: G:\PMO\Talent Mgt\Archive\Talen... |
0
You can achieve this by using for command to execute copy for each file. A simple batch file would be:
cd "G:\PMO\Talent Mgt\Data"
for %%A in (*.accdb) do copy %%A ..\Archive\%%A_%date:-=%
Share
Improve this answer
Follow
... |
Efficient incremental backup with data chunks |
I'm developing a backup tool and I can't figure out the most efficient way to do remote backup. I don't want to send the whole file every time there's a small change so I guess incremental backup is the solution. This is all well and good but now I'm stuck with a problem that how can I chunk one file into multiple par... |
0
Programs like "diff" or "rsync" solve this problem in their own way.
The basic algorithm requires you pick a "modification window" (its size depends on available memory and time, longer windows require longer matching efforts), and when an old and new hash for the same bl... |
TFS Backup Fails - when it starts taking transactional backup |
I have scheduled TFS backup using TFS power tool. It was working fine till 10 days back. Now it started this... tried all the ways what am aware of but no luck.
|
0
Ran into this a while back, the issue is probably the Remote Connection Timeout setting in SQL Server (default 600), if you log onto your SQL Server box, go to the properties and update this (for the SQL Server instance your database is hosted in) to something a bit highe... |
File Backup/Sync between two servers |
We're using windows 2008 R2 servers and we need to backup the file to the other server whenever a file gets uploaded.
Unfortunately, the client requires that there would be no file/directory sharing between servers via LAN so we are trying to do this via WCF calling another WCF. But now we're having problem calling th... |
Since dealing with security issues are often tough and time consuming, I decided to store the file as binaries to the database and load it from the 2nd server instead.
Impersonation works but that's really more of bypassing the securities.
|
Backup software Ubuntu server [closed] |
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 12 years ago.
Improve this question
... |
For an iso look at remastersys - this will create a full iso with all your files.
Shouldn't this be in ask ubuntu or unix/linux not stackexchange?
|
windows batch sqlite backup firefox history |
Not familiar with windows stuffs.. , I'm trying to write a little MS Windows batch in order to backup firefox history but I'm not getting the expected result, eg the firefox history dump into a file (not implemented here), and can't figure out why and how to solve. Instead I get a dump of the database in a new window.... |
This question is lame, because it involves three completely unrelated domains: firefox, sqlite, and batch files. You should have isolated the problem by determining whether this is a firefox issue or an sqlite issue or a batch file issue and then you should have come up with a question regarding the domain in which th... |
How to Copy Drupal 7 site with only Admin access No FTP |
I broke up with my boyfriend so he changed the FTP password to my Drupal 7 website he was hosting through his host.
I still have admin access but that's about it.
I can get the database(s).
But without FTP I can't get the files.
Ran this on a Drupal basic page
echo ini_get("disable_functions");
The following functi... |
If you've got backup_migrate you could get the database. If you've got views you could build a view to list the files or anything else you need. This would be difficult but it could work.
Edit:
From memory, a user can browse their files with IMCE if that is installed. You could get it to browse the same directory that... |
How can I get back my changes from a backup? |
I was having problems with my Mac and decide to format and reinstall everything. I make a copy of my projects to other machine hoping that git will preserve my changes. Now I copy my projects back and the result is that all my files appears as modified product of the copy-paste, yes a fool error.
How can I ignore all ... |
0
If there is still a .git folder, it should keep all version's record. I think maybe you can use git log to find out which version you are, git status to know what's the status for this repository, git diff (branch|Tag|HEAD) to check the differences from others. And finall... |
Version Control for Virtual Appliances [closed] |
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 12 years ago.
Improve this question
... |
From what I've seen and used, appliances are released with the ability to restore their default VM, probably from a ghost partition of some kind (I'm thinking about Comrex radio STL units I've worked with). Patches can be applied to the appliance, with the latest patch usually containing all the previous patches (if n... |
Backup of SQL Server database without timestamps |
I'm using the following line to backup a Microsoft SQL Server 2008 database:
BACKUP DATABASE @name TO DISK = @fileName WITH COMPRESSION
Given that database is not changing, repeated execution of this line yields files that are of the same size, but are massively different inside.
How do I create repeated SQL Server b... |
0
As you guess part of the backup catalog includes the date and time of the backup. The WITH COMPRESSION option compresses the backup to save space but a little change in the file will cause changes throughout the file because of the way compression algorithms work.
If you ... |
How to create tar that gets updated for 2 weeks |
I need to setup a bash script which tars and compresses a directory. The tar should be updated every day after that point with the same directory. This should happen for a duration of 14 days until the tar is finally removed and the process is restarted.
I could use a hand setting this up. Many thanks
|
You can use cron jobs to manage the archiving every day (at midnight or whatever). You can look it up using 'man cron'.
One way to do this would be to make one cron job that archives the directory and updates it every day. Another cron job to compress that tarball.
So for the first, something like:
if [ ! -f directory... |
Remote backserver with Sybase ASE |
I get a dump file on my local machine and I want to reload it into a remote server ASE 12.5 (from the same local machine)
I tried
load database from "/tmp/local.dmp"
and got
Server 'SYBASE_BS', Procedure 'bs_read_header', Line 0: Backup Server:
4.26.2.1: Volume validation error: failed to obtain device informat... |
0
Check sybase syntax here.
You have to specify the database that you want to load.
Share
Improve this answer
Follow
answered Dec 12, 2011 at 15:40
aF.aF.
65.8k4444 gold badges137137 silve... |
Can I manually extract email files from backups created by Plesk? |
I have made a email backup with plesk for a particular domain. Now i like to extract/import the emails in email program local.
When i unzip domain.com_mn_1112091008.tgz i get a .discorvery folder and another .zip file.
How can i import the emails with their corresponding attachments?
Regards
|
0
NO can one can extract .tgz file in plesk panel.
I can only done via on your desktop with WinRar Software or you can upload .tgz file thorugh backup manager and then click on uploaded and then click on Restore.
Share
Improve this answer
... |
cronjob for backup only when connected to company network |
I am running a cronjob for rsyncing my hard drive with a folder on a server within my companies network. This happens on my laptop which I also use outside that network.
My crontab looks like this:
*/30 * * * * rsync --delete -azvv -e ssh /Users/user/Work/Folder user@server:/home/user/BACKUP/
How can I mak... |
0
First you need a way to determine if your server is available or not. ping might be sufficient but is probably not ideal. As poor man's solution you could prepend your original command like this:
ping -c2 server >/dev/null 2>&1 && rsync --delete...
This means that cron w... |
can't restore a database from a 100.50 backup on a 100.0 server [duplicate] |
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
Is it possible to restore Sql Server 2008 backup in sql server 2005
I have a backup that was made on MS SQL Server 100.50 version, and I attempt to restore it o... |
0
Install another instance of the database version you have the backup from.
Then you can restore you backup into this instance.
After that you can use the migrations tool to move the content of the database back to you old server.
That is how I did it when I had the same p... |
Android database backup restore [duplicate] |
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
Backup and restore SQLite database to sdcard
I'm writing an application and I need to be able to backup a database to the sdcard and restore it via java. I firs... |
0
Did you make sure to set file permissions back so the sms app has permissions to read the file?
Files stored on sdcard all have ---rwxr-x, so copying your backed up sms database to /data/data/com.android.providers.telephony/databases/ will keep those permissions from sd... |
Maintenance Plan Fails But Query Runs |
I have an SQL Server 2005 Enterprise Edition whose Maintenance plan fails constantly with the error:
backup MYSERVER (MYSERVER)
Backup Database on MYSERVER
Databases that have a compatibility level of 70 (SQL Server version 7.0) will be skipped.
Databases: All databases
Type: Differential
Append existing
Task start: 2... |
0
You need to check the account that SQL Server Agent service runs as. If the account doesn't have permissions on that network share, then it won't be able to see that path. Executing that query outside of a SQL Server Agent job (indirectly through a maintenance plan) doe... |
Use PHP to connect to FTP and backup all folder contents |
I'm building a custom web app that stores the FTP and MySQL settings for the websites I manage for clients. My goal is not only to store the settings for reference, but to create functionality to assist in doing regular backups.
I've got the MySQL backup functionality working great, as it connects to the remote databa... |
0
This example from the php manual posted by mroerick might help you.
<?php
$ftp_server = "ftp.example.com";
$conn_id = ftp_connect ($ftp_server)
or die("Couldn't connect to $ftp_server");
$login_result = ftp_login($conn_id, "user", "pass");
if ((!$conn_id) ... |
Backup Magento Theme |
I am making some changes to a purchased magento theme. Is there any simpler way to backup my work other than by copying the relevant folders inside app skin and media and their directory structures.
|
Just thought I'd answer this for anyone coming along - as far as i can make out the answer to the question is no, not really - unless I'm doing it the wrong way - ( and I think not ) then the best method of backing up a custom theme is to first compress the entire app, skin and media ( if relevant) directories into on... |
Error retrieving contact group id in Android 2.1+ |
Basically things are more like black and white, on one phone (Galaxy S) works fine and on another (Nexus one, my client's of course) it doesn't.
First I show a list of Contacts that have phone numbers. The user chooses to backup a contact and I try to load all contact info to store it in a local database
cursor = cont... |
The problem was a misunderstanding... I needed to get RAW Contact ID and I used ContactID.. so, before searching for GroupId I needed to obtain Contact Raw Id
|
Is it possible to find out the last backup location used for a transaction log file in SQL 2005 or higher |
We have a product which uses a database and whenever a major release is done one of the upgrade scripts used on the database calls one of our stored procedures whose job is to drop and then recreate the fulltext index thus ensure any changes (i.e. new columns that are indexed) in the new release get installed.
The pro... |
0
Should be in msdb..backupmediafamily, physical_device_name column
Share
Improve this answer
Follow
answered Sep 23, 2011 at 9:25
gbngbn
427k8282 gold badges593593 silver badges681681 bro... |
Do not restore passwords inserted in iOS Keychain issue |
I'm developing an application for an iPad2 that needs to write some items in Keychain but I don't want it replicates in every computer I plug, doing a backup/restore of the device. I'm using kSecAttrAccessible key to select the kind of accesibility I want with kSecAttrAccessibleWhenUnlockedThisDeviceOnly value to be s... |
0
There two cool examples (with working sample code) from Apple, that helped me to understand how keychain service works on iOS. I suggest you to look at them, and hope they will help you to resolve your issue:
Generic Keychain : This sample shows how to add, query for, ... |
Problems while restoring application from backup |
I have a rooted android phone, I am working on an app which does backup of application installed in sdcard to PC. I am able to successfully backup the application from sdcard to PC. While restoring the application from the backup, I restored all files(asec,pkg,cache,data) pertaining to the application in the exact sam... |
0
Got it, using pm helped the cause.
Share
Improve this answer
Follow
answered Sep 20, 2011 at 10:59
Julius CanuteJulius Canute
22155 silver badges1616 bronze badges
Add a ... |
android backup with adobe air |
Lets assume I have a phone with Android and some applications installed on it. And I make a backup to cloud using my google account id. Then I broke my phone, and buying a new one with Android. I'm assosiating it with my google account id.
1)Is it mean that all my programs will be restored on my new phone??
2)If I ha... |
check if backup-restore is available and could be utilized to
pre-seving game status/data;
We can't backup/restore application on Android with Adobe AIR, but we can use
many 3-part software for backup.
http://developer.android.com/guide/topics/data/backup.html
|
Android Backup and Restore |
I have rooted android phone. I backed up a application, uninstalled the application from the phone and restored it back the way it was there in the phone(using backup including changes to packages.list and packages.xml). The restored application is not showing up immediately but shows up after reboot of the phone.
Is ... |
0
Go to the task manager and kill the home/launcher application. That would usually do it.
And I believe https://android.stackexchange.com/ is the place for that type of question as this is meant for programming related questions.
Share
Improve this answer
... |
Wordpress Automatic Backup Modification |
I'm currently trying to change the Automatic WordPress Backup script so that it can save files on a more regular basis (about once every 6 hours).
At the moment I can't get it to work so any help would be much appreciated.
In automatic-wordpress-backup I've added 'often' => 600 in the init function (line 51) as well a... |
0
I took a quick look.
To start, try pastie.org and paste source of plugin. I think you are going to get far fewer answers if people have to go download the plugin to view the source. I took a quick look and the changes you made seem reasonable.
See line 59 where the back... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.