Discussion:
mysqldump select query
(too old to reply)
Monty Loree
2007-06-27 22:06:27 UTC
Permalink
I am trying to do a dump for a 2 gig table...

I would like to dump the tables in portions so that it's a little
easier to work with...

Can somebody suggest a way to do a mysqldump table query

ie.. mysqldump -u user -p database="MYDATABASE" Query="SELECT * FROM
TABLE WHERE State='NV';"

I'm pretty sure this is possible... I have no idea how to do it.

Thanks in advance.
lark
2007-06-29 03:32:44 UTC
Permalink
Post by Monty Loree
I am trying to do a dump for a 2 gig table...
I would like to dump the tables in portions so that it's a little
easier to work with...
Can somebody suggest a way to do a mysqldump table query
ie.. mysqldump -u user -p database="MYDATABASE" Query="SELECT * FROM
TABLE WHERE State='NV';"
I'm pretty sure this is possible... I have no idea how to do it.
Thanks in advance.
the statement does not look right so i am not as sure as you are;
however, you can run something like this to backup table at a time:
mysqldump -p -u username databasename tablename > tablename.sql

once you run this, it'll ask you for your password, type it in and
voila, you get a text file of a backed up table.
--
lark -- ***@sbcdeglobalspam.net
To reply to me directly, delete "despam".
Loading...