Home » Other » General » PLSQL with Java (merged) (Oracle 10G R2 on UNIX)
PLSQL with Java (merged) [message #468889] Mon, 02 August 2010 07:22 Go to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

Hi Guys

Can any of you help in answering simple questions please?

This is a daily batch job which captures end of the day changes from a set of Oracle 10G "Source" tables in (.exp) file and another overnight batch job will read from (.exp) files and Insert into Oracle 10G "Target" Tables. The .exp files are created by Oracle 10G Data Pump utilities.

In future we will be migrating Target to Teradata. All the tables will be migrated. No change in table names or structure.

The plan of action to write the later bit of PLSQL (which read from .exp files and loads it into Target tables) into Java so that the programe can be re-used on teradata.

Questions

1) Can Java read the contents with in .exp files and insert into Oracle tables?

2) Can Teradata read the contents with in .exp files and insert into Teradata tables?

3) Will we be achieving any benefit if we execute DDL (Insert) using Java rather than PLSQL. Obvious one being Platform independent.


Please note that there is no transformation of data in flight between .exp to Target tables.

Please advice

Kris
Re: PLSQL with Java (merged) [message #468895 is a reply to message #468889] Mon, 02 August 2010 07:58 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
1) No.
2) No.
3) Insert is DML not DDL. Question is not clear.

Regards
Michel
Re: PLSQL with Java (merged) [message #468902 is a reply to message #468889] Mon, 02 August 2010 08:12 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

Dear Michel

Thanks for your reply

When Oracle 10G Data pump (Using external tables concept) is reading an CDC (Change data capture) from a set of "source" tables in an Overnight batch job, can it store output in any other file format (i.e. as a .txt file) rather than .exp file?

Can Java procedural programs read the contents on .txt file and load data into Oracle 10G tables?

Just to summarise the situation 

Situation
==========
Source is Oracle 10G set of 500 tables, Target is also same 500 tables on Oracle 10G (Same structure as source with 2 additional feilds Batch_ID and Load_Time_Stamp).


Task
====
Transfer changed data from source and populate target.

Solution offered
================
2 Part solution

Part (1): Oracle PLSQL Extracts data using Oracle Data pump + external tables, from source and dumps changed data in .exp file

Part (2): Oracle PLSQL, reads data from .exp file and populated target.

Problem
=======
Need to create a code that will work on Teradata (i.e. Platform independent) because in near future, Target will be migrated from Oracle 10G to Teradata after 12 months.

Solution being considered
=========================
Data pump can still extract data from source but use Java rather than PLSQL to load the target

Question: Is the proposed solution is not practical then what could be the alternatives please?

Thanks

Kris





Re: PLSQL with Java (merged) [message #468905 is a reply to message #468902] Mon, 02 August 2010 08:16 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
can it store output in any other file format (i.e. as a .txt file) rather than .exp file?

No.

Quote:
Can Java procedural programs read the contents on .txt file and load data into Oracle 10G tables?

Sure.

Quote:
Question: Is the proposed solution is not practical then what could be the alternatives please?

Extract the data into 500 CSV files and then you can load it with SQL*Loader with Oracle and similar tools with Teradata.

Or you can buy Golden Gate to transfer the data changes in both cases.

Regards
Michel

[Updated on: Mon, 02 August 2010 08:20]

Report message to a moderator

Re: PLSQL with Java (merged) [message #468909 is a reply to message #468905] Mon, 02 August 2010 08:29 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

HI

I posted a reply, seems I lost it. Apologies for posting question again...Thanks for you answers

When data is exported using Oracle 10G Data Pump (along with external tables) is data dumped in (.exp or .dmp) file format?

Am I correct in assuming that this data can never be read by Java?

Is there a utility to convert .exp or .dmp file into such a format that it could then be read by Java and inserted into Oracle please?
Re: PLSQL with Java (merged) [message #468919 is a reply to message #468909] Mon, 02 August 2010 08:46 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
When data is exported using Oracle 10G Data Pump (along with external tables) is data dumped in (.exp or .dmp) file format?

It is in inernal format specific to DataPump, extension is meaningless for Oracle you can put the one you want (even .txt if you prefer).

Quote:
Am I correct in assuming that this data can never be read by Java?

As it is a binary file format, you can read it but you cannot understand it.

Quote:
Is there a utility to convert .exp or .dmp file into such a format that it could then be read by Java and inserted into Oracle please?

No. Do it at the source and generate CSV files as I previously said.

Regards
Michel

Re: PLSQL with Java (merged) [message #468927 is a reply to message #468889] Mon, 02 August 2010 09:11 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

Hi

Fantastic support, I am really fond of this site and talent.

Can you please spare 10 mins answering few more questions please?

1) If there are 500 source tables and new rows are inserted in 200 source tables very day, then the creating a .dmp or .exp file using Oracle 10G Data pump with external tables will it create 200 individual files or 1 file (with all changed records for 200 tables)?

2) If 200 (.dmp or .exp) files are created (above using Oracle Data pump and external tables), then what is the proposed Oracle inbuilt utility to create (200 .csv) files as you mentioned? Can it be PLSQL?

3) Will the performance of PLSQL to extract overnight changed data from 200 tables be slower than Oracle Data pump? Any other disadvantages of using PLSQL to create 200 .csv files?

4) If data is extracted in .csv file then can Java read it? I can use SQL loader but please note I have to attach Batch IT and Load_Time_Stamp to every record loaded by SQL loader or Java is it possible?

5) Do you think when it is known that target will move to Teradata can there be other PLSQL or Java utilities to extract data? The project doesnot want to invest in new tools like Data guard golden gate etc....

