dump

OQL - Find certain (sub)-members of a given object

I'm analyzing heap dumps in a Portal App. With the help of OQL I found the MemorySessionData Object with its address. Now I want to find all SerializableViewState Objects, that are hold by Objects hold by this MemorySessionData object. In other words: My MemorySessionData Object holds several objects, these hold objects again and so on....

Java: how to avoid circual references when dumping object information with reflection?

I've modified an object dumping method to avoid circual references causing a StackOverflow error. This is what I ended up with: //returns all fields of the given object in a string public static String dumpFields(Object o, int callCount, ArrayList excludeList) { //add this object to the exclude list to avoid circual references in th...

Dump to CSV/Postgres memory

I have a large table (300 million lines) that I would like to dump to a csv - I need to do some processing that cannot be done with SQL. Right now I am using Squirrel as a client, and it does not apparently deal very well with large datasets - at least as far as I can tell from my own (limited) experience. If I run the query on the act...

Is there a way to dump all mysql databases except for system databases?

I use mysqldump to automatically dump all my databases to a text file and save this dump as backup. I use the --all-databases option which dumps my databases, but it also dumps system databases (information_schema, phpmyadmin, etc.) which I don't need. Is there a way to dump all my databases with mysqldump without naming them explicitly...

Memory dump much smaller than available memory

I have a Tomcat Application Server that is configured to create a memory dump on OOM, and it is started with -Xmx1024M, so a Gigabyte should be available to him. Now I found one such dump and it contains only 260MB of unretained memory. How is it possible that the dump is so much smaller than the size he should have available? ...

Read array dump output and generates the correspondent XML file

Hi, The text below is the dump of a multidimensional array, dumped by the var_dump() PHP function. I need a Java function that reads a file with a content like this (attached) and returns it in XML. For a reference, in site http://pear.php.net/package/Var_Dump/ you can find the code (in PHP) that generates dumps in XML, so all neeeded ...

How to make a memory dump in .net?

How do you obtain a memory dump from a given memory address in the format: Address | Hexadecimal representation | ASCII representation --------------------------------------------------------------------------------------- 0x637132687 | 00 00 00 00 00 00 00 00 45 21 65 78 32 F5 12 6C | ....... ahsnfdas 0x63...

Dumping LDAP - Sizelimit Exceeded

When I'm LDAP searching, I got error: "LDAP: error code 4 - Sizelimit Exceeded". How can I dump all the data without changing LDAP server settings? ...

Data dump of Hibernate-based application

Is there some tool for do dump data to some format. May be XML, JSON, CSV etc for using it in other application(may be with other DB engine) ...

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

appcfg.py: error: no such option: --dump on google-app-engine

i follow this article :http://code.google.com/intl/en/appengine/docs/python/tools/uploadingdata.html and want to download all data from my app , but when i use the next code,it show error: D:\zjm_demo\app>appcfg.py --dump --app_id=zjm1126 --url=http://zjm1126.appspot.c om/remote_api --filename=a.csv Usage: appcfg.py [options] <action>...

postgresql db structure script

How to get my db structure without the data, (schema, tables, ...) as a script by command line. ...

Subversion dump/load overlap/underlap issue

I have a repository I'm migrating to a new subversion server using svnadmin dump and load. I'm doing this in 2 goes, as outlined in the steps below: repoX is at revision 100 I perform an svnadmin dump repoX > repoX.dump I perform an svnadmin create repoX on the new server I perform an svnadmin load repoX < repoX.dump on the new server ...

What does the "Unloaded" prefix mean in a Windows stack trace?

I've the hellish problem of a third party DLL appearing to cause a recursive stack overflow crash when it gets unloaded. I wind up with this pattern on the stack (using windbg): <Unloaded_ThirdParty.dll>+0xdd01 ntdll!ExecuteHandler2+0x26 ntdll!ExecuteHandler+0x24 ntdll!KiUserExceptionDispatcher+0xf <Unloaded_ThirdParty.dll>+0xdd01 ntdll...

How to configure Win2008 to generate crash dump

Hi, I am running my C++ servi ce on Win2008 server machine. It crashes randomaly, and i do not know why. This is happening on multiple machines in customer site. How can i configure the system to auto generate a dump of the process? I need a method that will require minimal installations and UI, preferably only some registry hacks. Th...

analyse c# application dump file

Hi, 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 have of course the source code). I loaded symbols but it doesn't seem to load managed code, here is the stack trace : ntdll.dll!_KiFastS...

Debug released managed code (.net 3.5) using a dump file

Our application started to have some strange performance problems in the production environment. Constant CPU usage, although the app doesn't seem to be doing anything, and high memory usage. We've created a dump file of the process using the Task Manager's feature. Now we're trying to debug it, but it doesn't seem to be that easy :) V...

How can I dump (in Windows) the memory space used by a DLL?

Hello, I can readily dump the entire memory space of a process using various tools. But is it possible to dump just the memory space used by a DLL loaded by some process? What tools should I use? Thanks, Jim ...

How do I analyze a .mdmp file?

I have java application that is crashing while in production. It doesn't do so in dev/QA. The jvm is creating a .mdmp file and a text file. How do I analyze the binary dump file? I googled but had no luck. We are using bea jrockit jvm 1.5 R27. ...

How in H2DB get sql dump like in MySql?

Hello all! 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 possible? Thanx all! ...