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.

learn more… | top users | synonyms

77
votes
6answers
63k views

What is the JavaScript equivalent of var_dump or print_r in PHP?

I would like to see the structure of object in JavaScript (for debugging). Is there anything similar to var_dump in PHP? Thanks
73
votes
19answers
106k views

Convert a string representation of a hex dump to a byte array using Java?

I am looking for a way to convert a long string (from a dump), that represents hex values into a byte array. I couldn't have phrased it better than the person that posted the same question here: ...
41
votes
2answers
11k views

error openning HPROF file

I am getting the following exception when trying to open HPROF file (created by Debug.dumpHprofData) with Memory Analyzer: java.io.IOException: Unknown HPROF Version (JAVA PROFILE 1.0.3) at ...
40
votes
5answers
52k views

jQuery /Javascript - json to string variable dump

Is there a quick function to convert json objects received via jQuery getJSON to a string variable dump (for tracing/debugging purposes)?
29
votes
5answers
38k views

How to dump data stored in objective-c object (NSArray or NSDictionary)

Forgive me for a potentially silly question here, but in other programming languages (scripting ones like PHP or Perl) it is often easy to dump everything contained within a variable. For instance, ...
23
votes
8answers
25k views

Dumping a java object's properties

Is there a library that will recursively dump/print an objects properties? I'm looking for something similar to the console.dir() function in Firebug. I'm aware of the commons-lang ...
21
votes
4answers
26k views

core dumped - but core file is not in current directory?

While running a C program, It says "(core dumped)" but I can't see any files under current path. I have set and verified the ulimit: ulimit -c unlimited ulimit -a I also tried to find file named ...
20
votes
9answers
26k views

Transfer Mysql database to another computer

I have a mysql database filled up and running on a windows computer, is there any tool to transfer the database to another computer (running ubuntu)? Else I'll just write a script to take all the ...
19
votes
6answers
2k views

C# How to dump all variables & current values during runtime

Are there any in-built or 3rd party libraries that allow you to simply dump all variables in memory during run time? What I would like is to be able to view variables & current values similarly ...
17
votes
5answers
16k views

get list of tables, db schema, dump etc in sqlite databases

For some reason I can't find online or in the docs the way to get the equivalents of sqlite's interactive shell commands: .tables .dump in sqlite's APIs. Is there anything like that? Am I missing ...
17
votes
3answers
12k views

How to use the dumped data by mongodump?

I have used mongodump to dump my database of mongodb, it created some bson files under dump/mydb But I don't know how to use them. I tried mongoimport, but seems it can't import bson data. Then how ...
17
votes
9answers
51k views

Tool for analyzing java core dump

If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables. Something that can take ...
14
votes
2answers
24k views

PostgreSQL: database restore from dump - syntax error

I'm trying to restore a PostgreSQL database by executing the SQL that pg_dump created, on an empty database. I'm getting this error: ERROR: syntax error at or near "\" LINE 5211: \. lines 5210 ...
14
votes
3answers
10k views

How can I get a SQL dump of a SQL Server 2008 database?

How can I get a SQL dump of a SQL Server 2008 database? That is, a .sql file with inserts to regenerate the data in another database, much like mysqldump.
11
votes
5answers
24k views

kill -3 to get java thread dump

Hi I am using kill -3 command to see the JVM's thread dump in unix. But where can I find the output of this kill command? I am lost!!
11
votes
2answers
9k views

Connect to URL and dump webpage in Groovy

I would like to open a webpage from groovy, dump the specified webpage and eventually dump the webpage behind an anchor tag. Does anybody has some sample code for this?
10
votes
3answers
9k views

Svnadmin load from dumpfile causes “file not found error”. Help?

Given: Repository_1 - source Repository_2 - destination I created a dump file of Repository_1/Folder1 using combination of svnadmin and svndumpfilter When loading from the dump file ...
10
votes
3answers
10k views

Migrate from Oracle to MySQL

We ran into serious performance problems with our Oracle database and we would like to try to migrate to a MySQL-based database (either MySQL directly or, more preferrably, Infobright). The thing is, ...
9
votes
4answers
20k views

How can I convert an MDB (Access) file to MySQL (or plain SQL file)?

Is it possible to create a Dump of SQL commands from a Microsoft Access database? I hope to convert this MDB file into a MySQL database for importing so I don't have to go through the CSV step. I ...
7
votes
6answers
11k views

How do you generate and analyze a thread dump from a running JBoss instance?

How do you generate and analyze a thread dump from a running JBoss instance?
7
votes
2answers
3k views

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 ...
7
votes
2answers
1k views

Is there a way to have an Android process produce a heap dump on an OutOfMemoryError?

The sun JVM supports a -XX:+HeapDumpOnOutOfMemoryError option to dump heap whenever a java process runs out of heap. Is there a similar option on Android that will make an android app dump heap on an ...
7
votes
3answers
24k views

Difference between javacore, thread dump and heap dump in Websphere

Can someone tell me the exact difference between javacore, thread dump and heap dump? Under which situation each of these are used??
6
votes
2answers
3k views

find out what functions a static C library has

I have a static C library (say mylib.a) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like ...
6
votes
3answers
2k views

How can I know the CLR version of a crash dump?

I have a minidump crashed from a .NET application. Is there any way to know the CLR version (e.g. version of mscorwks.dll) of the fault machine (which generates the crash dump) using either Windbg or ...
6
votes
1answer
3k views

How in H2DB get sql dump like in MySql?