6) Can Java extract data from source Oracle 10G tables and populate a .csv or .txt file and again can Java load data into Target Oracle 10G tables and later could be re-used to load data into Teradata?

Please advice

Kris
Re: PLSQL with Java (merged) [message #468933 is a reply to message #468927] Mon, 02 August 2010 09:37 Go to previous messageGo to next message
cookiemonster
Messages: 13917
Registered: September 2008
Location: Rainy Manchester
Senior Member
kris_kaza wrote on Mon, 02 August 2010 15:11

1) If there are 500 source tables and new rows are inserted in 200 source tables very day, then the creating a .dmp or .exp file using Oracle 10G Data pump with external tables will it create 200 individual files or 1 file (with all changed records for 200 tables)?

Datapump doesn't give changed records, it gives all records. Unless you can supply it with a query to identify changed records.
You'd get one file by default but you can change that.

kris_kaza wrote on Mon, 02 August 2010 15:11

2) If 200 (.dmp or .exp) files are created (above using Oracle Data pump and external tables), then what is the proposed Oracle inbuilt utility to create (200 .csv) files as you mentioned? Can it be PLSQL?

PL/SQL would be the obvious way.

kris_kaza wrote on Mon, 02 August 2010 15:11

3) Will the performance of PLSQL to extract overnight changed data from 200 tables be slower than Oracle Data pump? Any other disadvantages of using PLSQL to create 200 .csv files?

Probably, but if you can't use datapump that's a bit of a moot point.

kris_kaza wrote on Mon, 02 August 2010 15:11

4) If data is extracted in .csv file then can Java read it? I can use SQL loader but please note I have to attach Batch IT and Load_Time_Stamp to every record loaded by SQL loader or Java is it possible?

.csv is plain text, anything can read it but you will have to write code to do so or use sqlloader.

kris_kaza wrote on Mon, 02 August 2010 15:11

6) Can Java extract data from source Oracle 10G tables and populate a .csv or .txt file and again can Java load data into Target Oracle 10G tables and later could be re-used to load data into Teradata?

