I am trying to open an Oracle table using FME through python but I seem to
be missing something. readSchema() keeps complaining:
'The tables which are to be used for translation must be specified'
This is the code:
import fmeobjects
reader = fmeobjects.FMEUniversalReader('ORACLE8i',False)
parameters = ['SERVER_TYPE','ORACLE8i'
,'USER_NAME','<username>'
,'PASSWORD','<password>'
,'WORKSPACE', 'LIVE'
,'TABLELIST','<schema>.<tablename>']
reader.open('<TNS_Name>',parameters)
schema = reader.readSchema()
Thank you for your time!
Sirko

