dump

Oracle : Use two different versions of EXP on the same machine ?

Hi, i have a server (HP-UX) installed with Oracle 10g and several databases on it. I've been asked to make dumps from these tables for a Oracle 8i database. In order to do this, i need to use the 8i version of the EXP (export) tool of Oracle. It is still installed on my server but when i want to use it, i get the following error : EX...

Using WinDbg to Inspect Method Parameters In Raw Memory from Crash Dump

One of our customers reported a crash. She saw the standard error message after an unhandled exception: "Application has generated an exception that could not be handled... Click OK to terminate the application. Click CANCEL to debug the application." I used DebugDiag to generate a dump of this process. I'm looking at the dump now. ...

Core dump for process spawned from Java

Hi, My Java (Eclipse) application is spawning a child process, monitoring its stdout stream and exit value. When the child process is crashing with SIGABRT, there is no core dump file created. If I start the child process manually and kill it, the core dump is there alright. I couldn't find any info about whether the JVM prepares someh...

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? ...

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. ...

Heap Dump Root Classes

We have production system going into infinite loop of full gc and memory drops form 8 gigs to like 1 MB in just 2 minutes. After taking heap dump it tells me there an is an array of java.lang.Object ([Ljava.lang.Object) with millions of java.lang.String objects having same String taking 99% of heap. But it doesn't tell me which class i...

Analyzing a Xen core dump

After a Xen guest domain hang, I took a dump using xm core-dump . Following the sparse documentation I found, I tried using the crash utility to analyze the dump. Unfortunately, the kernel image (Debian lenny) is stripped, so I am forced to make use of the map file. However, crash /boot/System.map-2.6.26-2-xen-amd64 vmlinux-2...

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? ...

cdb and windbg unable to load MiniDumps, but VS 2008 loads them fine

I am trying to build some automated crash dump analysis, but I cannot get cdb or windbg to load my crash dumps. They load just fine in VS 2008. When I run dumpchk.exe on the file, I get: Loading Dump File [c:\devx86\temp\ErrorDump.mdmp] User Mini Dump File: Only registers, stack and portions of memory are available ERROR: Memory rang...

Dumping frameworks for iPhone 3.0 not working?

Hey I need some extra capabilities for my program and I would like to use some Undocumented APIs for my iPhone program. I downloaded: DumpFrameworks as Dumpframeworks.pl and class-dump from : http://ericasadun.com/HeaderDumpKit/ I put DumpFrameworks.pl in Downloads and class-dump file in /usr/local/bin in the terminal I run: $perl D...

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? ...

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 data, just the table schema, but including the indexes). I could just copy and paste the b...

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 to viewing them by hitting a break point and hovering over variables, but without actually having to halt the program execution (i.e. just get a...

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? ...

how to dump mysql table relations in PHP

Hi all; 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', 'tableC'), 'one-to-many' => array('tableD'), 'tableB' => arra...

Cannot dump stackoverflow XMl file into SQL server 2008

Cannot dump stackoverflow XMl file into SQL server 2008. Could you please explain in step-by-step. ...

In JSP, is there a way to see all available variables in the specific scope like in PHP?

Or better yet how do I dump all the variables in a given scope in jsp? (In php you can use a function call to see all the system, global and user-defined vars and functions available...) ...

How can I extract DLL file from memory dump?

I have a memory dump (unmanaged process) . How can I extract (using windbg) one of the dlls loaded into the process ? I mean actually saving the dll file into the disk ...

Debugging Crash Dumps in VS2010

After watching the latest hanselminutes on 9 video, I went to our dev environment and grabbed a dump of a few different services. After opening the dump file I noticed that some were able to be debugged in Mixed mode and Native mode, and others in Native mode only. Being that every service is written in managed code, why wouldn't mixed ...

Memory Error in C++

Hi Guys, I have a high memory requirement in my code and this statement is repeated a lot of times: Node** x; x = new Node*[11]; It fails at this allocation. I figured out this line by throwing output to the console! I am building my code on Visual Studio. It works fine in Debug mode (both in VS2005 and VS2008) However it throws the ...