FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Import from oracle database
Posts: 1091
Joined: Thu Nov 17, 2005 11:08 AM
Import from oracle database
Posted: Sat Nov 28, 2009 04:14 PM

Hi,
I have to extract all data from an Oracle database.
The problem is that I don't know anything: table names, table structure, etc, etc
The question is:
How to obtain the list of tables present into the database?
Thanks in advance

Marco Boschi
info@marcoboschi.it
Posts: 3358
Joined: Fri Oct 07, 2005 08:20 PM
Re: Import from oracle database
Posted: Sat Nov 28, 2009 06:24 PM

Marco:

Pls follow this thread

viewtopic.php?f=3t=11902p=58854hilit=structure+table#p58854

Regards

&&&

SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: Import from oracle database
Posted: Sun Nov 29, 2009 02:43 AM

ADOX works as recommended above,

Another way is to use the SQL statment

SELECT OWNER, TABLE_NAME FROM ALL_TABLES.

Depending on the rights of the querying user, he gets a list of all Schemas ( as OWNER ) and all Tables within each schema, to which he has access

Regards



G. N. Rao.

Hyderabad, India
Posts: 1091
Joined: Thu Nov 17, 2005 11:08 AM
Re: Import from oracle database
Posted: Sun Nov 29, 2009 09:03 AM

nageswaragunupudi and Armando,
Thanks a lot

Next week I'll try
marco

Marco Boschi
info@marcoboschi.it

Continue the discussion