Merge pull request #721 from hardyoyo/DS-2201-add-oracle-schema-advice

[DS-2201] added config advice to warn oracle users against using schema
This commit is contained in:
Hardy Pottinger
2014-11-06 11:02:22 -06:00
2 changed files with 10 additions and 0 deletions

View File

@@ -69,6 +69,11 @@ db.password=dspace
# Schema name - if your database contains multiple schemas, you can avoid problems with # Schema name - if your database contains multiple schemas, you can avoid problems with
# retrieving the definitions of duplicate object names by specifying # retrieving the definitions of duplicate object names by specifying
# the schema name here that is used for DSpace by uncommenting the following entry # the schema name here that is used for DSpace by uncommenting the following entry
# NOTE: this configuration option is for PostgreSQL only. For Oracle, schema is equivalent
# to user name. DSpace depends on the PostgreSQL understanding of schema. If you are using
# Oracle, just leave this this value blank.
db.schema = db.schema =
# Maximum number of DB connections in pool # Maximum number of DB connections in pool

View File

@@ -63,6 +63,11 @@ db.password = ${db.password}
# Schema name - if your database contains multiple schemas, you can avoid problems with # Schema name - if your database contains multiple schemas, you can avoid problems with
# retrieving the definitions of duplicate object names by specifying # retrieving the definitions of duplicate object names by specifying
# the schema name here that is used for DSpace by uncommenting the following entry # the schema name here that is used for DSpace by uncommenting the following entry
# NOTE: this configuration option is for PostgreSQL only. For Oracle, schema is equivalent
# to user name. DSpace depends on the PostgreSQL understanding of schema. If you are using
# Oracle, just leave this this value blank.
db.schema = ${db.schema} db.schema = ${db.schema}
# Connection pool parameters # Connection pool parameters