| Author |
Connecting to Multiple Schemas
|
pownraj kasi
Greenhorn
Joined: Jul 19, 2006
Posts: 7
|
|
Hi,
I have a task to update records in multiple tables on multiple database.
Ex)
I need to update
1)Employee table in ASM database
2)Manager Table in ACD database.
My doubt is for each database i need to create seperate connection or is it possible to use same connection for multiple databases?
|
 |
Jan Cumps
Bartender
Joined: Dec 20, 2006
Posts: 2343
|
|
Hi, are these schemas stored in the same database?
If yes, then it is possible for most databases to create a database user that can access both schemas.
In that case, you can do with one connection. You will gave to put the schema name in front of the table name to make it work.
Example:
insert into ASM.Employee (....
insert into ACD.Manager (....
(note that you are confusing us a bit in your post: the title says: 'multiple schemas', the detail says 'multiple databases'.)
|
OCUP UML fundamental
ITIL foundation
|
 |
pownraj kasi
Greenhorn
Joined: Jul 19, 2006
Posts: 7
|
|
Thanks for your reply.
sorry.It is multiple schemas from same database.
but i don't have the permission to create an user for acessing both schemas.
in this case it is possible to use same connection?.
Thanks in advance
Pownraj
|
 |
 |
|
|
subject: Connecting to Multiple Schemas
|
|
|