vote up 0 vote down star

Hi,

I have an account in oracle database. I can connect it via jdbc in my java code.

When I access database from Oracle SQL Developer, under "Connections"->"Other Users", I can access to their tables (I have been assigned privilege for reading others tables).

My question is, how to access / retrieve data from others tables via jdbc?

flag

27% accept rate

1 Answer

vote up 3 vote down check

You need to prefix the table name with the schema name, which in Oracle is the same as the user name.

select * from some_other_user.their_table;

If having the user name hardcoded in the SQL statement is a problem, you could make that configurable on the Java side somehow or install a table alias (synonym) into your own schema on the Oracle side.

link|flag
thanks, it works. – janetsmith Jul 23 at 2:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.