dump

Recovering from commits that won't revert from trunk

Every windows svn client I've tried crashes at the end of reverting three bad branch merges. I'd like to get them away from the head of our trunk, ideally erae them forever as the merge should have been a re-integration- not a range of revisons. I can't work out why the clients are crashing at the end of the and, of course everyone is ...

jQuery /Javascript - json to string variable dump

Is there a quick function to covert json objects received via jQuery getJSON to a string variable dump (for tracing/debuggin purposes)? ...

ASP equivalent of PHP print_r

Plain old ASP, not .NET I've got a really large and complicated class for making an upload progress bar and I'm trying to find out the uploaded file name. I think easiest way to accomplish that would be dumping the variable structure but, even if it isn't (and I appreciate if someone can point me), I've ended up wondering about it and t...

silverlight plugin dump file

I like to know if anyone has any idea to make silverlight generate a dump file or something to allow me to know the cause of the plugin crash? I have recently asked this question and was given a solution (refer to the link below). But using the method, I do only see the minidump folder with nothing inside, no matter how I try to crash m...

Incremental SQL dump of mysql

Hi All, I am using MySql as a development database as well as on the server where my website is hosted. Now everday I punch new data into the database and save it as SQL dump using SQLyog. But when it comes to updating the data for that day on the server Mysql database I have to truncate the tables and then insert the new data. Wh...

Dump some mysql tables (structure + data) in C#

How can I dump some of the tables from my mysql database into an sql file in C#? Is there a class which does this? UPDATE: just wanted to mention to DO NOT USE mysqldump, because this application will be installed on many computers and the mysql folder could be on different places. ...

Crosswords Puzzle Database or Web Service

Hi, I would like to obtain an existing db dump of a collection of crossword puzzles or a web service through which I can get one. Is any one aware of any web sites that provide you with free dumps? Thanks in advance John ...

Java5 on Windows service app - get Full Thread Dump need clarification

I've looked through couple of articles here such as: http://stackoverflow.com/questions/2124672/java-stack-dump-on-windows http://stackoverflow.com/questions/239544/thread-dump-programmatically-jdi-java-debugger-interface But didnt catch the exact answer. The problem: There is a Java5 Application on Windows that's runs as a service (...

Validate Oracle dmp

Hi! I have a Oracle backup done with EXP utility. How can I validate it? Is there any command/tool to validate the backup archive? Thank you! ...

mysql dump into derby

Hey, I'm using derby for development in eclipse. Is it possible to dump a table from MySQL and use it for derby in some way? I know that ddl & dml are different for both dbms but I'm looking for a way, other than dump/export, that would be appropriate. ...

Backup all MySQL databases that a mysql user has access to

Hi, I need to backup all MySQL databases available to a partiular user and store them *databasename_date.sql* Is there any way to use mysqldump to dump all databases instead of telling it each database name it needs to backup? Thanks ...

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

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 that the underlying database files can be copied, but I assume they will only work in the same version of MySql that they come from. Is t...

how cut the mercurial repository from certain revision / push

I have broken some code in my last 4-5 revisions / pushes to main repository. At now I want to completely delete this pushes and start HEAD of my repository from that point. How can I do that? In SVN there is dump command, which copies whole repository from one revision to another. There is some substitute in Mercurial or oher way? ...

svnadmin dump in Cygwin

I'm trying to write a script in Cygwin to backup our SVN repositories nightly. The first stumbling block I found is that the svnadmin doesn't seem to work quite right within the cygwin bash shell. My repositories are in C:\Repositories Doing the following in a cmd shell works fine svnadmin dump C:\Repositories\Thor > Thor.dmp But t...

MySQL stored procedures in SVN

What is the best way to save MySQL stored procedures and table structures in SVN? I have around 100 tables and 200 stored procedures, dumping all procedures in a single file makes no sense as it contains thousands of lines and hard to maintain. I'm now thinking of creating separate separate files for each table and procedure, but it wi...

Merging SVN Repositories: I loaded old repository onto an existing repository. How do I switch my working copy?

I'm trying to merge multiple Subversion repositories into a single repository without too much hassle on my users. I did roughly the following: > svnadmin dump old_repo > old_repo.dump > svnadmin load combined_repo --parent-dir old_repo_path < old_repo.dir > cd old_working_dir > svn switch http://server/combined_repo_root/old_repo_path...

Is there something like var_dump of PHP in c/c++?

I'm seeking of an API that can be used to dump most data structures,is there one in c/c++? ...

Can I manually change the dump file created by imp tool of Oracle?

I have encountered a problem in importing the dump file to a new database. When importing the dump file it requires a new tablespace which does not exist in the database. To create the tablespace I need to hijack some scripts which is readonly.For this reason it is complicated to export the table structure through imp tool of Oracle so ...

How to export consistent subset of database

Hi, I'm certain that there must already be a many tools "out there" to do this, but I'm not having much luck tracking them down. I'd greatly appreciate your help. We have pretty big MySQL database, with many tables and some complex table relationships enforced via foreign key constraints. What we need is, to create another, smaller dat...

[PHP] MySQL (5.x) database backup/restore to file tool.

Welcome, I'm looking for php class what allow me to backup MySQL (5.x) databases under PHP. I test many from phpclasses but most all are written for mysql 4 and under mysql5, generate wrong code. Class should allow me to dump my database into file. easy restore that file. generated file (.sql) should be compatible with phpmyadmin. ...