dump

C++ crash dump, stack unwinding on Win32 exceptions (when catch(...) used) - VS 2003

Like in Just In Time debugging, does VS 2003 compiled apps catch Win32 (or asynchronous) exceptions in a catch (...) and unwind the stack? before the dump file is written... ...

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 from Repository_1/Folder1 into Repository_2/Trunk everything is fine BUT When loading from Repository_1/Folder1/Sub-folder(created another d...

vbscript calling svnadmin dump

Hi, Running the following vbscript to call svnadmin dump fails (i.e. no dump is being created) Set objShell = CreateObject("WScript.Shell") Set objShellExec = objShell.Exec("svnadmin dump C:\svn_repos > C:\fullbackup") I discovered from another post, http://stackoverflow.com/questions/445121/svn-dump-fails-with-wscript-shell/2400011...

Where to find the heap dump after an "Out Of Memory"

Hi! 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 "-XX:+HeapDumpOnOutOfMemoryError", to create a dump file to analyze. I edited ASANT.bat and added the "-XX:+HeapDumpOnOutOfMemoryError" to ...

How do I write a analyzable thread dump format

I'm creating a global exception handling which collects some information before shutting down in some cases. One of this information is the current thread dump. i do this with following code: ManagementFactory.getThreadMXBean().dumpAllThreads(true, true); The problem is to write the information into a analyzable format for TDA. Is the...

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, we need to let the old and the new system overlap for at least some weeks if not months, before we actually know, if all features of the n...

How can I get JUnit test (driven from Ant script) to dump the stack of exception that causes failure?

We run JUnit test from Ant script, as follows. When the test failed, I expect it to output the stack dump of the exception that casuses the failure, but it doesn't. Is there any trick to get it dumped? <target description="Run JUnit tests" name="run-junit" depends="build-junit"> <copy file="./AegisLicense.txt" tofile="test/junit/c...

VisualSVN dump a repository project

Hi, I am not sure if this is the right place to ask this. I followed VisualSVN recommendation (here) when setting up my repository locally. I am now migrating to an external party (codebaseHQ). How can I dump a project from the repository for the migration. I no longer need all the projects in VisualSVN server. I only need one. I can't ...

mysql export sql dump alphabatically,which cause foreign key constraints error during import

I have 10 tables in my database, where tbl_city and tbl_state. structure of tbl_state is below state_id |int(10) |UNSIGNED ZEROFILL auto_increment state_name |varchar(40) and structure of tbl_city is below city_id |int(10) |UNSIGNED ZEROFILL auto_increment city_name |varchar(40) | state_code |int(10) | UNSIGNED ...

something about sql-dump

hi, guys, i know that sql dump is a series of insert sql statement which reflects all the records inside the database. but may i know what is it used for? why should we dump the database records? is every database supports dumping function? Any additional background information is welcomed! Thanks in advance! ...

Generated SQL with PredicateBuilder, LINQPad and operator ANY

I previously asked a question about chaining conditions in Linq To Entities. Now I use LinqKit and everything works fine. I want to see the generated SQL and after reading this answer, I use LinqPad. This is my statement: var predProduct = PredicateBuilder.True<Product>(); var predColorLanguage = PredicateBuilder.True<ColorLanguage>();...

create dump file from database in mysql

following is the that I create dump from mysql database. mysqldump -u root tempbkk > ttt.dump but I want to create a dump that exclude one or more file while creating dump from database we select.What is the command for that ? ...

Usinng svnadmin dump to revert the latest revision committed

What I need is that the latest (mistake) revision being reverted and that the repository does not store it in anyway. That is, I'm trying to erase the latest revision out of existence, NOT trying to fix things by coming back to the latest-1 revision. In other words, I want to avoid the repository growing in size. Suppose head revision i...

find out what functions a static C library has

hi, 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 the equivalent of javap for Java. ...

how to disable creating java heap dump after VM crashes?

JVM runs on FreeBSD with 18Gb memory. creating core file takes about hour, which is very slow, so i need some way to disable it. ...

shell_exec() in PHP

<?php // Execute a shell script $dump = shell_exec('bigfile.sh'); // This script takes some 10s to complete execution print_r($dump); // Dump log to screen ?> When the script above is executed from the browser, it loads for 10s and the dumps the output of the script to the screen. This is, of course, normal. But if I want the dat...

Problem dumping one class type with Django dumpdata

I use dumpdata to output all my apps's classes. One of my app has one class that never get's outputted and I don't know where to start looking to know what's wrong. The class is used regularly, every other classes in the app are dumped fine and dumpdata doesn't throw any error. Any cue ? ...

When does JVM produce dumps, other than out of memory

Hi, I need to now when does jvm produce hprof dumps other than out of memory situations. Eg, does it produce an hprof when there is a high cpu usage? I see hprof files produces and there is no out of memory situation. Thanks ...

Oracle DUMP procedure returns question marks for Chinese characters

I am using Oracle 10g and am performing the following query: SELECT DUMP('炫耀他的', 1017) FROM DUAL; This outputs: Typ=96 Len=4 CharacterSet=AL32UTF8: ?,?,?,? Why have the Chinese characters been replaced with question marks? How do I get it to return the correct characters? ...

Win32: Is there a difference between Dr. Watson's full/mini dumps and writing my own?

I have an application that is occasionally crashing in the release build; unfortunately, it looks like it is crashing in a 3rd party DLL. While trying to get a handle on it I've been swimming in a sea of HOW TOs and descriptions of how Windows creates crash dumps. I was thinking about using this suggested mini-dump: http://stackover...