Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
9answers
79k views

SQL Server: Database stuck in “Restoring” state

i backed up a data: BACKUP DATABASE MyDatabase TO DISK = 'MyDatabase.bak' WITH INIT --overwrite existing And then tried to restore it: RESTORE DATABASE MyDatabase FROM DISK = 'MyDatabase.bak' ...
28
votes
8answers
15k views

What is the correct way to restore a a deleted file from SVN?

I deleted a file from a repo and now want to put it back. The best I can figure out is to: update to the revision before the delete copy the files elsewhere update to head copy the files back add ...
24
votes
2answers
1k views

Android backup/restore: how to backup an internal database?

I have implemented a BackupAgentHelper using the provided FileBackupHelper to backup and restore the native database I have. This is the database you typically use along with ContentProviders and ...
13
votes
8answers
5k views

PostgreSQL: improving pg_dump, pg_restore performance

When I began, I used pg_dump with the default plain format. I was unenlightened. Research revealed to me time and file size improvements with pg_dump -Fc | gzip -9 -c > dumpfile.gz. I was ...
12
votes
9answers
7k views

Can I restore a single table from a full mysql mysqldump file?

I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables form the mysqldump. Is this possible? ...
10
votes
5answers
8k views

Subversion - Move Repository

I have a server that hosts my Subversion code base. That server is currently a Server 2003 box, and my IT admin wants to update it to Server 2008. This means that I'm going to need to move my ...
10
votes
9answers
7k views

Speeding up mysql dumps and imports [closed]

Are there any tricks for speeding up mySQL dumps and imports? This would include my.cnf settings, using ramdisks, etc.
8
votes
3answers
4k views

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 ...
8
votes
4answers
13k views

Restoring MySQL database from physical files

Is it possible to restore a MySQL database from the physical database files. I have a directory that has the following file types: client.frm client.MYD client.MYI but for about 20 more tables. I ...
7
votes
3answers
492 views

Delphi - Minimize & Restore frees up memory?

I have been a dabbling into delphi off and on for years and I have always wondered why does minimizing and restoring an application cause it to use less memory ? As an example I am using delphi 7 and ...
7
votes
4answers
2k views

Database Backup/Restore Process

The backup and restore process of a large database or collection of databases on sql server is very important for disaster & recovery purposes. However, I have not found a robust solution that ...
6
votes
1answer
100 views

How to restore the data from DDMS & Ftp Server?

I've Backup Contacts, Settings, Browser bookmarks & Media files successfully using this code. These data are stored in DDMS & FTP as files. How can i restore these backedup files by ...
6
votes
2answers
663 views

How to reliably restore MySQL blobs

I have been backing up a MySQL database for several years with the command: mysqldump myDatabaseName -u root > myBackupFile.sql The backups have appeared to work fine... I then wanted to restore ...
6
votes
4answers
8k views

When restoring a backup, how to disconnect all active connections?

My SQL Server 2005 doesn't restore a backup because of active connections. How to force it?
6
votes
4answers
5k views

Is there a SQL script that I can use to determine the progress of a SQL Server backup or restore process?

When I backup or restore a database using MS SQL Server Management Studio, I get a visual indication of how far the process has progressed, and thus how much longer I still need to wait for it to ...
5
votes
1answer
168 views

Restore Vim Backups

Vim's file backup system just saved my proverbial @$$ but I have a question. I have vim saving backups to ~/.vim/backups To restore them I went to the directory and (sorted by date) copied the files ...
5
votes
6answers
14k views

Restore DB - Error RESTORE HEADERONLY is terminating abnormally

I have taken backup of SQL Server 2008 DB on server, and download them to local environment. I am trying to restore that database and it is keep on giving me following error. An exception ...
5
votes
3answers
18k views

UITabBarController: switch to a different view controller programmatically

In my iPhone app, to restore previously viewed tab, on launch I set the setSelectedIndex: (also tried setSelectedViewController: as per docs but to no avail) This works on iPhone OS 3.0 - however on ...
5
votes
2answers
8k views

SQL Server backup/restore v.s. detach/attach

I have one database which contains the most recent data, and I want to replicate the database content into some other servers. Dues to non-technical reasons, I can not directly use replicate function ...
5
votes
3answers
2k views

How do I store the window size between sessions in Qt?

I have a QMainWindow in a Qt application. When I close it I want it to store its current restore size (the size of the window when it is not maximized). This works well when I close the window in ...
5
votes
4answers
4k views

Restore database backup over the network

How do you restore a database backup using SQL Server 2005 over the network? I recall doing this before but there was something odd about the way you had to do it.
4
votes
1answer
448 views

SVN - Restore repository from backup

We have just had a file server fail which contained our SVN repository. We're trying to recover the file system but at the moment, that looks like it isn't going to happen so we're looking at ...
4
votes
3answers
1k views

How can I query how much time a SQL server database restore takes?

Im trying to write a query that will tell me how much time a restore (full or log) has taken on SQL server 2008. I can run this query to find out how much time the backup took: select ...
4
votes
2answers
2k views

How do I backup and restore the system clipboard in C#?

I will do my best to explain in detail what I'm trying to achieve. I'm using C# with IntPtr window handles to perform a CTRL-C copy operation on an external application from my own C# application. I ...
4
votes
1answer
778 views

How does backup work in SQL server?

Let's say I have a very large database. Its backup starts at midnight and finishes at 02:00 am. When I recover that backup am I gonna have the state of the database at midnight or 02:00 (or something ...
4
votes
3answers
3k views

PostgreSQL restore and backup solution

A) What is the best solution for regularly backing up large PostgreSQL database (version 8.3 running on latest Ubuntu server); please don't say pg_dump with those painfully slow insert statements B) ...
4
votes
6answers
406 views

