in reply to Re^2: DBI and using Oracle desc
in thread DBI and using Oracle desc

$sth = $dbh->table_info(",,USER\$")
does not do what you might think it does.

Maybe you wanted to use the following?

$sth = $dbh->table_info('',undef,"USER")

Maybe, for a first try, leave all the restrictions out and see what ->table_info gives you.