RE: COBOL TO ORACLE

2003-10-08 Thread babette.turnerunderwood
: Subject: RE: COBOL TO ORACLE Sent

RE: COBOL TO ORACLE

2003-10-07 Thread babette.turnerunderwood
: Subject: RE: COBOL TO ORACLE Sent

RE: COBOL TO ORACLE

2003-10-07 Thread Thomas Day
: Subject: RE: COBOL TO ORACLE Sent by: ml-errors

RE: COBOL TO ORACLE

2003-10-01 Thread Thomas Day
: Subject: RE: COBOL TO ORACLE Sent

RE: COBOL TO ORACLE

2003-10-01 Thread Mladen Gogala
recipients of list ORACLE-L Subject: RE: COBOL TO ORACLE On Tue, 2003-09-30 at 16:19, Stephane Paquette wrote: Like Thomas Day said, Oracle is an rdbms and COBOL a programming language. COBOL *** WAS *** a programming language. Horse *** WAS *** basis of transport. You should have

Re: COBOL TO ORACLE

2003-10-01 Thread Tim Gorman
, this country would be in a right bloody mess. Rich Jesse, People's Front of Judea -Original Message- From: Mladen Gogala [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 4:15 PM To: Multiple recipients of list ORACLE-L Subject: RE: COBOL TO ORACLE On Tue, 2003-09-30 at 16

RE: COBOL TO ORACLE

2003-10-01 Thread babette.turnerunderwood
Then perhaps you can help me . . . We are suffering through a Pro*Cobol / Oracle on the mainframe implementation for a newly developed in house application. We have a mainframe with 1.7GB - 2GB REAL memory. 4 CPU machine - we have two logical CPUs in our LPAR We have 8 instances running (each

RE: COBOL TO ORACLE

2003-10-01 Thread Jesse, Rich
System/Database Administrator [EMAIL PROTECTED] Quad/Tech Inc, Sussex, WI USA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 2:10 PM To: Multiple recipients of list ORACLE-L Subject: RE: COBOL TO ORACLE

RE: COBOL TO ORACLE

2003-10-01 Thread Jay Hostetter
What OS are you using? I assume the COBOL app resides on the same box as the database? When performance is poor, can you see what the top processes are? As for the merits of COBOL, our COBOL apps hum along very nicely, processing millions of records a month. Also, I like having conversations

RE: COBOL TO ORACLE

2003-10-01 Thread Thomas Day
] @hrdc-drhc.gc.ca cc: Subject: RE: COBOL TO ORACLE Sent

Re: COBOL TO ORACLE

2003-09-30 Thread Thomas Day
Er ... No. COBOL is a programming language. Oracle is a relational database manager. The data used in a COBOL program can be stored in a variety of ways. It's even possilbe to have a COBOL program using data from an Oracle database. I'm not aware that Designer can translate COBOL file

RE: COBOL TO ORACLE

2003-09-30 Thread Karniotis, Stephen
You can also Execute SQL directly from Oracle using the precompilers - No need to export the data and use SQL Loader. Thank You Stephen P. Karniotis Technical Alliance Manager Compuware Corporation Direct: (313) 227-4350 Mobile: (248) 408-2918 Email: [EMAIL PROTECTED] Web:www.compuware.com

RE: COBOL TO ORACLE

2003-09-30 Thread Stephane Paquette
Like Thomas Day said, Oracle is an rdbms and COBOL a programming language. You can use Sql*Loader to load flat files into Oracle or use COBOL programs with embedded SQL, you'll need to use Oracle Pro*Cobol to precompile the COBOL source before compiling them. The last time I've used Designer it

Re: COBOL TO ORACLE

2003-09-30 Thread Mladen Gogala
Unfortunately, you have to rewrite it to LISP or Oberon first. On Tue, 2003-09-30 at 15:14, Muqthar Ahmed wrote: Hi, Is there a tool available to move data from COBOL to ORACLE directly? One way to do is get COBOL data on a flat file and then use SQL*Loader to insert into ORACLE tables.

RE: COBOL TO ORACLE

2003-09-30 Thread Mladen Gogala
On Tue, 2003-09-30 at 16:19, Stephane Paquette wrote: Like Thomas Day said, Oracle is an rdbms and COBOL a programming language. COBOL *** WAS *** a programming language. Horse *** WAS *** basis of transport. You should have used past tense, Stephane. I'm not really that partial when it comes

RE: COBOL TO ORACLE

2003-09-30 Thread Jesse, Rich
Gogala [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 4:15 PM To: Multiple recipients of list ORACLE-L Subject: RE: COBOL TO ORACLE On Tue, 2003-09-30 at 16:19, Stephane Paquette wrote: Like Thomas Day said, Oracle is an rdbms and COBOL a programming language. COBOL

RE: COBOL TO ORACLE

2003-09-30 Thread Stephane Paquette
Mladen, maybe it is the past for you but it is quite the present for me. We just decided between 2 packages (insurance industry): one in cobol using flat files on AS400 and the other one where all jobs are in cobol but the database is Oracle. We have choose the second one. So, in the next week,

RE: COBOL TO ORACLE

2003-09-30 Thread April Wells
Title: RE: COBOL TO ORACLE COBOL still lives and breathes, though, in many MANY shops (this one included). Just like the Mainframe, it won't go away easily or soon... I feel your pain, though, I lived through it too... and if I never have to figure out where an alter sends the program based

Re: COBOL TO ORACLE

2003-09-30 Thread Govindan K
Is there a tool available to move data from COBOL to ORACLE directly? One way to do is get COBOL data on a flat file and then use SQL*Loader to insert into ORACLE tables. If you are using SQL*Loader make sure to check the log after load. For larger loadsi would suggest direct load. The second

RE: COBOL to Oracle

2003-09-08 Thread Ruth Gramolini
There is an interface in the rdbms. Look for the precomp directory of your ORACLE installation. Check the docs for precompilers and cobol. HTH, Ruth -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of [EMAIL PROTECTED]Sent: Friday, September 05,

RE: COBOL to Oracle

2003-09-05 Thread Jacques Kilchoer
Do you mean that the COBOL code would be translated to PL/SQL packages, or that the COBOL I/O would be changed to SQL insert/update/select using Pro*COBOL instead of READ and WRITE? Or do you mean that the COBOL programs would be automagically transformed into an Oracle database? One datafile

Re: COBOL to Oracle

2003-09-05 Thread Stephane Faroult
[EMAIL PROTECTED] wrote: Hi List, Does anyone know of tools, or have had experience using tools, that will quickly convert COBOL code to Oracle. Any information you can provide would be greatly appreciated. Thanks in advance. Rick What do you mean by converting Cobol to Oracle ?

Re: COBOL to Oracle

2003-09-05 Thread GovindanK
I wonder how the code generator is going to take care of Multiple Record Types , Redefines clauses , Renames clause, GO to statements, Perform Thru , Declaratives? That would be interesting. GovindanK Hi List, Does anyone know of tools, or have had experience using tools, that will quickly