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
0
votes
1 answer
Dump incremental file location
How does dump create the incremental backup? It seems I should use the same file name when I create a level 1 dump:
Full backup:
dump -0aLuf /mnt/bkup/backup.dump /
and then for the incremental
dump -1aLuf /mnt/bkup/backup.dump /
What happens…

Tux_DEV_NULL
- 109
- 2
0
votes
1 answer
Get memory dump in ModelSim (periodical)
How can I get memory dump in ModelSim on a regular basis?
I know how to export memory data. Is there a way to write in the .do file a command to export the memory data every 1000 ns or every x cycles?
Update:
Thanks for the answers.
The way I'm…

Sadık
- 4,249
- 7
- 53
- 89
0
votes
1 answer
Scapy: save to disk the output of sr
In Scapy, I want to save to disk the output of sr for later analysis.
ans, unans = sr(somePackets)
While unans presents no problem with scapy's built-in function wrpcap, I can't seem to be able to save ans to disk.
>>> wrpcap(locationOnDisk,…

Ricky Robinson
- 21,798
- 42
- 129
- 185
0
votes
6 answers
Has anyone tried dumping MySQL data on windows directly to MySQL on linux?
windows:
mysqldump .... > windata.sql;
linux:
mysql ... < windata.sql
Will the data be cross-platform?

omg
- 136,412
- 142
- 288
- 348
0
votes
1 answer
How to download MySQL dump from Windows Azure?
I create Web role with Drupal from gallery. How to download database which created automaticaly?

Dmitriy Kudinov
- 1,051
- 5
- 23
- 31
0
votes
2 answers
Is this database dump design ok?
I have written a Java program to do the following and would like opinions on my design:
Read data from a CSV file. The file is a database dump with 6 columns.
Write data into a MySQL database table.
The database table is as follows:
CREATE…

TheCoder
- 8,413
- 15
- 42
- 54
0
votes
2 answers
Exporting all data from MySQL database to spreadsheets
So, I've got a MySQL database consisting of a bunch of tables that I want to give to my uncle.
Problem is, he doesn't know much about computers, so I can't just hook him up with the database.
Instead, I would like to extract all the data from the…

phaz
- 872
- 9
- 23
0
votes
1 answer
How do I keep the last 4 full backups
I have a CentOS server running with backup made to an external HDD.
I run a full backup everyday at 4am and incremental backups every 2 hour. I am keeping the last 30 days backups which is achieved by running a cron job every day at 6am which clears…

Kong Jin Jie
- 535
- 5
- 11
0
votes
1 answer
How to speed up packet processing?
I am developing a call recording application in C#.net using pcap.net library. For packet capturing i am using Wireshark's Dumpcap.exe. And the packet files are creating in 5 second duration. To read each packet file what i have done is
…

Mask
- 647
- 2
- 9
- 21
0
votes
1 answer
Can't dump meminfo error: Android 4.2.1
I got a strange error with my ACRA error reporting system which I cannot figure out what is causing this. I searched on the internet and there is very little to find out about this issue at first sight. The errors goes as follows :
java.lang.Error:…

Matthias Vanb
- 923
- 5
- 14
- 32
0
votes
1 answer
whitch of these is faster method do import db?
I wonder if importing a script with mysql CLI is faster than use a Linux CLI,
let me explain what I mean here:
This:
- mysql -uroot -ppass then use this source dump_script.sql
is faster/slower of this:
- mysql -uroot -ppass < dump_script.sql
I'm…

WonderLand
- 5,494
- 7
- 57
- 76
0
votes
2 answers
VC10 debugging dump file create by procexp(MS process explorer) - only stack information no variable value
Basically I create dump file:
Under debug : VC10 Debug->Save dump as...
Under release: Procexp->right click -> Save dump -> Create Full Dump...
Via 1, I can open the dump file with VC10 (symbol path, Debug source file all setup properly), I can…

RoundPi
- 5,819
- 7
- 49
- 75
0
votes
6 answers
What Firefox extension can dump HTTP responses?
I'm familiar with LiveHTTPHeaders and TamperData which can show what is going to be sent to the web server. However, I also want to study the server responses. How can I do this?
elmatador
0
votes
4 answers
Dump values from a table to another one in MySQL
Say I have a table called dogs that have the following columns:
id, fk_hospital, fk_owner, date, name
And I want to create another table that will have the following columns:
fk_hospital, fk_owner, fk_dogs, what_type
In this second table fk_dogs…

Hommer Smith
- 26,772
- 56
- 167
- 296
0
votes
2 answers
how to revert a binary dump file?
a binary dump file is like a hex dump file except that it is in binary form instead of hex
now I've got a binary dump file looks like this:
01101110 01101100 01000001 01000001 01000001 00101011 00110001 01011010
01001000 00110100 01110011 01001001…

chrisyue
- 195
- 1
- 9