Gossamer Forum
Home : General : Databases and SQL :

Backup Specific Table...

Quote Reply
Backup Specific Table...
Hi. I'm trying to figure out how to backup a specific table in a tabase. I have tried multiple ideas, including;

mysqldump -u****** -p**** --tables=lsql_Links LINKS > backup_file.sql

Does anyone have any examples of --tables being used? I can't find any useful site on Google. Even the official site doesn't have an example of it being used...just some tech jargon which went right over my head).

Any help is much appreciated :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Backup Specific Table... In reply to
Have you tried the following?

Code:
mysqldump -u****** -p**** LINKS lsql_Links > backup_file.sql

Basically using DBName Table
========================================
Buh Bye!

Cheers,
Me
Quote Reply
Re: [Stealth] Backup Specific Table... In reply to
Hi. I tried;

mysqldump -u**** -p*** LINKS lsql_Links > test.sql &

... but it just puts a dead value into test.sql.

Any ideas?

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!