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
How to dump whole csv database to format readable by Excel (csv is OK).
This may be a futile excersise, but one of my client totally insisted that he needs whole database dump to perform analytics in Excel.
There are many answers to how to dump single table to csv (like this: Export to CSV and Compress with GZIP in…

jb.
- 23,300
- 18
- 98
- 136
0
votes
1 answer
How to compare memory dumps in iOS?
I made 2 memory dump files with iOS, and I want to see the difference between these files. I made them with gdb (idk if this is important or not). I read a tutorial to do these dumps, and he said this: "7. Compare your 2 dumps (tons of tutorials…

Robin Vekety
- 89
- 3
- 9
0
votes
1 answer
C# and mysqldump
I'm writing an application which should make a complete copy of one database and then import it on the same server with different name.
So, I guess I should use mysqldump and mysql and the parameters that I should pass to them.
Okay, but I can't get…

Paul Reed
- 133
- 2
- 10
0
votes
2 answers
How to save a MySQL dump into a variable from php?
Certainly o could generate a dump file, then read this file and put into a variable.
But is there a way to retrieve the dump and put into the variable directly?
Thanks!

ABA
- 435
- 1
- 5
- 13
0
votes
0 answers
Load 2 million entries of data in MySQL
I am trying to import a dump file to MySQL through command line. The dump file contains about 2 million entries. To import the data I used the command mysql -u USERNAME -p DATABASE < filename.sql . The problem is that the process started 24 hours…

Comforse
- 2,027
- 4
- 25
- 40
0
votes
2 answers
Import only sequences from an Oracle exp dump
Is there a way to import all sequences of a schema from a dump of a schema (generated with exp full=y)? I don't want to import procedures or tables, but only all the sequences.
I want to use the imp command.

esoni
- 1,362
- 4
- 24
- 37
0
votes
2 answers
How to dump mysql table relations in PHP
I searched a lot but could not find a way to dump table relations like one-to-one, one-to-many vs in PHP.
Is there a way to handle this issue in PHP?
A result might be:
array(
'tableA' => array(
'one-to-one' => array('tableB',…

whoi
- 3,281
- 7
- 36
- 44
0
votes
1 answer
Querying (SQL) Oracle/Toad dump files without importing them
We're doing a monthly data dump of our databases using Toad for Oracle's Export function. We've got some SQL queries to create statistics about the data. I'd like to compare the results of the current state with the last few dumps.
I can open the…

user42179
- 431
- 4
- 11
0
votes
1 answer
mysqldump command in linux till date(I mean i dont want to dump changes in the database that i made today)
Normally we Dump data in such manner:
What i require is i just want to dump data till yesterday !!!
mysqldump -u root -p gateway > dumpfilename.sql

sidhesh
- 29
- 1
- 6
0
votes
1 answer
Get the difference of two sql files
I want to get the difference of two sql dumps. I have to save the difference in a new file. The difference should be legitimate query! For example, If I have a file with following content,
CREATE TABLE IF NOT EXISTS `newtable` (
`name` int(11) NOT…

MJQ
- 1,778
- 6
- 34
- 60
0
votes
1 answer
Restore or convert file.dump into pgAdmin
I have a problem with a dump file that client give me to make a file to connect with postgres database in php, and I do this first
Rename this file ssdf_master.dump to ssdf_master.sql to execute in pgAdmin or Navicat but doesn't work.
Run this…

SoldierCorp
- 7,610
- 16
- 60
- 100
0
votes
1 answer
Phing pdosqlexec Segmentation Fault
when i try to execute this

Easly
- 334
- 2
- 11
0
votes
2 answers
How to export to CSV from sqlite3 on the iPhone?
How can I export data from an sqlite3 database in Objective-c? Can I issue a dump command at least? What options do I have for exporting?

luvieere
- 37,065
- 18
- 127
- 179
0
votes
3 answers
Restoring a Postgresql dump file
I need to restore a Postgresql dump file to get some data out of it (note never used Postgresql before)
I've tried using the command line using the following (with relevant details filled in)
psql -U {user-name} -d {desintation_db}-f…

Tim
- 61
- 1
- 6
0
votes
1 answer
Amazon-RDS database to Dedicated server
I went through this answer here: Mysqldump of the AWS RDS
But, apparently, it gave me no clue.
What I intend to do?
I have an RDS instance running on amazon and database is about 450+ tables, which is an insane amount of data for mysqldump. I wish…

Keval Domadia
- 4,768
- 1
- 37
- 64