Questions tagged [dump]

Recording the contents of memory after application or operating system failure, or by operator request, in a core dump for use in subsequent problem analysis. Also, recording a file or medium as a backup.

1607 questions
18
votes
2 answers

How to restore a PostgreSQL database from dump file in dbeaver?

In our company we have a dump of PostgreSQL database - file db.sql. It weighs 8 Gigabyte. How to restore this database in DBeaver? And we don't have another databases in DBeaver 7.0.5. I have digged all Internet and haven't found anything how to do…
Mary Smith
  • 361
  • 1
  • 2
  • 11
18
votes
2 answers

How to include MySQL database schema on GitHub?

Stackoverflow and MySQL-via-command-line n00b here, please be gentle! I've been looking around for answers to my question but could only find topics dealing with GitHubbing MySQL dumps (as in: data dumps) for collaboration or MySQL "version control"…
Kay
  • 797
  • 1
  • 6
  • 28
18
votes
5 answers

How might you clone a database table via Rails migration?

I want a migration to create a clone of an existing table by just suffixing the name, including all the indexes from the original table. So there's a "snapshots" table and I want to create "snapshots_temp" as an exact copy of the table (not the…
Teflon Ted
  • 8,696
  • 19
  • 64
  • 78
18
votes
6 answers

How to make Java Thread Dump in Android?

I just want to get all dumps from java virtual machine threads, to look at what the threads lock and what threads waiting to unlock some resources. Something like is described here. I've tryed to kill Zygote process but with no results.
Divano
  • 181
  • 1
  • 1
  • 3
17
votes
4 answers

Does Java blocked threads take up more CPU resources?

i would like to ask if Java will utilize more CPU resources when threads are blocked, i.e. waiting to lock a monitor which is currently being locked by another thread. I am now looking at a thread dump whereby some threads are blocked as they are…
Oh Chin Boon
  • 23,028
  • 51
  • 143
  • 215
17
votes
4 answers

WinDbg and SoS, how do I print/dump a large string?

I am debugging a hangdump coming from a production server using WinDbg with the SoS extension. There is a string parameter in one of the stacks, that I need to know the value of. However, it is a rather large string, and WinDbg won't print it when I…
driis
  • 161,458
  • 45
  • 265
  • 341
17
votes
4 answers

Is there a way to do a SQL dump from Amazon Redshift

Is there a way to do a SQL dump from Amazon Redshift? Could you use the SQL workbench/J client?
Elm
  • 1,355
  • 6
  • 22
  • 33
16
votes
1 answer

Is it possible to export/dump a DLL from process memory to file?

First off I am aware of 1. Is it possible to export a dll definition from my AppDomain? 2. Is it possible to save a dynamic assembly to disk? 3. How can I extract DLL file from memory dump? but none of those seem to answer my question…
IneedHelp
  • 1,630
  • 1
  • 27
  • 58
16
votes
3 answers

Pickle dump with progress bar

I've a really big json object that I want to dump into a pickle file. Is there a way to display a progress bar while using pickle.dump?
Sidd
  • 1,168
  • 2
  • 10
  • 27
16
votes
2 answers

Difference between svnrdump dump & svnadmin dump

I need a dump of a svn repository. I found two solutions svnrdump dump And svnadmin dump svnrdump dump is the same of svnadmin dump? If not, what are the differences between these two commands ?
R3tep
  • 12,512
  • 10
  • 48
  • 75
15
votes
1 answer

RabbitMQ not starting with message "init terminating in do_boot, noproc" on Ubuntu 18.04

I cannot seem to start or install my RabbitMQ server anymore for my Ubuntu 18.04 anymore. I tried to remove and install it again, but it cannot finish the install because configuration fails. When I try to run sudo apt-get install --fix-broken. This…
Kazooie
  • 525
  • 1
  • 4
  • 15
14
votes
2 answers

How do I analyze a .mdmp file?

I have java application that is crashing while in production. It doesn't do so in dev/QA. The jvm is creating a .mdmp file and a text file. How do I analyze the binary dump file? I googled but had no luck. We are using bea jrockit jvm 1.5 R27.
fastcodejava
  • 39,895
  • 28
  • 133
  • 186
14
votes
4 answers

Dump and restore data of a specific key in redis

I want to take backup of a particular key in my redis which have multiple keys. My redis has many keys and I don't want to take full backup of my redis data. I have been going through http://redis.io/commands. There I found that there is a command…
Joy
  • 4,197
  • 14
  • 61
  • 131
13
votes
4 answers

How to get the relative address of a field in a structure dump. [C]

We're working on a C program compiled with arm-eabi-gcc under Linux. We're using a dump of a large structure and we're having problems determining at which adress we should read various fields of our structure (like 50 of them), (memory alignement…
Akhneyzar
  • 936
  • 1
  • 9
  • 14
13
votes
4 answers

How do I dump an arbitrary struct in C?

I don't know which direction to go,perhaps something like reflection will help?
new_perl
  • 7,345
  • 11
  • 42
  • 72