Re: Connectiing mySQL db on Localhost to mySQL DB on Server

2002-07-10 Thread Terence

www.mysqlfront.de

- Original Message -
From: Thomas Edison Jr. [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, July 10, 2002 1:27 PM
Subject: Connectiing mySQL db on Localhost to mySQL DB on Server


Hi,

I would like to export Table Data which is on my
localhost mySQL Server, to a Table in mySQL on the
Internet Web Server. How can i do that? Basically it's
just moving mySQL Table Data from localhost to web
server on the internet! Is it possible? if so, how?

Thanks,
T. Edison Jr.



__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.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


-
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




Re: Connectiing mySQL db on Localhost to mySQL DB on Server

2002-07-10 Thread Egor Egorov

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




Connectiing mySQL db on Localhost to mySQL DB on Server

2002-07-09 Thread Thomas Edison Jr.

Hi,

I would like to export Table Data which is on my
localhost mySQL Server, to a Table in mySQL on the
Internet Web Server. How can i do that? Basically it's
just moving mySQL Table Data from localhost to web
server on the internet! Is it possible? if so, how?

Thanks,
T. Edison Jr.



__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.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