Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using mysqldump to transfer a table from one database to another.

mysqldump -h host -u user -p password -e --single-transaction --no-create- info --default-character-set=utf8 --complete-insert --result-file=thisisaresult db table

I was wonder, however, if there is a way to allow you to change the name of the table you insert into? For example, I'd like this to insert into table_staging, or something like that. Is this possible, or am I going to have to just use sed?

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

I don't think is possible when dumping data because there may be FK references to the table you are changing.

If there are no FK references to the table you wish to change then it is possible to just hand edit the resulting dump file:

CREATE TABLE `old_table_name`

Becomes

CREATE TABLE `new_table_name`

My recommendation would be to dump the data, re-import it into your new database, then run the alters to rename your table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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