vote up 0 vote down star
1

Say I have a VIEW on my database, and I want to send a file to someone to create that views output as a real TABLE on their database.

mysqldump of course only exports the 'create view...' statement (well ok it includes the create table, but no data)

What I have done is simply duplicate the view as a real table and dump that. But for a big table its slow and wasteful. (create table tmptable select * from myview)

Short of creating a script that mimics the behaviour of mysqldump and does this, is there a better way?

Thanks!

flag
The view includes a spatial column, which I've had problems with in import using CSV files. :( – barryhunter Feb 12 at 14:06

2 Answers

vote up 0 vote down

One option would be to do a query into a CSV file and import that. To select into a CSV file:

From http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/

SELECT order_id,product_name,qty
FROM orders
INTO OUTFILE '/tmp/orders.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
link|flag
If you don't have access to the mysql server shell, this wouldn't work. Any other solutions? – Artem Russakovskii Nov 1 at 20:33
vote up 0 vote down

OK, so based on your CSV failure comment, start with Paul's answer. Make the following change to it:

 - FIELDS TERMINATED BY ','
 + FIELDS TERMINATED BY ',' ESCAPED BY '\'

When you're done with that, on the import side you'll do a "load data infile" and use the same terminated / enclosed / escaped statements.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.