[Home] [Help]
[Dependency Information]
| Object Name: | FND_CONC_NT_PROCESSES |
|---|---|
| Object Type: | TABLE |
| Owner: | APPLSYS |
| FND Design Data: | FND.FND_CONC_NT_PROCESSES
|
| Subobject Name: | |
| Status: | VALID |
FND_CONC_NT_PROCESSES stores information about processes created by
the concurrent manager in the NT environment. Each row represents a
process which was created by the concurrent manager. The table should
never be updated manually.
| Tablespace: | APPS_TS_TX_DATA |
|---|---|
| PCT Free: | 10 |
| PCT Used: |
| Index | Type | Uniqueness | Tablespace | Column |
|---|---|---|---|---|
| FND_CONC_NT_PROCESSES_N1 | NORMAL | NONUNIQUE |
APPS_TS_TX_IDX
|
NODE_NAME
CHILD_PROCESS_ID
|
| Name | Datatype | Length | Mandatory | Comments |
|---|---|---|---|---|
| NODE_NAME | VARCHAR2 | (30) | Yes | Name of the node (computer on the network) on which the process is created. |
| CHILD_PROCESS_ID | VARCHAR2 | (9) | Yes | ID of the created process. |
| PARENT_PROCESS_ID | VARCHAR2 | (9) | Yes | ID of the creating (concurrent manager) process. |
| PARENT_THREAD_ID | VARCHAR2 | (9) | ID of the creating (concurrent manager) process main thread. Not currently used | |
| CHILD_THREAD_ID | VARCHAR2 | (9) | ID of the created process main thread. Not currently used. | |
| PARENT_EXE_NAME | VARCHAR2 | (64) | Name of the creating (concurrent manager) process. | |
| CHILD_EXE_NAME | VARCHAR2 | (64) | Name of the created process. | |
| PARENT_START_TIME | DATE | Time at which the creating (concurrent manager) process started. | ||
| CHILD_START_TIME | DATE | Time at which the created process started. |
Cut, paste (and edit) the following text to query this object:
SELECT NODE_NAME
, CHILD_PROCESS_ID
, PARENT_PROCESS_ID
, PARENT_THREAD_ID
, CHILD_THREAD_ID
, PARENT_EXE_NAME
, CHILD_EXE_NAME
, PARENT_START_TIME
, CHILD_START_TIME
FROM APPLSYS.FND_CONC_NT_PROCESSES;
APPLSYS.FND_CONC_NT_PROCESSES does not reference any database object
APPLSYS.FND_CONC_NT_PROCESSES is referenced by following:
APPLSYS
FND_CONC_NT_PROCESSES#
|
|
|
|