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.
Questions tagged [dump]
1607 questions
13
votes
3 answers
How to use dd on WSL?
How can I used the dd command to dump the contents of a removable disk in WSL?
When I run,
dd if=/mnt/d of=sdDump bs=512 count=1
I get the error dd: error reading '/mnt/d': Is a directory
I followed the steps shown here to mount the disk:
sudo…

Jet Blue
- 5,109
- 7
- 36
- 48
13
votes
2 answers
How to properly save Common Lisp image using SBCL?
If I want to create a Lisp-image of my program, how do I do it properly? Are there any prerequisites? And doesn't it play nicely with QUICKLISP?
Right now, if I start SBCL (with just QUICKLISP pre-loaded) and save the image:
(save-lisp-and-die…

mobiuseng
- 2,326
- 1
- 16
- 30
13
votes
2 answers
mysql export sql dump alphabatically,which cause foreign key constraints error during import
I have 10 tables in my database(MySQL). two of them is given below
tbl_state
state_id |int(10) |UNSIGNED ZEROFILL auto_increment
state_name |varchar(40)
tbl_city
city_id |int(10) |UNSIGNED ZEROFILL auto_increment
city_name …

xkeshav
- 53,360
- 44
- 177
- 245
13
votes
9 answers
Bash script containing binary executable
Is it possible to write a bash script, which would contain a binary executable program inside?
I mean a script, which would contain a dump of an executable in a textual form, which will be dumped back to an executable by this script when it is…

Katarzyna Gola
- 133
- 1
- 1
- 6
13
votes
2 answers
How to dump conftest.c?
I have problems linking to a lot of libraries with a cross-compiler. Is it possible to dump the file conftest.c to a safe location each time it's being generated?
I tried to uncomment the lines
rm -f conftest
from the configure script, but it…

John Smith
- 131
- 1
- 3
13
votes
4 answers
How can i take a user dump using powershell
I want to take user dump of a process using powershell How can i do it?
The same I get on rightclicking the process in Taskmanager

Shree
- 233
- 2
- 3
- 7
12
votes
4 answers
Perl hash Data::Dumper
In Perl I need to analyze a huge hash, so I print it into a file using Data::Dumper module. Because it is a huge file, it is very hard to read. Is it possible somehow to print Dumper output nicely, so when I will find a string that I am looking for,…

Ωmega
- 42,614
- 34
- 134
- 203
12
votes
2 answers
Deciphering vtable dumps
I am "playing" with virtual inheritance in C++, and I want to know how a class object is laid out.
I have those three classes:
class A {
private:
int a;
public:
A() {this->a = 47;}
virtual void setInt(int x) {this->a = x;}
virtual…

pvinis
- 4,059
- 5
- 39
- 59
12
votes
2 answers
Mysqldump without triggers
I'm using mysqldump to share databases dumps, but i'm having an issue with triggers. The command does not add "drop" or "replace" lines with the triggers, making people who already added a previous dump with same triggers names having an error…

Jean-Loup Becquet
- 183
- 1
- 2
- 11
12
votes
1 answer
Mysql Workbench, exporting selected rows of a table
I already know how to export the whole database, but how do you export selected rows?
Say I need to export data from this queries: select * from users where gender="0"; How do you do turn them into a dump file?

Vnz Dichoso
- 182
- 1
- 2
- 11
12
votes
4 answers
How do I suppress the bloat of useless information when using the DUMP command while using grunt via 'pig -x local'?
I'm working with PigLatin, using grunt, and every time I 'dump' stuffs, my console gets clobbered with blah blah, blah non-info, is there a way to surpress all that?
grunt> A = LOAD 'testingData' USING PigStorage(':'); dump A;
2013-05-06…

Matt S.
- 878
- 10
- 21
11
votes
3 answers
Linux Core Dump Without Killing Process
Is it possible to generate a core dump without killing the process? If so, what is the command/signal to do so?
Thanks,
Jim

Jim
- 111
- 1
- 1
- 3
11
votes
1 answer
Error while using DebugDiag for debugging dump file
This is the first time I'm debugging or doing anything with a .dmp file. I'm using Debugdiag. When I run my Analysis, I get this error-
Analysis results may be incomplete because an error occurred while initializing the CLR diagnostic runtime for…

karan k
- 947
- 2
- 21
- 45
11
votes
1 answer
Dump memory in lldb
As stated on this site. When I want to dump memory in gdb.
The start point is 0x1000 and end 0x2000.
For lldb start is 0x1000 and end 0x1200 .
Is there a reason for this or is just a mistake ?
Main question is: How do I dump a memory area from…

user3192959
- 113
- 1
- 1
- 5
11
votes
3 answers
How to view the type of a variable in PL/SQL?
Is there a function in PL/SQL to show a variable's exact type, like the DUMP function in SQL?
I've tried the following
DECLARE
l_variable INTEGER := 1;
BEGIN
DBMS_OUTPUT.PUT_LINE (DUMP (l_variable));
END;
But it gives the following…

csadam
- 401
- 1
- 5
- 15