shareware enforcement vs time machine

Problem: Customer X is (considering) porting one of his formerly "Windows only" shareware applications to Mac OS X. One of his concerns is how to enforce the 30-day trial period and make it immune to ...
4
votes
3answers
16k views

How do I restore a single table from a SQL Server 2005 backup?

I've got a backup made using the regular SQL Server 2005 backup command. Is there a way to restore just a single table, not the whole DB?
4
votes
5answers
2k views

Manipulating giant MySQL dump files

What's the easiest way to get the data for a single table, delete a single table or break up the whole dump file into files each containing individual tables? I usually end up doing a lot of vi regex ...
3
votes
2answers
97 views

Restore Database and change the location for MDF File

I wont restore my database but the location path is not the same. How can i change this path(partition)? RESTORE DATABASE [MY_DATABASE] FROM DISK = 'C:\Content.bak' WITH FILE = 1, NOUNLOAD, ...
3
votes
1answer
274 views

Lion Resume when Closing Docs without Quitting App

I'm dipping my feet into Cocoa for the first time. Here's a simple question. OS X Lion supports Resuming of window state when an app is terminated and relaunched. Okay, good and fine. But for ...
3
votes
2answers
265 views

SKPaymentTransactionStateRestored doesn't get called when In App purchase is being restored

In my In App purchase the case SKPaymentTransactionStateRestored: method does not get called when the purchase is restored, instead, case SKPaymentTransactionStatePurchased: is being called, but would ...
3
votes
1answer
295 views

How do I recreate an FRM file for an MySQL InnoDB table with only the ibdata and *.ibd files?

This is a slightly different question than the related InnoDB repair questions I have seen on stackoverflow. Assume that I have restored the following in my MySQL 5.1 database with ...
3
votes
2answers
105 views

restore lost commit by a known folder name

I have lost a branch accidentally. I guess it is in reflog list, but it's too difficult to check every one in it. I remember that there was a folder created in that branch with some files in it, so it ...
3
votes
3answers
555 views

How to rollback to commited and pushed revision in mercurial?

I made a mistake and removed a file. I'd like to go back to my previous commit! I tried with revert and backout with had no luck... Any tip? Edit: I did exactly this: hg forget file hg commit -m ...
3
votes
2answers
2k views

Android: Dialog etc restore after rotation changed

How to restore the dialog etc after rotating the screen? For example, pop up an alertDialog to tell user some information. then the user rotate the screen to another orientation. How to restore the ...
3
votes
2answers
122 views

Is the RESTORE process dependent on schema?

Let's say I have two database instances: InstanceA - Production server InstanceB - Test server My workflow is to deploy new schema changes to InstanceB first, test them, and then deploy them to ...
3
votes
1answer
295 views

How to restore an IIS Metabase backup using C#

I've found the Stack Overflow question describing how to backup the IIS Metabase in C# here, and I have been successful at getting that to work using the code referenced here. However, I am having ...
3
votes
1answer
346 views

Use SMO to locate a backup file to restore

I am able to use SMO to build a treeview similar to the Locate Backup File dialog from SSMS. I can list folders on the server, and if there are backup devices, those will be listed as well. One ...
3
votes
3answers
2k views

bzr: Restoring a deleted file after some commits with bazaar

I'd like to know if it is possible to restore a removed file from an older revision (a clean way to do it) I've renamed a file for some tests, than I commited all my work (and I forgot to rename the ...
3
votes
2answers
479 views

How do you backup and restore a database as a copy on the same server?

I have a SQL2005 Express database that I would like to create a copy of on the same instance. How do you go about doing this with a script? I already have a script for generating the backup, but the ...
3
votes
6answers
251 views

In java: Take snapshot of a directory and restore it

Is there a library to take a folder, take a snapshot of its content, do some modifications and then restore it to its previous state from directly from a java program (i.e. not from the command line) ...
3
votes
4answers
2k views

Backup configuration of Hudson Master systems

I need Backup configuration of Hudson Master systems Detailed information If a Hudson Master system goes down, we need to be able to bring it back up on a different VM as soon as possible (may be 3 ...
3
votes
3answers
586 views

easiest way to do a full backup of a SharePoint db from one box and restore to another

I need to do a full backup of a SharePoint app running on our production server to a our test server running SharePoint. I tried using Central Admin to back up from the prod server, zipping up the ...
3
votes
3answers
772 views

How to restore Git after fatal file system error?

What is the fastest path to restore a git repository after a file system error on the main server? Imagine the central server of your OSS project fails and all commits for two days are lost after ...
2
votes
0answers
41 views

Restoring database always throwing exception [migrated]

I am trying to restore some database backup file into the same database. The .bak file is creating problem always. When I select the .bak file from a network drive like "\\TestPC\ShareFolder\test.bak" ...
2
votes
1answer
50 views

SQL Server 2008 — User not able to access restored Database

I'm trying to move a database from one SQL Server database running on one machine to a another machine that is the test server and copy of the original. On the main machine, I took a backup of ...
2
votes
1answer
57 views

HTML5 restore canvas after clearing

I have a function that draws a collection of images to the canvas and it saves it after. Then in the command line I run: canvas.save(); canvas.clearRect(0,0,415,415); canvas.restore(); I expect it ...
2
votes
2answers
40 views

Restoring SVN repository from backups

I have been using Doug Hellmann's script to back up my repo for 2 years now, and I eventually lost my server hard drive. So I created a brand new repo on another machine, and attempted the restore ...
2
votes
2answers
81 views

How to export and restore HSQLDB

Does anyone know how to export HSQLDB to .sql file or something on a computer and restore on other computer. Thanks

1 2 3 4 5 7