Hello,
no problem.
The best you can do is to create a database link on your "master".
Create the same user on the "slave" instance.
Here is an example:
create database link SLAVE_INSTANCE_NAME
connect to scott identified by tiger using 'SLAVE_INSTANCE_NAME'
SLAVE_INSTANCE_NAME = Instancename of the slave
After the link is created you can access all objects (that are granted to scott on the slave instance)
with @SLAVE_INSTANCE_NAME
For example:
SELECT * FROM test_tab@SLAVE_INSTANCE_NAME
will select the table test_tab on the slave.
CREATE TABLE test_123@test_tab and so on
Hope that helps ?
Best regards
Manfred Peter
Alligator Company Software GmbH
http://www.alligatorsql.com