Connecting Tech Pros Worldwide Forums | Help | Site Map

mysqldump select query

Monty Loree
Guest
 
Posts: n/a
#1: Jun 27 '07
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
Guest
 
Posts: n/a
#2: Jun 29 '07

re: mysqldump select query


Monty Loree wrote:
Quote:
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 -- hamzee@sbcdeglobalspam.net
To reply to me directly, delete "despam".
Closed Thread