Questions tagged [recover]

The recover tag is used to mark questions that have something to do with recovering data. By itself, it is ambiguous and useless and must be combined with other, appropriate tags such as software packages and database system tags, operating system tags, programming language and programming language environment tags.

Recovery usually involves some need to regain lost data whether that data is management data such as the management data of a database resulting in database access failing or raw data such as the contents of a database record or a file.

Any post using the [recovery] tag must include additional tags and a write up that helps the reader to know the context of the failure that lead to data loss along with the operating environment at the time of the data loss.

The post should include what was being done at the time of the data loss, any error logs generated, steps taken after the data loss such as recovery procedures executed along with their results, and a description of the actual data lost.

Context information may include: the operating system, the database system, the source code repository package, the programming language being used, the kind of data that was lost, and/or the IDE being used.

322 questions
54
votes
5 answers

where does MySQL store database files?

I have uninstall wamp server and now I need my database to restore. How can I do this process?
Ihsanullah khan
  • 771
  • 1
  • 6
  • 10
41
votes
6 answers

Retrieve/Recover deleted Netbeans project

I was just working on my Netbeans project and accidentally deleted it and don't know how to recover it. Is there a tmp folder that the deleted project is stored in. Or am I forever doomed? Thanks, Lucas
Lycana
  • 1,154
  • 4
  • 10
  • 17
38
votes
18 answers

How to recover closed output window in netbeans?

It often happens to me that I want to clear the current output window by using the context menu, but instead of hitting the Clear entry, I accidently hit the Close entry (which is directly below Clear). How can I get that output window back!? Via…
radlan
  • 2,393
  • 4
  • 33
  • 53
34
votes
6 answers

Recover postgreSQL databases from raw physical files

I have the following problem and I need to know if there´s a way to fix it. I have a client who was cheap enough to decline buying a backup plan for his postgreSQL databases on the main system that runs his company and as I thought it would happen…
Alvos
  • 561
  • 3
  • 7
  • 15
31
votes
5 answers

'Cannot create project content in workspace' when trying to recreate a project

I created one project in Eclipse using Existing Source option. Later I found some config problem with it and deleted the project from eclipse keeping the contents of the folder untouched. Now again I tried to create a new project with the same…
user1158831
  • 533
  • 2
  • 6
  • 12
30
votes
3 answers

How can I recover files from a corrupted .tar.gz archive?

I have a large number of files in a .tar.gz archive. Checking the file type with the command file SMS.tar.gz gives the response gzip compressed data - deflate method , max compression When I try to extract the archive with gunzip, after a delay I…
Tom Melluish
  • 303
  • 1
  • 4
  • 8
26
votes
3 answers

How to return a value in a Go function that panics?

My Go function is expected to return a value, but it may panic when calling a library function. I can use recover() to capture this in a deferred call, but how can I return a value in this case? func MyFunc() string{ defer func() { if…
NeoWang
  • 17,361
  • 24
  • 78
  • 126
25
votes
4 answers

Recovering saved password in Filezilla

Unfortunately I can not remember the password of FTP server, but it is saved in FileZilla Site Manager (Ubuntu). How can I view the saved password?
aimodify
  • 429
  • 1
  • 6
  • 11
21
votes
2 answers

How to locate and recover a deleted file

At some stage in the past I had a "foo.txt" which was under Mercurial source control. However it has now been deleted. How can I recover the file when I don't know the last Mercurial revision in which the file was deleted?
Stormcloud
  • 2,065
  • 2
  • 21
  • 41
15
votes
3 answers

Golang panic crash prevention

In Golang a panic without a recover will crash the process, so I end up putting the following code snippet at the beginning of every function: defer func() { if err := recover(); err != nil { fmt.Println(err) } }() just in order to…
user1663023
14
votes
6 answers

Git recover uncommitted changes

I had a lot of local changes. I just accidentally did git merge another_branch git reset --hard HEAD^ on a lot of work. :( with the intention I didn't want the merged changes in here. How do I recover the original state? No, the local changes were…
lprsd
  • 84,407
  • 47
  • 135
  • 168
13
votes
5 answers

Is it possible to get the deleted file from Eclipse workspace?

I have accidentally deleted a Java file from my Eclipse workspace. Can i recover that? It's not in the recycle bin.
John
12
votes
1 answer

Spring Retry @Recover passing parameters

I couldn't find any info about a possibility of action I need. I am using @Retryable annotation with @Recover handler method. Smth like this: @Retryable(value = {Exception.class}, maxAttempts = 5, backoff = @Backoff(delay = 10000)) public…
Sviatlana
  • 1,728
  • 6
  • 27
  • 55
12
votes
2 answers

Can I recover older Oracle pl/sql source code from a package body after i have replaced with newer code

I had created an Oracle PL/SQL package with a header and a body with lots of code. Later, I ended up accidentally erasing the code from that body after reran the CREATE OR REPLACE PACKAGE BODY... statement with different source code (which actually…
VVP
  • 121
  • 1
  • 1
  • 3
12
votes
1 answer

WCF ChannelFactory and channels - caching, reusing, closing and recovery

I have the following planned architecture for my WCF client library: using ChannelFactory instead of svcutil generated proxies because I need more control and also I want to keep the client in a separate assembly and avoid regenerating when my WCF…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
1
2 3
21 22