Of course, but again you'd have to code it.
Re: PLSQL with Java (merged) [message #469087 is a reply to message #468889] Tue, 03 August 2010 04:14 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

Dear Michel, Mr Cook

Thanks for your replies and support yesterday.

One of the venueswe are exploring as an alternative to Data Pump (since .bat or .dmp) file cannot be read from Java or Teradata is, XML output.

I have created a block of programme that can create SQL statements which will generate an XML script. The example is based on simple (EMP , DEPT table example).

DECLARE
XML_TABLE_STRING VARCHAR2(5000) := ' ';
XML_COLUMN_STRING VARCHAR2(5000) ;
CURSOR A1 IS 
SELECT DISTINCT TABLE_NAME 
FROM ALL_TAB_COLS 
WHERE OWNER = 'SYS' AND TRIM(TABLE_NAME) IN ('EMP','DEPT','BONUS','SALGRADE');
CURSOR B1 (A VARCHAR2) IS 
SELECT DISTINCT COLUMN_NAME 
FROM ALL_TAB_COLS 
WHERE TABLE_NAME =A;

BEGIN
FOR G1 IN A1
LOOP

XML_TABLE_STRING := 'SELECT ';

FOR H1 IN B1(G1.TABLE_NAME)
LOOP

XML_COLUMN_STRING := XML_COLUMN_STRING || 'XMLELEMENT ('||H1.COLUMN_NAME||','||H1.COLUMN_NAME||'), ';

END LOOP;

XML_COLUMN_STRING := SUBSTR(XML_COLUMN_STRING, 1, LENGTH(XML_COLUMN_STRING) - 2);

XML_TABLE_STRING := XML_TABLE_STRING || ' '|| XML_COLUMN_STRING ||' FROM '|| G1.TABLE_NAME ||';';
 
DBMS_OUTPUT.PUT_LINE (XML_TABLE_STRING );

XML_COLUMN_STRING := ' ';
XML_TABLE_STRING:= ' ';

END LOOP;
END;

The PLSQL block above will generate an SQL Script.

Quick questions

1) When I execute the script generated above (few more modifications needed) and it generates a single XML output, (i.e. XML output that data details of data for all 4 tables Emp, Dept, Bonus, Salgrade)

Can PLSQL read this single XML file (with data from 4 tables) and load data into these 4 tables?


Please advise

Kris




CM: added code tags, please do so yourself next time.

[Updated on: Tue, 03 August 2010 10:22] by Moderator

Report message to a moderator

Re: PLSQL with Java (merged) [message #469088 is a reply to message #469087] Tue, 03 August 2010 04:21 Go to previous messageGo to next message
cookiemonster
Messages: 13917
Registered: September 2008
Location: Rainy Manchester
Senior Member
Suggest you read up on xml in the documentation.
Oracle has xml integration but I suspect you'll need to have seperate xml files for each table - then you can treat the xml file as a table in a sql statement.
Otherwise you can read it as plain text, but obviously, again, you'd have to code that.

Oh - and have you really got tables in SYS?
If you have - move them, you should never put anything in sys.

Can you also please read the orafaq forum guide and in future follow its instructions on gow to format posts.
Re: PLSQL with Java (merged) [message #469163 is a reply to message #469087] Tue, 03 August 2010 10:30 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
1/ You learn to indent the code then a) it is more readable b) it is more understandable c) it is more maintanable

2/ Are you sure you get an XML data? For this is not XML:

