0
votes
2answers
13 views

Wikipedia: dump article id's and it's category

I would like to make a mysql database with every wikipedia article id and it's category id (most general category). I saw that wikipedia gives an entire dump, and a few others like links between ...
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 ...
-2
votes
0answers
38 views

MySQL dump on a free hosting? [closed]

I have a MySQL database and I need to dump it. I only need to dump the data, not the database structure. I've done my homeworks, and found a very simple way to do exactly what I want, with this PHP ...
1
vote
1answer
17 views

How to include MySQL database schema on GitHub?

Stackoverflow and MySQL-via-command-line n00b here, please be gentle! I've been looking around for answers to my question but could only find topics dealing with GitHubbing MySQL dumps (as in: data ...
-1
votes
2answers
42 views

How to save a MySQL dump into a variable from php? [closed]

Certainly o could generate a dump file, then read this file and put into a variable. But is there a way to retrieve the dump and put into the variable directly? Thanks!
0
votes
0answers
30 views

Load 2 million entries of data in MySQL

I am trying to import a dump file to MySQL through command line. The dump file contains about 2 million entries. To import the data I used the command mysql -u USERNAME -p DATABASE < filename.sql . ...
0
votes
2answers
50 views

Parse sql file using php

I have a sql dump file in excess of 3gb containing multiple queries. I want to parse the file into queries using php. On recommendation from a user on the site I used ...
0
votes
1answer
24 views

mysqldump command in linux till date(I mean i dont want to dump changes in the database that i made today)

Normally we Dump data in such manner: What i require is i just want to dump data till yesterday !!! mysqldump -u root -p gateway > dumpfilename.sql
0
votes
0answers
36 views

Mysqldump keeps having an uknown variable error

My dump code: C:\Program Files\MySQL\MySQL Server 5.6\bin> mysqldump -uroot -p marketingfunctions --single-transaction=TRUE > C:\20130404.sql The error: mysqldump: unknown variable ...
0
votes
2answers
61 views

MySql Dump output conditional comments? Execute dump as query to restore database

