Act of setting data back to a previous state.
-1
votes
0answers
6 views
is there anyway to restore text from file?
i was working on a page called products and have finished a lot of work but because of power shortage suddenly all data in this php file was erased and it's which is sooo hard to work on it again it ...
1
vote
1answer
25 views
Android Save and Restore List State with CursorAdapter
I have a list view in a fragment that is populated by a CursorAdapter.
When the device rotates I want to save the state of the list, then restore it without having to make another call to the SQLite ...
0
votes
1answer
23 views
Create Azure VM from image created under different subscription
Is there a way to take a backup of a VM (image capture following the sysprep method) and then make that image in the gallery visible to someone under their subscription. For example, I create a VM, ...
0
votes
2answers
43 views
Batch file SQLCMD Restore Loop - Files Disappear
So I've searched and found a lot of info in similar areas, but nothing that quite hits the issue I'm having.
I'm working in a test environment and need to restore from the same SQL database backup ...
-2
votes
0answers
13 views
MySQL On Windows backup to file? [closed]
Is there a way to backup a MySQL database directly to a file without using the > operator?
E.g.,
mysqldump --user --password --output=mydb.bak mydb
Similar question for restoring:
mysql --user ...
0
votes
0answers
7 views
entire subdomain backup and restore every x minutes?
Very sorry - this isn't a hardcore coding issue. More of a database and file system backup & restore.
Thought I'd ask as I'm reasonably sure someone's done something like this or would know where ...
0
votes
0answers
25 views
can we restore DataBAse backup files taken from mysql cluster into standalone mysql server ?
I am running Mysql -Cluster with 2 data node with replicaset 2,and I took backup from ndb_mgm (START BACKUP WAIT STARTED),now both data node have backup files , now i want to restore the complete ...
0
votes
0answers
43 views
Restoring SQL tables from .MYD, .MYI and .frm files, mysql can't find .frm files
I recently had to re-install XAMPP on my Mac and I'm now trying to restore some SQL database tables from .MYD, .MYI and .frm files. I have tried dragging them into the file below:
...
0
votes
2answers
39 views
Invalid object name after restoring a database
i have my c# application, and i want to restore a database using my application . my sql code is like this:
alter database SSDPrototypeV3 set offline with rollback immediate
restore database ...
0
votes
0answers
11 views
Missing partitions after restore windows 7 form restoring point [migrated]
sorry if this is not the right place where I have to add my question, but I am in a big trouble. Today after installing a program, my windows 7 starts to throw an error, and I decided to restore it ...
0
votes
1answer
30 views
Database Backup best practices
I am working in a production environment, where we process XML files daily. Our database size is quite big. we are taking a daily backup. I learned that Marklogic adds up changes to your previous ...
0
votes
0answers
27 views
SQL Server - restore database with zero size log file [migrated]
SQL Server backups contain meta-data about the size of the original log (LDF) file.
So if you backup a database that has a 5GB LDF file, when you restore it, you will get an (empty) 5GB LDF file. ...
2
votes
1answer
25 views
Restore MySQL database by uploading db files?
so I have a little problem. Okay a huge problem.
We had problems with our Ubuntu Precise server and our /usr directory was removed. This means that all commands related to mysql stopped working as ...
0
votes
1answer
26 views
Restore data from 9.1.7 version postgres file to 8.4 version postgres
I want to restore data from postgres file. I have a file, when I open the file in notepad the version of the file is 9.1.7 PostgreSQL and this file contain all tables structure and database but the ...
1
vote
1answer
36 views
How to get back unversioned folder back which were deleted by Subversion
I use linux OS. I was working on a local copy of folder : test_scripts. This was not version-ed in SVN. As I wanted to checkinto SVN, I made entry:
cd to my local folder:
# svn add test_scripts
...
0
votes
0answers
27 views
Make a copy of an iOS app with all data for restoring later
I'm developing an app and want to be able to make a hard copy of the app at a certain point in time, then restore that version later for different testing methods.
i.e. take a copy of the ipa (with ...
0
votes
3answers
49 views
ios restore data after reinstalling app
I am developing an app, which offers a testing period for a feature. After a few days after starting the app for the first time, the user is not able to use this feature anymore unless he buys it with ...
0
votes
0answers
8 views
Copy a certain file from a CPIO file to a different directory
I am trying to copy a single file from a .cpio file, to a different directory rather than the tree inside it. I am trully sure it is possible, my teacher did it.
I have tried this:
# cpio -i -F ...
1
vote
1answer
24 views
Starting mongodb with plain backup of previous /data/db contents
I'be grabbed all files from /data/db dir from other sever and now trying to start mongo with it on another one. Here are the files I have:
-rw------- 1 root root 1073741824 Feb 2 11:21 j._0
...
0
votes
1answer
11 views
mysql restore and overwrite
I have a backup of my entire host 11 DB and some tables. I messed some stuff up and I want to restore and while restoring OVERWRITE.
mysql -u root -p < plasesavetheday.sql
I get errors about ...
-1
votes
0answers
23 views
How to restore HDFS data
Data node error, and then I run hadoop fsck /-delete.Lost a lot of data, Later, these data node recovery, Is there any way to restore the fsck command to delete the data.
0
votes
0answers
15 views
Restore postgres data from remote machine using PITR
I am doing backup-restore using Continuous Archiving and Point-In-Time Recovery (PITR).
I am able to do it on my machine. But when I try to restore data (WAL files) from remote machine it doesn't ...
0
votes
1answer
30 views
db2 restore database and privileges
I have a backup of database (IBM DB2 v. 9.7)
After restore command I cannot access some of the tables due to privileges issues.
On the original db client and database we have a user: userx with ...
0
votes
0answers
29 views
Restoring In app purchase in windows 8 store
Is that possible to Restore the Inapp purchase in Windows Store??
If Yes means help to figure out the solution.
Comment to solve this??
Thanks in Advance.
1
vote
2answers
49 views
Restore MSSQL database backup to a new database
I need to make clean database template backup and then generate a new one database with another name, but with backuped content.
Backup script is:
sqlcmd -S %DB_HOST% -Q "BACKUP DATABASE %DB_NAME% TO ...
0
votes
0answers
23 views
Restoring In App Purchases With Multiple accounts
In my application
I am providing some limits to usage of products, that can be extended using InAppPurchase .
So every time the purchase is made , I am incrementing the usage limit by 10 .
Doubt is ...
0
votes
4answers
40 views
Need help to save/restore a string between activities
I'm learning Android and I didn't find an answer on the web. I want to save a string from an EditText on my MainActivity to restore it on my third Activity -> Activity3
I want this string to be ...
0
votes
1answer
48 views
vb.net, Restore mysql database not working in windows xp
I have a code in restoring mysql database using vb.net. It perfectly works in windows 7 but when I try it in windows xp it's not working. Hope you can all help me with this. here's my code..
...
0
votes
2answers
33 views
win32api restore file from recyclebin using SHFileStruct
I'm using win 32 api to built explore is the same window.
I can delete file to recycle bin. Now, I want to undo files which were deleted to recycle bin.
What am I doing now?
please help me.
Thanks
2
votes
1answer
106 views
How to use redis' `DUMP` and `RESTORE` (offline)?
I tried redis's DUMP command, redirect to file (or pipe), but RESTORE report this error:
$ redis-cli dump test > /tmp/test.dump
$ cat /tmp/test.dump | redis-cli -x restore test1 0
(error) ERR DUMP ...
0
votes
0answers
29 views
Moving a deleted file back to it's original directory
Very simply put, I'm trying to move a deleted file back into it's original path.
Here's my code
#!/bin/bash
restore ()
{
base=`basename $restore_file | cut -d"_" -f1`
echo "Your file $base has ...
0
votes
0answers
38 views
Attaching a DB “inherits” schema changes from DB previously attached with same name
We've just experienced an issue where a newly attached Dev instance "picked up" schema changes that had been made to the previous Dev database but were not present in the Live DB replica before it was ...
0
votes
1answer
70 views
How to do a Magento Manual Restore?
I backed up the entire public_html folder, and had the mysql backed up as well. I'm new to Magento so I did a clean install and a mysqlimport with the database. Seems like the site is almost fully ...
0
votes
1answer
76 views
Get list of purchased products, inApp Purchase iPhone
I am implementing in app purchases for my iOS application. Apple has rejected my binary for not restoring purchased products. In my application once the user taps the icon of product if item is locked ...
1
vote
1answer
79 views
How do I Instantiate Restored View Controllers with Managed Object Context from App Delegate?
Problem Statement
In my application, I instantiate a Managed Object Context (moc) in the applicationWillFinishLaunchingWithOptions method in my app delegate. During normal operation, I pass that same ...
0
votes
1answer
58 views
How to prevent lost save data when upgrade app on WP8 using cpp
cpp has no IsolatedStorageSettings or IsolatedStorageFile.
so i simply using "FILE" and "fopen" to store a game data.
but when i reinstall or upgrade the apps using "Xapdeploy" or debug with vs.
the ...
3
votes
0answers
25 views
inApp restore: number of restored transactions zero
I have followed the second answer(by Brian Noah) in this post
to implement inapp restore functionality. During testing I just bought an inapp item and reinstalled the app. But now, when I try to ...
-1
votes
1answer
38 views
Restoring a backed-up Wordpress site to a new hosting account [closed]
I needed to move a full Wordpress site to a new hosting account - maintaining the same domain address. The original account was a Windows hosting account and I'm moving to a Linux hosting account. As ...
0
votes
0answers
75 views
Operating system error 5 in SQL Server 2008 Management Studio on Windows server 2008 [closed]
I am on a virtual machine (not hosted on my pc) and when I want to see my D:\ (on my laptop) I can see it in my VM, I can open it without problems and check files, execute .exe and whatever
My ...
0
votes
0answers
46 views
How to make mysql backup system work with online db
I found this code online and would like to know how i would go about getting this to work with my online database rather than one oon a localhost
public boolean restoreDB(String dbUserName, String ...
0
votes
1answer
143 views
SQL Server backup&restore
backup
string connectionString1 = (@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|Database1.mdf;Database=Database1;Integrated Security=True; User Instance=True");
...
0
votes
2answers
406 views
Bulk insert XML data into SQL Server database [closed]
I am working on backup and restore selective data from SQL Server. I am using the following solution:
export multiple tables from mssql to xml
and create a xml with the data I want. How can I ...
0
votes
2answers
69 views
MySql Dump output conditional comments? Execute dump as query to restore database
Note: Actually two questions...
When I dump a mysql database using the mysqldump binary I get a file that contains (among other lines) this:
CREATE DATABASE /*!32312 IF NOT EXISTS*/MyDatabase/*!40100 ...
0
votes
1answer
64 views
Backup and Restore of MySQL 5.0 database
I need to backup my MYSQL Database including tables,Stored Procedures and data.
In my recent application i have used MSSQL Server where i was accepting path of location of database backup file from a ...
0
votes
0answers
29 views
Restoring Navicat backup files
I have made the backup from Navicat files in following formats:
*.backup
*.nppb
*.ncx
How can I restore the tables?
0
votes
1answer
136 views
PostgreSQL - how to restore very larger database
I got a little problem when I try to restore a large database (almost 32Go in custom format) on my devel database node (this node has less RAM, CPU... than my production server).
My database dumps ...
0
votes
1answer
27 views
mysql cluster lost data after restore
all,
I use mysqldump to backup mysql cluster data with 10 million lines data daily. Recently, our cluster is crashed after a update, then we restore the .sql file generated by mysqldump. When ...
1
vote
0answers
578 views
using adb backup/restore?
I want to use the adb backup / restore . I use adb restore to restore a backup. But my problem after some delay, the mechanism restore stops. I want my restore do not stop. And if possible it starts ...
0
votes
1answer
107 views
How to backup and restore the Mongodb database
How to use C# to backup and restore the Mongodb database? For now there is only an server to save the mongodb data, and I want to make an backup in case of the server is destroyed so that I can ...
2
votes
1answer
128 views
MYSQL Backup using java GUI
I am trying to backup my database and this is the code I've written but for some reason it is not backing up?? i am using local host (MAMP) and the operating system I am using is MAC OSX.
public ...





