Re: Mysql version of database link?

2009-12-07 Thread Johan De Meersman
nly need to run selects on data that's been inserted remotely, you might be better served by replicating the remote tables you need to your local server. On Mon, Dec 7, 2009 at 7:16 PM, Bryan Cantwell wrote: > Does anyone have a suggestion on how a database link (like in Oracle) could >

Re: Mysql version of database link?

2009-12-07 Thread Steve Edberg
At 12:16 PM -0600 12/7/09, Bryan Cantwell wrote: Does anyone have a suggestion on how a database link (like in Oracle) could be established between two Mysql databases on different servers? It would be awesome if I could write sql that will query both databases in one query... You are

Mysql version of database link?

2009-12-07 Thread Bryan Cantwell
Does anyone have a suggestion on how a database link (like in Oracle) could be established between two Mysql databases on different servers? It would be awesome if I could write sql that will query both databases in one query... -- MySQL General Mailing List For list archives: http

Re: create database link in MySQL

2005-09-26 Thread SGreen
"梁增辉" <[EMAIL PROTECTED]> wrote on 09/26/2005 09:24:11 AM: > mysql,您好! > > I can't find any information about - How to create database > link in MySQL. Can YOU help me please. > > 致 > 礼! > > > 梁增辉 > [EMAIL PROTECTE

Re: create database link in MySQL

2005-09-26 Thread Martijn Tonies
orum! http://www.databasedevelopmentforum.com > I can't find any information about - How to create database link in MySQL. Can YOU help me please. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

create database link in MySQL

2005-09-26 Thread 梁增辉
mysql,您好! I can't find any information about - How to create database link in MySQL. Can YOU help me please. 致 礼! 梁增辉 [EMAIL PROTECTED]   2005-09-26

create database link in MySQL

2005-09-26 Thread 梁增辉
mysql,您好! I can't find any information about - How to create database link in MySQL. Can YOU help me please. 致 礼! 梁增辉 [EMAIL PROTECTED]   2005-09-26

Re: database link

2005-09-20 Thread Ananda Kumar
t; > (SID_NAME = MySQL5) /* Your DSN */ > > ) > > > > Add the following to your tnsnames.ora file: > > > > MYSQL5 = > > (DESCRIPTION= > > (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)) > > (CONNECT_DATA=(SID=MYSQL5)) > > (HS=OK) > > )

Database replication between oracle->mysql (was RE: database link)

2005-09-19 Thread Burke, Dan
: database link You may want to think about doing this the opposite way around also, and look at pushing the data from Oracle in to MySQL. Oracle has something called "heterogeneous services", which allows you to define ODBC datasources as valid entries in the tnsnames.ora file. Then you co

Re: database link

2005-09-19 Thread Ananda Kumar
e: > > MYSQL5 = > (DESCRIPTION= > (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)) > (CONNECT_DATA=(SID=MYSQL5)) > (HS=OK) > ) > > Reload your Oracle listener (lsnrctl reload), and then connect to the > Oracle > database. To set the database link up: > &g

Re: database link

2005-09-19 Thread Ananda Kumar
e: > > MYSQL5 = > (DESCRIPTION= > (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)) > (CONNECT_DATA=(SID=MYSQL5)) > (HS=OK) > ) > > Reload your Oracle listener (lsnrctl reload), and then connect to the > Oracle > database. To set the database link up: > &g

RE: database link

2005-09-16 Thread Mark Leith
tl reload), and then connect to the Oracle database. To set the database link up: CREATE DATABASE LINK mysql5 CONNECT TO "user" identified by "password" using 'mysql5'; User and password should be a valid user within MySQL, that can connect from the Oracle host. You s

Re: database link

2005-09-15 Thread SGreen
espond to [EMAIL PROTECTED] To "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> cc Subject Re: database link Hi Green, Right now we are doing the same way. The current reporting db is on oracle, so we use a cronjob and the scripts connects to main db using database link and

Re: database link

2005-09-15 Thread SGreen
s. It > would drop the table and get the fresh data from oracle database. So > can this be done using database link. > > Regards > anandkl > > > > > On 9/15/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Ananda Kumar < [EMAIL PROTECTED]

RE: database link

2005-09-15 Thread Berman, Mikhail
AM To: mysql@lists.mysql.com Subject: database link Hi, How can i connect from MYSQL db to an oracle database. Do we need to create any database link or use some ODBC. Please help regards anandkl -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe

Re: database link

2005-09-15 Thread SGreen
Ananda Kumar <[EMAIL PROTECTED]> wrote on 09/15/2005 10:33:16 AM: > Hi, > How can i connect from MYSQL db to an oracle database. Do we need to create > any database link or use some ODBC. > Please help > regards > anandkl The only way to get one MySQL database server

database link

2005-09-15 Thread Ananda Kumar
Hi, How can i connect from MYSQL db to an oracle database. Do we need to create any database link or use some ODBC. Please help regards anandkl

Re: Mysql and Database Link

2003-01-21 Thread Stefan Hinz, iConnect \(Berlin\)
Frank, > Yep Jermey are right what he says - Anyone know about using Database link in Mysql??? This is not built in. You will have to do this within your application. You can also use some of the MySQL helper apps for this, like mysqldump in combination with mysql (the command line tool), l

Re: Mysql and Database Link

2003-01-21 Thread MySQL
Yep Jermey are right what he says - Anyone know about using Database link in Mysql??? Regards Frank - Original Message - From: "Jeremy Zawodny" <[EMAIL PROTECTED]> To: "Egor Egorov" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, January 2

Re: Mysql and Database Link

2003-01-20 Thread Jeremy Zawodny
On Mon, Jan 20, 2003 at 03:49:00PM +0200, Egor Egorov wrote: > On Monday 20 January 2003 06:36, MySQL wrote: > > > I'm woundering if Mysql can use Database link, like Oracle can??? > > > > Eg. If i have some tables at my labtop, and want to make the same table(

Mysql and Database Link

2003-01-19 Thread MySQL
Hi all, I'm woundering if Mysql can use Database link, like Oracle can??? Eg. If i have some tables at my labtop, and want to make the same table(s) at my server with this command: create table test as select * from test@database_link (This is how you do it on Oracle), but how do I do th