dump

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 some other tool? ...

Importing two dmp files into single schema

I have two dmp files to imported into the same schema in my DB. They are each 20GB (size was probably the reason why they were exported as two dump files). How can I do a successive import into the schema. Does impdp command have an option to allow me to import more than one file? ...

Getting a dump of a process that crashes on startup

On a customer machine (WinXP SP2) to which I have no access, I have a Win32 EXE (unmanaged C++) that crashes on startup. I guess the best way to troubleshoot this is to obtain a (mini-)dump and analyze it later with windbg or similar. Now, I would normally tell the customer to install Debugging Tools for Windows and run cscript adplus....

Twitter Data Mining: Degrees of separation

What ready available algorithms could I use to data mine twitter to find out the degrees of separation between 2 people on twitter. How does it change when the social graph keeps changing and updating constantly. And then, is there any dump of twitter social graph data which I could use rather than making so many API calls to start ove...

Dump of SQL Server insert data

Is there a free tool that will allow you to dump the data (not the structure) of an MS-SQL Express (2005) table as INSERT statements to a flat file? This commercial product seems to do what I have in mind. I've tried using SqlDump but my full server name will not fit in its SQL Server Name field. ...

how to write a program to generate the current brower's content but "ALL OF THE CONTENT" plus the Window's menu bar and frame/border (including the content even when scrolled down)

I remember in the early days of the web, there were books including the whole browser window's title bar, menu bar, and even the border of the browser, and the content inside of it -- not just the current content in the window, but all the content even when scrolled down). I'd like to be able to do that too... is there a easy way to wr...

SQL Dump from DB2

Hi, 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 structure of the schema (only ddl, no dml). So how can I get my thing done? jrh. ...

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

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 core dump as frozen JVM. ...

Print to log a core dump file stack, C++ over windows?

When my process crashes, how can I print to log a core dump file stack, C++ over windows? I know that in Unix there is a way to do it using some signal handlers but never did it myself. How can I do it in windows (prefer not to use ACE)? Thanks. ...

Linux: How to debug a SIGSEGV? How do I trace the error source?

Hello! My firefox started crashing since today. I haven't changed anything on the system or on firefox config. I use strace -ff -o dumpfile.txt firefox to trace the problem. It's not a big help. I see the segfault, in two of the generated process dumps, but how I can trace them to their cause? After running for 10 seconds and crashin...

JRockit Dump File

I need a parameter to start JRockit JVM without (doesn´t metter what happens) generating dump files. Something like -DnoDump or -XXnoJrDump would be great. ...

Stack overflow in IIRF (a C program, ISAPI)

I am using IIRF - an ISAPI rewrite filter for pretty URL's. I haven't been able to get much help from the developer on these issues. I'm hoping by making some sense of this dump, so I can find the problematic area in the code and rebuild it myself. I am not super familiar with C, but can get around. Do I need to build this with debug sym...

In Perl, how can I write the output of Dumper to a file?

How can I make Data::Dumper write a dump into a file? ...

Dump Analysis with Source, using Visual Studio 2008 Express?

Is there any way to analyze app-crash minidumps (e.g. created by SetUnhandledExceptionFilter, or minidumpwritedump()) with source, using Visual Studio 2008 Express? I generally do this at work using "real" versions of VS, but when trying to get it to work on my personal projects (using VS 2008 Express) it tells me "There is no source ...

How to create a dump of the current ASP.NET managed process for debugging?

I'm attempting to debug an ASP.NET application. It's particularly difficult as the bug only occurs in the released code deployed to production. It cannot be reproduced in the development or test environments. I'd like to investigate further by creating a dump file at a particular line in the code where the problem is happening. However ...

Disabling Local JMX Connections on JVM

Hi, We are writing a java program which keeps a password in memory. Unfortunately, the user can easily use jconsole or jmap to create a heap dump file and open it to find the password. I think jconsole connects jvm using local sockets. I wanna know, is there any way to disable jmx even for local users? Is there any way to totally disable...

How to get binary dump of SQLite memory db

Hello! If i have code like this $dbSL = Zend_Db::factory('pdo_sqlite', array('dbname'=>':memory:')); $dbSL->query('CREATE TABLE ...'); $dbSL->query('CREATE TABLE ...'); ... After that i whant take binary dump of this SQLite db Thx in advice! ...

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

Regexp for replacing quotes in database insert statements

I'm converting a sqlite3 database to mysql. I have a nice command file for sed that changes AUTOINCREMEMT and the other things needed, but I'm stuck on the last one: double quotes. sqlite3 dump format: CREATE TABLE "products" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "desc" varchar(255) ); INSERT...