[Home] [Help]
[Dependency Information]
| Object Name: | FND_DATABASES |
|---|---|
| Object Type: | TABLE |
| Owner: | APPLSYS |
| FND Design Data: | FND.FND_DATABASES
|
| Subobject Name: | |
| Status: | VALID |
The FND_DATABASES table tracks the databases employed by the eBusiness
suite. This table stores information about the database that is not
instance specific.
| Tablespace: | APPS_TS_SEED |
|---|---|
| PCT Free: | 10 |
| PCT Used: |
| Index | Type | Uniqueness | Tablespace | Column |
|---|---|---|---|---|
| FND_DATABASES_U2 | NORMAL | UNIQUE |
APPS_TS_SEED
|
DB_NAME
DB_DOMAIN
|
| FND_DATABASES_U1 | NORMAL | NONUNIQUE |
APPS_TS_SEED
|
DB_GUID
|
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| DB_GUID | RAW | (16) | Yes | Sys_GUID() generated unique identifier for the row. Necessary because db_name may change when cloned. |
| DB_NAME | VARCHAR2 | (8) | Yes | Database name. Value is the same as db_name from v$parameter. Combines with the db_domain to give the global database name (i.e. Global dababase name = |
| DB_DOMAIN | VARCHAR2 | (128) | Yes | Database domain. Value is the same as db_domain from v$parameter. Combines with the db_name to give the global database name (i.e. Global dababase name = |
| DEFAULT_TNS_ALIAS_GUID | RAW | (16) | Default TNS alias used for contacting this database. Key into fnd_tns_aliases. (Note: Using a GUID will make it easier to alter the alias name upon cloning.) Typically, this alias would point to a database service that will load balance connections across all instances. Note that there may be more than one TNS alias that can be used to contact a database. | |
| IS_RAC_DB | VARCHAR2 | (1) | Yes | is RAC DB (Y/N) |
| VERSION | VARCHAR2 | (40) | Yes | RDBMS version |
| CREATED_BY | NUMBER | Yes | Standard "who" column | |
| CREATION_DATE | DATE | Yes | Standard "who" column | |
| LAST_UPDATED_BY | NUMBER | Yes | Standard "who" column | |
| LAST_UPDATE_DATE | DATE | Yes | Standard "who" column | |
| LAST_UPDATE_LOGIN | NUMBER | Yes | Standard "who" column | |
| SYSTEM_GUID | RAW | (16) | Global unique ID for this Apps system. Will facilitate tracking multiple systems in a central repository, if ever needed. |
Cut, paste (and edit) the following text to query this object:
SELECT DB_GUID
, DB_NAME
, DB_DOMAIN
, DEFAULT_TNS_ALIAS_GUID
, IS_RAC_DB
, VERSION
, CREATED_BY
, CREATION_DATE
, LAST_UPDATED_BY
, LAST_UPDATE_DATE
, LAST_UPDATE_LOGIN
, SYSTEM_GUID
FROM APPLSYS.FND_DATABASES;
APPLSYS.FND_DATABASES does not reference any database object
APPLSYS.FND_DATABASES is referenced by following:
APPS
FND_DATABASES
|
|
|
|