I have some questions about H2DB. I have H2DB database which stores data in files, I have 3 files test.18.log.db, test.data.db, test.index.db. I want get sql dump file like when I use mysqldump. It's ...
6
votes
1answer
3k views

minidump vs. fulldump?

I just recently started looking at dump files to help me analyze crashes of the w3wp process on our production environment at work... And I would like to know, what are the differences between a ...
6
votes
1answer
731 views

application exits (no Exception) when referencing 64bit dll from C#

I've compiled lzo2.dll 64 bit and now looking to use it in a C# program: I'm using the following class to test (similar code works for 32bit lzo.dll): [DllImport("lzo2.dll")] private static extern ...
6
votes
2answers
2k views

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
6
votes
2answers
464 views

Xdebug hiding dump information?

I am using xdebug with my php methods such as var_dump() are beautiful but not showing full information instead the dump ends with three dots ... which might be the sign of continuation followed by ...
6
votes
3answers
6k views

WinDbg x64: Cannot debug a crash dump - failed to load data access DLL

I attached WinDbg to a running process and had the process crashed (I have a separate question re. that case). Once the program crashed, WinDbg stopped and allowed me to debug the program. I took a ...
5
votes
3answers
2k views

Is there a MySql binary dump format? Or anything better than plain text INSERT statements?

Is there anything better (faster or smaller) than pages of plain text CREATE TABLE and INSERT statements for dumping MySql databases? It seems awfully inefficient for large amounts of data. I realise ...
5
votes
5answers
14k views

Determining the NLS_LANG setting for an existing Oracle database dump file

We were handed a dump file by another team who are gone away for the rest of the year. When we try to import the dump into our own database, we get the following error: IMP-00038: Could not convert ...
5
votes
3answers
3k views

Dump prepared sql query from DBI statement in PERL

im using DBI in Perl to connect to my PostgreSQL Database. Everything is working fine but in my debugging (printing results etc.) iam not able to see if the query prepared by perls DBI module is ...
5
votes
3answers
605 views

Simplest method for creating dump file for troubled process

I have found multiple ways of creating dump file such using windows utitlity userdump and adplus.vbs and a few others. There is one option that I have found in task manager seems to be the easiest ...
5
votes
1answer
1k views

analyse c# application dump file

I wrote a C# application that is running well on XP but freeze on Vista/7. I got an application dump (dmp file) for analysing the problem. I don't understand how to get the stack trace in C# (as I ...
5
votes
1answer
697 views

How to convert Mathematica binary dump file to list of definitions?

As the Documentation says, "DumpSave writes out definitions in a binary format that is optimized for input by Mathematica." Is there a way to convert a Mathematica binary dump file back to the list of ...
5
votes
1answer
130 views

Windows Debugger Road-Map

It seems there are dozens of debugger and debugging tools that Microsoft produces, which creates a maze of choices and questions concerning which tool to apply, and when. For example, there is windbg ...
5
votes
2answers
710 views

How to print the last received signal in GDB?

when loading a core dump into GDB the reason why it crashed automatically is displayed. For example Program terminated with signal 11, Segmentation fault. Is there any way to get the information ...
5
votes
1answer
275 views

interpreting line in thread dump

I am trying to figure out this line in a thread dump "RMI TCP Connection....." daemon prio=3 tid=0x0000000106f12000 nid=0x1e10 runnable [0xfffffffe48dfe000] What is that address after ...
5
votes
2answers
1k views

Java threads waiting to lock object that isn't (visibly) locked

Normally when I ask for a thread dump, the symptoms of a poorly performing system are easily explained; i.e. normally I would be able to see that a number of threads are clearly waiting on a monitor ...
4
votes
7answers
2k views

How can I control the formatting of Data::Dumper's output?

I am using Data::Dumper::Dumper() method. The output is good, but can be made little compact and more good looking. How I can control it? What are the better alternatives?
4
votes
2answers
7k views

dump jquery object in an alert box

I am not quite adept in maneuvering jQuery, and it came to a point that I need to debug a program that was passed down from me without a documentation. I have this var a, an object, that I really ...
4
votes
6answers
3k views

How to dump part of binary file

I have binary and want to extract part of it, starting from know byte string (i.e. FF D8 FF D0) and ending with known byte string (AF FF D9) In the past I've used dd to cut part of binary file from ...
4
votes
3answers
2k views

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 ...
4
votes
3answers
6k views

SQL Dump from DB2

I'm trying to dump the contents of a particular schema in one IBM DB2 UDB server into an sql text file (much like the mysqldump functionality of mysql). I came across db2look, but it only dumps the ...
4
votes
1answer
985 views

pg_dump: too many command line arguments

what is wrong with this command: pg_dump -U postgres -W admin --disable-triggers -a -t employees -f D:\ddd.txt postgres This is giving error of too many command-line arguments
4
votes
1answer
963 views

Compare heap dump (HPROF) files

Is it possible to compare two HPROF files? How?
4
votes
4answers
2k views

Where to find the heap dump after an “Out Of Memory”

I'm using ASANT to run a xml file which points to a NARS.jar file. I'm getting "java.lang.OutOfMemoryError: Java heap space" and i'm researching around this. So i have found that i need to set ...
4
votes
2answers
298 views

How to debug BSOD crash caused indirectly by .NET application

We have a .NET application that transfers files from a client workstation to a database on a central server in a LAN. A few of our customers run this on wireless Windows XP workstations that use a ...

1 2 3 4 5 11