0
votes
1answer
40 views

C# and mysqldump

I'm writing an application which should make a complete copy of one database and then import it on the same server with different name. So, I guess I should use mysqldump and mysql and the parameters ...
0
votes
0answers
33 views

Dump local SVN history

I had a network SVN repository (on hosted server) but it's not accesible anymore. Is there a way (command line, software, ...) to dump my local history to a new online repository. For information I ...
0
votes
0answers
90 views

export list of every filename, date created/modified and size into text file

I want to get a list of every file on my Mac OSX through the terminal. I'm sure there is a way to do it but I just don't know how. I tried something like: sudo ls -lpR | grep -v / > output2.dat ...
1
vote
1answer
796 views

Optimal mysql dump method for php

In my project i need mysql db auto-exporter feature. For this purpose i have wrote some codes. Now i can export my mysql database via single php file. But when mysql database is not small(for example, ...
0
votes
2answers
247 views

Importing svn repositories from Origo

Origo is shutting down their SVN hosting, so I am once again forced to move to another SVN hosting service. The thing is, they did provide us with an URL to a "nightly dump" of the repository. But ...
2
votes
1answer
86 views

Best way to import SVN tags and trunk into new Git repo? (Can't use clone due to size of repo)

I'm moving a project from a really big, shared Subversion repo to its own Git repo. I've already decided to just export the latest version from trunk rather than dumping/cloning the whole project ...
1
vote
1answer
224 views

Can't get full dump using cmd:Invalid Username/Password error

I'm trying to get a full dump of a certain database called HQBASE. I write the following command in cmd exp userid=sys/123456 FULL=Y FILE=C:\HQ_FULL.DMP but I get invalid username/password:logon ...
0
votes
1answer
715 views

MysqlDump to CSV format. (Enclosed string fields, first description row, no sql files)

I would like to know mysqldump parameters in order to get in a directory, every table in CSV format (, separated + a description first row). I don' want any other files like .sql. For example, if I ...
1
vote
3answers
511 views

SQLite importing data from a datadump script including primary and foreign keys

I have a SQLite database that makes use of foreign keys, some of which will be autoincremented values. The "core" data the system represents is for example a car. The foreign keys are linking to ...
0
votes
2answers
2k views

Best (easiest) way to make a SQL Server dump and import that dump in another SQL Server

I would like to achieve a database export (dump) in SQL Server from one server and import that dump in another SQL Server and not necessarily in the same schema name. For example if I have a database ...
1
vote
1answer
601 views

Validate Oracle dmp

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!
0
votes
2answers
732 views

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 ...
0
votes
2answers
1k views

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?