|
|
Question : copy mysql form one servef to another server
|
|
mysql -uahead -pt4239 AOL -e "INSERT INTO onhandcheck (procode, proname, onhand, timestamp ) SELECT Code, Name, OnHand,now() FROM prdmas WHERE OnHand != 0"
incase that i want to copy the code above but onhand check is stay on 192.168.0.82 and database name is AOl and prdmas is stay on database AOl but stay on 192.168.0.89 it can do or not
|
Answer : copy mysql form one servef to another server
|
|
i am interpreting your question as :
that AOL remains on 192.168.0.82 and the other database is on 192.168.0.89 and you want to run this query between two machines through a shell prompt then
this query cannot be run between two different machines.
if you use something like a php script or some other script then this can be achieved.
you can run a
SELECT Code, Name, OnHand, now() into outfile 'some/text/file.txt' from prdmas where OnHand !=0
(read http://dev.mysql.com/doc/refman/5.0/en/select.html and do a search for "outfile" in this page to understand better)
SYNTAX ___________________ SELECT a,b,a+b INTO OUTFILE '/tmp/result.txt' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' FROM test_table; _________________________
and then use that file to import it into the other machine with
load data infile
(read http://dev.mysql.com/doc/refman/5.0/en/load-data.html)
|
|
|
|
|