Schema v/s Database [message #203102] |
Mon, 13 November 2006 22:20 |
Bijupm
Messages: 16 Registered: February 2006
|
Junior Member |
|
|
Hai,
I have an application,which is having 3 modules.
Each modules has database objects with large amount of data.
My question is which is the best option? Should i go for 3 Schema or 3 Databases.
Thanks in advance.
Regards,
Biju.
|
|
|
|
Re: Schema v/s Database [message #203116 is a reply to message #203114] |
Mon, 13 November 2006 23:22 |
Bijupm
Messages: 16 Registered: February 2006
|
Junior Member |
|
|
Pritika,
Can you please explain the reasons.
Data in first two databases will go to the third database (History) on a weekly and daily basis.
|
|
|
|
Re: Schema v/s Database [message #203135 is a reply to message #203132] |
Tue, 14 November 2006 00:50 |
pritika
Messages: 9 Registered: November 2006
|
Junior Member |
|
|
3 database means - 1) you will have to manage 3 different instances in terms normal administration and backups etc. 2) data transfer would require db links 3) advantage is each db has resource
3 schemas - 1) easier management 2) no db links required 3) resources are shared
|
|
|
Re: Schema v/s Database [message #203152 is a reply to message #203132] |
Tue, 14 November 2006 02:07 |
JRowbottom
Messages: 5933 Registered: June 2006 Location: Sunny North Yorkshire, ho...
|
Senior Member |
|
|
I'm with you on this one Littlefoot. Query parsing over DBLinks results in worse plans and slower queries in my experiance.
1 Db with 3 schemas in it will use less than 3 times the resources of 3 databases, and will be a lot less than 3 times the maintenance.
It will be easier and quicker to write cross application code.
|
|
|
|
|