RE: Oracle/SQL Server on same box

2002-09-27 Thread Farnsworth, Dave
They can be on the same box but memory and CPU may be an issue since they both like hog each. Dave -Original Message- Sent: Friday, September 27, 2002 11:56 AM To: Multiple recipients of list ORACLE-L Can Oracle 8.1.7 and SQL Server 2000 be installed on the same box or will they

Re: Oracle/SQL Server on same box

2002-09-27 Thread Steve Perry
yes, but not recommended for busy systems. ok for sandbox though. - Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Friday, September 27, 2002 11:56 AM Can Oracle 8.1.7 and SQL Server 2000 be installed on the same box or will they conflict? --

RE: Oracle , SQL*Server Concurrent SELECT

2002-04-02 Thread VIVEK_SHARMA
Title: RE: Oracle , SQL*Server Concurrent SELECT Any Links , Docs on the Same ? -Original Message-From: Shripad Bharati [mailto:[EMAIL PROTECTED]]Sent: Tuesday, April 02, 2002 9:48 AMTo: VIVEK_SHARMASubject: RE: Oracle , SQL*Server Concurrent SELECT U can use Oracle's

RE: Oracle , SQL*Server Concurrent SELECT

2002-04-02 Thread Farnsworth, Dave
Title: RE: Oracle , SQL*Server Concurrent SELECT Metalink has some papers and docs on this. Also there is a book called "Oracle Distributed Systems" by Charles Dye. Also, when in doubt you can always RTFM. ;o) Dave -Original Message-From: VIVEK_SHARMA [mailto:[EMAIL

RE: Oracle - SQL Server

2001-10-03 Thread Guy Hammond
Also, I believe there is JDBC for MSSQL now - previous there was some sort of JDBC-ODBC bridging thing, or something like that. So you could probably use Java stored procedures in Oracle, maybe with a PL/SQL wrapper, and get at your MSSQL data like that via stored procedure calls. Hmm. g

RE: Oracle - SQL Server

2001-10-03 Thread Christopher Spence
What did you use for the generic connectivity? Merant? Do not criticize someone until you walked a mile in their shoes, that way when you criticize them, you are a mile a way and have their shoes. Christopher R. Spence Oracle DBA Phone: (978) 322-5744 Fax:(707) 885-2275 Fuelspot 73

RE: Oracle - SQL Server

2001-10-03 Thread Christopher Spence
Hmm, very interesting, that may be a good option. Do not criticize someone until you walked a mile in their shoes, that way when you criticize them, you are a mile a way and have their shoes. Christopher R. Spence Oracle DBA Phone: (978) 322-5744 Fax:(707) 885-2275 Fuelspot 73 Princeton

RE: Oracle - SQL Server

2001-10-03 Thread Loughmiller, Greg
Or , =gulp= , you could use ASP/COM type objects too. and use the infamous ODBC... greg -Original Message- Sent: Wednesday, October 03, 2001 9:15 AM To: Multiple recipients of list ORACLE-L Hmm, very interesting, that may be a good option. Do not criticize someone until you

RE: Oracle - SQL Server

2001-10-02 Thread Cale, Rick T (Richard)
Title: Oracle -> SQL Server I have not used it but Oracle Transparent Gateway can query against a SQL Server database. This is a very expensive product. Rick -Original Message-From: Christopher Spence [mailto:[EMAIL PROTECTED]]Sent: Tuesday, October 02, 2001 2:41 PMTo:

RE: Oracle - SQL Server

2001-10-02 Thread Yexley Robert D SSgt AFIT/SCA
Title: Oracle -> SQL Server The only thing that I can think of would be the Oracle Transparent Gateway for SQL Server. Although on the surface it appears to be a fairly complex tool, which means it may not be worth the effort over just going ahead and migrating. Just a thought. -::YEX::-

Re: Oracle - SQL Server

2001-10-02 Thread Paul Baumgartel
Sure, Oracle Transparent Gateway for SQL Server. --- Christopher Spence [EMAIL PROTECTED] wrote: I know there is a way in SQL server to query oracle tables, is there a way to do the reverse? I am looking at trying to create access from an Oracle DB to SQL Server data until we convert the

RE: Oracle - SQL Server

2001-10-02 Thread Gogala, Mladen
There was a transparent gateway for SQL server, but I dunno whether Oracle still maintains it or not. -Original Message- Sent: Tuesday, October 02, 2001 2:41 PM To: Multiple recipients of list ORACLE-L I know there is a way in SQL server to query oracle tables, is there a way to do

Re: Oracle - SQL Server

2001-10-02 Thread Jan Benjamins
Title: Oracle -> SQL Server Hi Look into hetereogenous services, at least i had it working on NT. I don't know if this worksfor Unix Jan Benjamins - Original Message - From: Christopher Spence To: Multiple recipients of list ORACLE-L Sent: Tuesday, October 02,

RE: Oracle - SQL Server

2001-10-02 Thread Gogala, Mladen
The white paper about the gateway to SQL server can be found at: http://technet.oracle.com/products/gateways/content.html http://technet.oracle.com/products/gateways/content.html -Original Message- Sent: Tuesday, October 02, 2001 2:41 PM To: Multiple recipients of list ORACLE-L I

Re: Oracle - SQL Server

2001-10-02 Thread satar naghshineh
Hi Christopher, It can be done, Usually from third party software companies. For example, Check out: http://www.datamirror.com/products/tserver/ Back in the day (1996), Oracle had a Mainframe Integration Technologies group that handled such problems. You might want to contact Oracle and see if

RE: Oracle - SQL Server

2001-10-02 Thread Christopher Spence
It is for something which won't have a huge budget as the data is moving over to Oracle eventually, but for now we want access to it. I was thinking about just building a java/perl replication engine for now. It isn't a lot of data. But if there was something pre-packaged it would be nicer. I

RE: Oracle - SQL Server

2001-10-02 Thread Christopher Spence
I was thinking that same thing as the easiest way as I know transparent isn't cheap and there probably isn't an easy way. I was going to use Perl/Java to make something if there isn't any other way like the OPENQUERY option in SQL Server to look at oracle tables. Do not criticize someone until

Re: Oracle - SQL Server

2001-10-02 Thread Jared . Still
Oh geez, here I go again. This is trivial with Perl, DBD::Oracle and DBD::ODBC. Whether it is useful to you depends on a number of things. * can you use an Oracl copy of the SQL server data? * does the data always need to be fresh? * how fresh? * how big is it? Since it's temporary, this may

RE: Oracle - SQL Server

2001-10-02 Thread satar naghshineh
Try to contact the Mainframe Integration Technologies group at Oracle and see what path that takes you. Also, have you tried to see if you can accomplish your goal by shooting the info from SQL server to a table in Oracle, then running a query against that table within Oracle? Did that make

RE: Oracle - SQL Server

2001-10-02 Thread Reardon, Bruce (CALBBAY)
Christopher, What OS is your Oracle DB on? If on NT and your version = 816 then you can use the heterogeneous services - for some more information see Metalink / doco: I found note 114820.1 helpful - QUICK START GUIDE: WIN NT - Generic Connectivity using ODBC Also note 109730.1 - How to setup

RE: Oracle - SQL Server

2001-10-02 Thread SUNILSHIVAPPA
Generic connectivity works fine, I have tried this. You can query MS SQL server tables, but if you want to execute packages/procedures of SQL server then you have to use Transparent Gateway for MS SQL server. This is a separate product by oracle. (you can get more details about this at