Thomas, Wednesday, July 10, 2002, 8:27:06 AM, you wrote: TEJ> I would like to export Table Data which is on my TEJ> localhost mySQL Server, to a Table in mySQL on the TEJ> Internet Web Server. How can i do that? Basically it's TEJ> just moving mySQL Table Data from localhost to web TEJ> server on the internet! Is it possible? if so, how?
mysqldump -hlocalhost -uuser_name -p database_name table_name | mysql -hremote_host_name -uuser_name -p database_name1 http://www.mysql.com/doc/m/y/mysqldump.html or you can make a dump file and then copy it on your remote server. Take a look also at SELECT INTO OUTFILE and LOAD DATA INFILE statements: http://www.mysql.com/doc/L/O/LOAD_DATA.html http://www.mysql.com/doc/S/E/SELECT.html -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.net http://www.ensita.net/ __ ___ ___ ____ __ / |/ /_ __/ __/ __ \/ / Egor Egorov / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.net <___/ www.mysql.com --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php