SQL> DECLARE
  2  XML_TABLE_STRING VARCHAR2(5000) := ' ';
  3  XML_COLUMN_STRING VARCHAR2(5000) ;
  4  CURSOR A1 IS 
  5  SELECT DISTINCT TABLE_NAME 
  6  FROM ALL_TAB_COLS 
  7  WHERE OWNER = 'MICHEL' AND TRIM(TABLE_NAME) IN ('EMP','DEPT');
  8  CURSOR B1 (A VARCHAR2) IS 
  9  SELECT DISTINCT COLUMN_NAME 
 10  FROM ALL_TAB_COLS 
 11  WHERE TABLE_NAME =A;
 12  
 13  BEGIN
 14  FOR G1 IN A1
 15  LOOP
 16  
 17  XML_TABLE_STRING := 'SELECT ';
 18  
 19  FOR H1 IN B1(G1.TABLE_NAME)
 20  LOOP
 21  
 22  XML_COLUMN_STRING := XML_COLUMN_STRING || 'XMLELEMENT ('||H1.COLUMN_NAME||','||H1.COLUMN_NAME||'), ';
 23  
 24  END LOOP;
 25  
 26  XML_COLUMN_STRING := SUBSTR(XML_COLUMN_STRING, 1, LENGTH(XML_COLUMN_STRING) - 2);
 27  
 28  XML_TABLE_STRING := XML_TABLE_STRING || ' '|| XML_COLUMN_STRING ||' FROM '|| G1.TABLE_NAME ||';';
 29   
 30  DBMS_OUTPUT.PUT_LINE (XML_TABLE_STRING );
 31  
 32  XML_COLUMN_STRING := ' ';
 33  XML_TABLE_STRING:= ' ';
 34  
 35  END LOOP;
 36  END;
 37  /
SELECT  XMLELEMENT (DNAME,DNAME), XMLELEMENT (DEPTNO,DEPTNO), XMLELEMENT (LOC,LOC) FROM DEPT;
SELECT   XMLELEMENT (SAL,SAL), XMLELEMENT (HIREDATE,HIREDATE), XMLELEMENT (MGR,MGR), XMLELEMENT (COMM,COMM), XMLELEMENT
(DEPTNO,DEPTNO), XMLELEMENT (ENAME,ENAME), XMLELEMENT (JOB,JOB), XMLELEMENT (EMPNO,EMPNO) FROM EMP;

SQL> SELECT  XMLELEMENT (DNAME,DNAME), XMLELEMENT (DEPTNO,DEPTNO), XMLELEMENT (LOC,LOC) FROM DEPT;
XMLELEMENT(DNAME,DNAME)
---------------------------------------------------------------------------------------------------
XMLELEMENT(DEPTNO,DEPTNO)
---------------------------------------------------------------------------------------------------
XMLELEMENT(LOC,LOC)
---------------------------------------------------------------------------------------------------
<DNAME>ACCOUNTING</DNAME>
<DEPTNO>10</DEPTNO>
<LOC>NEW YORK</LOC>
<DNAME>RESEARCH</DNAME>
<DEPTNO>20</DEPTNO>
<LOC>DALLAS</LOC>
<DNAME>SALES</DNAME>
<DEPTNO>30</DEPTNO>
<LOC>CHICAGO</LOC>
<DNAME>OPERATIONS</DNAME>
<DEPTNO>40</DEPTNO>
<LOC>BOSTON</LOC>

But you can use (I limit the output to 3 rows to save space):
SQL> select dbms_xmlquery.getxml('select * from emp where rownum <= 3') from dual;
DBMS_XMLQUERY.GETXML('SELECT*FROMEMPWHEREROWNUM<=3')
--------------------------------------------------------------------------------------
<?xml version = '1.0'?>
<ROWSET>
   <ROW num="1">
      <EMPNO>7369</EMPNO>
      <ENAME>SMITH</ENAME>
      <JOB>CLERK</JOB>
      <MGR>7902</MGR>
      <HIREDATE>12/17/1980 0:0:0</HIREDATE>
      <SAL>800</SAL>
      <DEPTNO>20</DEPTNO>
   </ROW>
   <ROW num="2">
      <EMPNO>7499</EMPNO>
      <ENAME>ALLEN</ENAME>
      <JOB>SALESMAN</JOB>
      <MGR>7698</MGR>
      <HIREDATE>2/20/1981 0:0:0</HIREDATE>
      <SAL>1600</SAL>
      <COMM>300</COMM>
      <DEPTNO>30</DEPTNO>
   </ROW>
   <ROW num="3">
      <EMPNO>7521</EMPNO>
      <ENAME>WARD</ENAME>
      <JOB>SALESMAN</JOB>
      <MGR>7698</MGR>
      <HIREDATE>2/22/1981 0:0:0</HIREDATE>
      <SAL>1250</SAL>
      <COMM>500</COMM>
      <DEPTNO>30</DEPTNO>
   </ROW>