Note: Actually two questions... When I dump a mysql database using the mysqldump binary I get a file that contains (among other lines) this: CREATE DATABASE /*!32312 IF NOT EXISTS*/MyDatabase/*!40100 ...
0
votes
2answers
30 views

Insert query with records exceeds the limit

Warning: POST Content-Length of 33797274 bytes exceeds the limit of 8388608 bytes in Unknown on line 0 I exported the content of a mysql table and want to import it to a database with the same name ...
0
votes
0answers
21 views

Mysql issue while importing database through dump file

I have two views in database 1. sballdelyears 2. shipscheduled first one depends on second i.e. sballdelyears uses shipscheduled view in structure. It works fine. But there is issue when I ...
0
votes
1answer
52 views

Get the difference of two sql files

I want to get the difference of two sql dumps. I have to save the difference in a new file. The difference should be legitimate query! For example, If I have a file with following content, CREATE ...
0
votes
1answer
48 views

Phing pdosqlexec Segmentation Fault

when i try to execute this <pdosqlexec url="${pdo_driver}:host=${host};dbname=${db.name};" userid="${mysql_user}" password="${mysql_pwd}" encoding="utf8" ...
3
votes
2answers
2k views

Dump File MySQL 5.6.10

I was trying to create a dump file from my Mysql Database, but when I try give me always this error: Operation failed with exitcode 2 16:06:07 Dumping proactivetraindb (userstate) Running: ...
0
votes
0answers
63 views

How to sync 2 mysql databases DATA

I've got an app working with MySQL. Data of an account in this application got corrupted so I need to restore a backup of a few days ago. On top of this I need to "recreate" data modifications that ...
0
votes
1answer
66 views

How to download MySQL dump from Windows Azure?

I create Web role with Drupal from gallery. How to download database which created automaticaly?
0
votes
2answers
85 views

Is this database dump design ok?

I have written a Java program to do the following and would like opinions on my design: Read data from a CSV file. The file is a database dump with 6 columns. Write data into a MySQL database table. ...
0
votes
2answers
265 views

Exporting all data from MySQL database to spreadsheets

So, I've got a MySQL database consisting of a bunch of tables that I want to give to my uncle. Problem is, he doesn't know much about computers, so I can't just hook him up with the database. ...
1
vote
3answers
211 views

Mysql : dump database along data

I want to dump my database along the table schema and the table data also using the unix command line . I used . mysqldump -d -u root -p frontend > frontend.sql But above command is dumping ...
0
votes
1answer
66 views

whitch of these is faster method do import db?

I wonder if importing a script with mysql CLI is faster than use a Linux CLI, let me explain what I mean here: This: - mysql -uroot -ppass then use this source dump_script.sql is faster/slower of ...
2
votes
1answer
185 views

Benefits of dumping from a MySQL database to JSON file? [closed]

I just want to ask if there would be a difference getting a report from a MYSQL database directly or from a MYSQL database dumped JSON. I'm new with JSON and is looking everywhere for tutorials and ...
1
vote
1answer
208 views

backup mysql tables with php

I would like to backup tables (with PHP) from a db if the table prefix is matching with a sub string. What I was trying and is not working error_reporting(1); $dbname = 'wp_dev'; if ...
1
vote
2answers
195 views

Mysql : Dump/Exports existing data to a .sql file

I have a database. All I want to do is dump ALL the existing data in every table to I can then use it to simply import the SQL to my new database? Im presuming the dump will be a bunch of MySQL ...
0
votes
4answers
66 views

Dump values from a table to another one in MySQL

Say I have a table called dogs that have the following columns: id, fk_hospital, fk_owner, date, name And I want to create another table that will have the following columns: fk_hospital, ...
0
votes
1answer
72 views

Best way to dump one database table with limit and all association

class Profile < ActiveRecord::Base has_many :favorites, :dependent => :destroy has_many :friends, :dependent => :destroy end I need smth like this: mysqldump --opt --where="1 limit ...
0
votes
2answers
231 views

Loading a dump file(.dbo file) into mariadb database

I have a .dbo file and I need to load the dump file into mariadb. How it is possible? In MySQL I tried like this : mysql -u root -p dbname -e " source path/test.dbo" But the same is not works with ...
1
vote
3answers
217 views

Restoring Mysql dump from java: why does it hang the process?

I'm trying to restore a Mysql dump from a Java app. I'm using this code: Runtime rt = Runtime.getRuntime(); try { comando = "mysql -u root -ppass -e \"source " ...
1
vote
2answers
97 views

SQLite multi row export

I dumped a SQLite database to a .sql file. However, there are about 800 inserts and importing it takes a lot of time. Like a minute or two. Is there a way to dump the data with multi-row inserts so ...
0
votes
0answers
263 views

Importing wikipedia-dump to SQL-base

I have a problem with MySQL. I wanted to import a dump of Wikipedia in my MediaWiki (Local Server "Denwer"). First, I'm using MWdumper.jar for convert XML-dump to SQL-file. (for test I'am used ...
0
votes
1answer
87 views

MySQL - Is there a way to include the bin log position in the dump file without scripting

Is there a way to include the replication bin log position in the dump file without scripting? I know there are ways through scripting, appending a line to the dump file etc. But I remember once ...
0
votes
1answer
133 views

CakePHP 2: How to generate an sql insert script from an array

Can I generate an sql insert statement from an array returned by find methods? Thanks.
0
votes
1answer
101 views

Cakephp 2: How to generate sql from records for every table in the database

I need to find a way to generate an sql file (insert statements) for every table in the database. My database can store records for many sites and I need to export to sql only those records for a ...
-1
votes
1answer
1k views

mysqldump command not found - MAMP

How can I add mysqldump to the export path when running MAMP. I have tried a few export commands I found via google but with no luck.
1
vote
1answer
871 views

run my sql dump in terminal

so I have can create a dump /Applications/MAMP/Library/bin/mysqldump -u admin -p testsite > yourdump.sql but how do I run this on another mac in terminal?
0
votes
1answer
52 views

Efficiently getting an article from a Wiki dump by title

Going through the xml file obviously takes a lot of time. Tried importing it into a MySQL database, but unfortunately querying it also takes more than 10 seconds for retrieving a single article by ...
1
vote
1answer
182 views

mysql dump - charachter encoding

I have a mysql dump what contains ascii characters like überprüft. My problem is like I can not make another dump and I have been searching on the net for a solution but every suggestions would ...
0
votes
2answers
145 views

Replicate mysqldump functionality using only queries

How do I backup a MySQL database using just queries? I mean, PHP's system() function is disables for security reasons, thus I cannot invoke mysqldump. For table structure I use this: SHOW CREATE ...
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
132 views

Query POJOs from MySQL XML dump

At first my app was going to access a MySQL database, but everything changed and now it must read from a XML file, it will only read from it. The basic idea is: 1. Admin App persist to MySQL. 2. ...
0
votes
1answer
715 views

How can i dump blob fields from mysql tables

i am trying to dump the BLOB fields from mysql table. but when i dumping blob records using sqlYog am getting unvaluable data. How can i backup BLOB type fields? Note: BLOB field has image.
0
votes
0answers
276 views

mysql: dump structure+data and only structure in one dump

With MySQL, I use these commands to dump all db, only the tables structure or only the data. mysqldump -h localhost -u username -ppwd mydb > dump_all.sql mysqldump --no-create-db ...
-1
votes
1answer
189 views

how to delete some tables from sql dump?

I have got dump of all sql databases. in this dump i have got "database1", "database2", "database3" how to take all data in another files from dump? may be some program or script? or delete only ...
1
vote
1answer
316 views

How to import multiple dump files to mysql in windows?

I need to import multiple dump files to mysql using windows command prompt. How can I import files. mysql -hlocalhost -uroot -proot -P3306 --databases db1,db2<db1.sql,db2.sql I tried like this ...
1
vote
4answers
552 views

Wait until DOS command execution has finished - Java

I am trying to import a large amount of .dmp files in a MySQL DB and since there are more than 250 files that have to be imported I wrote an app to automate the execution of the 250+ DOS commands. The ...
-4
votes
2answers
5k views

Export dump file from MySql

I want to create a dump file of the a table in the database. So database--> king tablename --> castle So what I want to do is create a dump file.. and then the next part is to import it in my local ...
0
votes
1answer
365 views

MySql CSV import from MSSQL

I've got a CSV file exported by MSSQL. When I try to import it into MySql, PhpMyAdmin returns "Invalid column count on line 2316". I don't know why. Can you help me? heres the code around line 2316: ...
0
votes
2answers
2k views

How to dump data from one table and insert to another

I have two databases. I want to dump data from one table in 1st database and insert to another table with an another name in 2nd database. So I have DB1 that has tables tbl1 and tabl2, and DB2 that ...
0
votes
1answer
110 views

how to get dump of column in mysql>

I want to have dump of column like var_dump in php. For eg: select dump(col_name) from table_name o/p => Typ=96 Len=10: 113,119,101,114,116,121,32,32,32,32 but it says such function ...
1
vote
1answer
155 views

How can I escape NULLs on mysql in batch mode?

In order to dump and reload some data, I use the mysql client with a select query (-e 'SELECT ...') in batch mode (to be more specific, is very silent mode, '-ss') directing the intermediate result to ...

1 2