Re: Archive on remote Machine.

2003-02-19 Thread KH Chiu
. In fact, I have a project that has more complex remote backup requirement. I am working on it using C right now but not yet completed. Regards, Thanx for the suggestion. Is there any way i can Archive data to remote machine where MySQL is not installed. Anis KH Chiu [EMAIL PROTECTED

Re: Archive on remote Machine.

2003-02-19 Thread Charles Lewis
for the suggestion. Is there any way i can Archive data to remote machine where MySQL is not installed. Anis KH Chiu [EMAIL PROTECTED] Wednesday, February 19, 2003 8:46:46 AM You may try the following command mysqldump -u your user name -p password samp_db | mysql -h your remote

RE: Archive on remote Machine.

2003-02-19 Thread Chris Faust
]; [EMAIL PROTECTED] Subject: Archive on remote Machine. Hi, I use Select * into outfile filepath from table to archive the database. Is there any way to archive this into a different machine. (Not current machine) Yes Mapping to new machine and then giving path is an option. Any other

Archive on remote Machine.

2003-02-18 Thread Ahmed S K Anis
Hi, I use Select * into outfile filepath from table to archive the database. Is there any way to archive this into a different machine. (Not current machine) Yes Mapping to new machine and then giving path is an option. Any other opton.? Anis

re: Archive on remote Machine.

2003-02-18 Thread Victoria Reznichenko
On Tuesday 18 February 2003 12:51, Ahmed S K Anis wrote: I use Select * into outfile filepath from table to archive the database. Is there any way to archive this into a different machine. (Not current machine) Yes Mapping to new machine and then giving path is an option. Any other

Re: Archive on remote Machine.

2003-02-18 Thread KH Chiu
You may try the following command mysqldump -u your user name -p password samp_db | mysql -h your remote host name or address samp_db -u your user name -p your password Please also note that samp_db must be exist on your remote machine. Of course, you should sub. samp_db with your to be

Archive on remote Machine .

2003-02-18 Thread Ahmed S K Anis
I use Select * into outfile filepath from table to archive the database. Is there any way to archive this into a different machine. (Not current machine). Also Note the target machibe does not have MySQL installed. Yes Mapping to new machine and then giving path is an option. Any other