</ROWSET>

This is a real XML output of the table.

Regards
Michel


Re: PLSQL with Java (merged) [message #469305 is a reply to message #469163] Wed, 04 August 2010 03:58 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

Hi Michel

You have made life so easy. Thanks

Quick question when I run sql sttements

select dbms_xmlquery.getxml('select * from dept') from dual;

on SQL PLus interface, the result set it is displaying is

DBMS_XMLQUERY.GETXML('SELECT*FROMDEPT')
--------------------------------------------------------------------------------
<?xml version = '1.0'?>
<ROWSET>
<ROW num="1">
<DEPTNO>10</DEPTNO>

What settings would I need to display more of this result set? Please advise

Kris
Re: PLSQL with Java (merged) [message #469337 is a reply to message #469305] Wed, 04 August 2010 04:55 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
set LONG 100000

Regards
Michel
Re: PLSQL with Java (merged) [message #472849 is a reply to message #469163] Tue, 24 August 2010 04:25 Go to previous messageGo to next message
kris_kaza
Messages: 11
Registered: August 2010
Location: UK
Junior Member

HI Micheal

Thanks for the communication earlier where in you have suggested a query to extract information in XML format....

select dbms_xmlquery.getxml('select * from <Table Name>' ) from dual;

Will this work for CLOB Objects? Can the query extract CLOB Information because Line size is limited to 32767 characters in SQL. What could be the alternative?

Please advise

Kris
Re: PLSQL with Java (merged) [message #472890 is a reply to message #472849] Tue, 24 August 2010 10:22 Go to previous message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
Will this work for CLOB Objects?

Why don't you try it?

Quote:
Can the query extract CLOB Information because Line size is limited to 32767 characters in SQL.

I don't know which line size you are talking about but you can return a CLOB (of any size) from SQL.

SQL> select length(col) from tt;
LENGTH(COL)
-----------
      50000

SQL> select dbms_xmlquery.getxml('select col from tt') from dual;
DBMS_XMLQUERY.GETXML('SELECTCOLFROMTT')
------------------------------------------------------------------------------------------------------------------------
<?xml version = '1.0'?>
<ROWSET>
   <ROW num="1">
      <COL>&lt;TABLE id=&quot;tabelaTec1&quot;&gt; &lt;THEAD&gt; &lt;TR&gt; &lt;TD&gt; &lt;DIV&gt;Dionièki fondovi - Equ
ity funds&lt;/DIV&gt; &lt;DIV&gt;Proširena teèajnica&lt;/DIV&gt; &lt;DIV&gt;Grafièki prikaz&lt;/DIV&gt;&lt;/TD&gt;&lt;/T
R&gt; &lt;TR&gt; &lt;TH&gt; Fond&lt;/TH&gt; &lt;TH&gt; &lt;/TH&gt; &lt;TH&gt; &lt;/TH&gt; &lt;TH&gt; &lt;/TH&gt; &lt;TH&
gt;Datum&lt;/TH&gt; &lt;TH&gt;Vrijednost&lt;/TH&gt; &lt;TH&gt;Val.&lt;/TH&gt; &lt;TH&gt;Promj. %&lt;/TH&gt; &lt;TH&gt;'1
0 %&lt;/TH&gt; &lt;TH&gt;3mj %&lt;/TH&gt; &lt;TH&gt;1g %&lt;/TH&gt; &lt;TH&gt;Info&lt;/TH&gt; &lt;TH&gt;Pristup&lt;/TH&g
t;&lt;/TR&gt;&lt;/THEAD&gt; &lt;TBODY&gt; &lt;TR&gt; &lt;TD&gt;KD Victoria&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&l
t;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;TD&gt;14,6417&lt;/TD&gt; &lt;TD&gt;kn&lt;/TD&gt; &lt;TD&
gt; &lt;DIV&gt;1,83&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;-3,88&lt;/TD&gt; &lt;TD&gt;-7,22&lt;/TD&gt; &lt;TD&gt;-5,94&lt;/TD&
gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;ST Global Equity&lt;/TD&gt; &lt;
TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;TD&gt;48,7616&lt;/TD&gt; &
lt;TD&gt;kn&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;-0,22&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;-9,21&lt;/TD&gt; &lt;TD&gt;-5,77&lt;
/TD&gt; &lt;TD&gt;-20,33&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;
HI-growth&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;T
D&gt;8,0705&lt;/TD&gt; &lt;TD&gt;€&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;0,31&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;-3,35&lt;/TD&g
t; &lt;TD&gt;-7,55&lt;/TD&gt; &lt;TD&gt;6,33&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR&gt; &
lt;TR&gt; &lt;TD&gt;ZB trend&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.0
7.&lt;/TD&gt; &lt;TD&gt;127,2600&lt;/TD&gt; &lt;TD&gt;€&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;0,79&lt;/DIV&gt;&lt;/TD&gt; &lt
;TD&gt;4,59&lt;/TD&gt; &lt;TD&gt;-3,83&lt;/TD&gt; &lt;TD&gt;18,22&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;Pristup &lt
;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;KD Prvi izbor &lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt
;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;TD&gt;11,9794&lt;/TD&gt; &lt;TD&gt;kn&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;0,86
&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;4,01&lt;/TD&gt; &lt;TD&gt;-3,13&lt;/TD&gt; &lt;TD&gt;6,14&lt;/TD&gt; &lt;TD&gt;&lt;/TD
&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;Raiffeisen World&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt
;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;TD&gt;97,7200&lt;/TD&gt; &lt;TD&gt;€&lt;/TD&gt;
 &lt;TD&gt; &lt;DIV&gt;0,56&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;1,42&lt;/TD&gt; &lt;TD&gt;-6,43&lt;/TD&gt; &lt;TD&gt;10,58&
lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;FONT&gt;Pristup&lt;/FONT&gt; &lt;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;
ZB euroaktiv&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &l
t;TD&gt;100,8200&lt;/TD&gt; &lt;TD&gt;€&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;0,38&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;-0,52&lt;
/TD&gt; &lt;TD&gt;-4,99&lt;/TD&gt; &lt;TD&gt;12,23&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR
&gt; &lt;TR&gt; &lt;TD&gt;FIMA Equity&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;T
D&gt;23.07.&lt;/TD&gt; &lt;TD&gt;79,1031&lt;/TD&gt; &lt;TD&gt;kn&lt;/TD&gt; &lt;TD&gt; &lt;DIV&gt;0,03&lt;/DIV&gt;&lt;/T
D&gt; &lt;TD&gt;-12,56&lt;/TD&gt; &lt;TD&gt;-11,56&lt;/TD&gt; &lt;TD&gt;-20,68&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&g
t;Pristup &lt;/TD&gt;&lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;ZB BRIC+&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &lt;TD&gt;&lt;/TD&gt; &l
t;TD&gt;&lt;/TD&gt; &lt;TD&gt;23.07.&lt;/TD&gt; &lt;TD&gt;97,6900&lt;/TD&gt; &lt;TD&gt;€&lt;/TD&gt; &lt;TD&gt; &lt;DIV&g
t;0,89&lt;/DIV&gt;&lt;/TD&gt; &lt;TD&gt;-2,31&lt;/TD&gt; &lt;TD&gt;-0,64&lt;/TD&gt; &lt;TD&gt;N/A&lt;/TD&gt; &lt;TD&gt;&
lt;/TD&gt; &lt;TD&gt;Pristup &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;#########################################
########################################################################################################################
########################################################################################################################
...<output sniped>...
########################################################################################################################
########################################################################################################################
########################################################################################################################
#############################################################################</COL>
   </ROW>
</ROWSET>

1 row selected.

Regards
Michel

[Updated on: Tue, 24 August 2010 10:25]

Report message to a moderator

Previous Topic: database creation
Next Topic: string
Goto Forum:
  


Current Time: Thu Mar 28 03:57:44 CDT 2024