Search Results fnd_ts_mig_cmds
Overview
FND_TS_MIG_CMDS is a table owned by the APPLSYS schema within the FND – Application Object Library product of Oracle E-Business Suite. It stores the commands generated for migrating database objects from an old tablespace to a new tablespace. In effect, it functions as the execution ledger for tablespace migration operations: each row captures a discrete migration command targeted at a specific schema object, together with the metadata needed to track its generation, execution, and outcome. This makes the table central to space-management and storage-reorganization activities in EBS environments, where large numbers of tables and indexes must be relocated between tablespaces with minimal disruption.
The object is documented with a primary key, FND_TS_MIG_CMDS_PK, defined on the LINENO column, and a unique index, FND_TS_MIG_CMDS_U1, also on LINENO. From a Data Vault modeling perspective, the mined foreign-key structure classifies this table as standalone, suggesting a hub-like role keyed by the surrogate LINENO rather than a link or satellite that depends on external business keys.
Key Information Stored
The table contains 21 documented columns, of which the following are the most operationally significant:
- LINENO — the surrogate primary key and the column referenced by both FND_TS_MIG_CMDS_PK and the unique index FND_TS_MIG_CMDS_U1. It uniquely identifies each migration command row.
- MIGRATION_CMD — the generated DDL or DML statement (for example, an ALTER TABLE ... MOVE or ALTER INDEX ... REBUILD) that performs the actual move.
- MIGRATION_STATUS — the current lifecycle state of the command, indicating whether it is pending, executed, or failed.
- ERROR_TEXT — the diagnostic message captured when a command fails during execution.
- OWNER, OBJECT_NAME, OBJECT_TYPE, SUBOBJECT_TYPE — identify the database object targeted by the command, including the schema owner and the object or subobject type.
- OLD_TABLESPACE and NEW_TABLESPACE — the source and destination tablespaces for the migration.
- TOTAL_BLOCKS — the size of the object in blocks, used for progress estimation and workload planning.
- PARENT_OWNER, PARENT_OBJECT_NAME, PARENT_LINENO — establish the hierarchical relationship between parent objects and their dependent objects, such as a table and its indexes.
- PARTITIONED — flags whether the target object is partitioned, affecting how commands are generated.
- EXECUTION_MODE and INDEX_PARALLEL — control how the migration command is executed, including parallel degree for index operations.
- START_DATE, END_DATE, GENERATION_DATE, LAST_UPDATE_DATE — provide the auditing timestamps for command generation, execution start, completion, and row updates.
Common Use Cases and Queries
Typical usage centers on monitoring migration progress, diagnosing failures, and reporting on storage-reorganization activity. A common query lists failed commands for remediation:
SELECT LINENO, OWNER, OBJECT_NAME, MIGRATION_CMD, ERROR_TEXT FROM APPLSYS.FND_TS_MIG_CMDS WHERE MIGRATION_STATUS = 'FAILED';SELECT OBJECT_TYPE, COUNT(*) FROM APPLSYS.FND_TS_MIG_CMDS GROUP BY OBJECT_TYPE;— summarizes the object types included in a migration set.SELECT SUM(TOTAL_BLOCKS) FROM APPLSYS.FND_TS_MIG_CMDS WHERE MIGRATION_STATUS = 'PENDING';— estimates remaining workload.- Joining on PARENT_LINENO to reconstruct parent-child object hierarchies, enabling ordered execution of commands.
- Comparing START_DATE and END_DATE to derive elapsed execution time per command for performance reporting.
Related Objects
The documented relationship data classifies the table as standalone, so no foreign-key dependencies are specified in the ETRM metadata. Its principal related objects are therefore those that share the APPLSYS schema and participate in tablespace migration workflows, including the FND tablespace migration driver and logging objects. Practically, the most significant relationships are internal to the table itself:
- FND_TS_MIG_CMDS_PK — the primary key constraint on LINENO.
- FND_TS_MIG_CMDS_U1 — the unique index on LINENO.
- Self-referencing parent-child linkage — via PARENT_LINENO, PARENT_OWNER, and PARENT_OBJECT_NAME.
- Other FND Application Object Library tablespace management and concurrent program log tables that consume the generated commands.
-
Table: FND_TS_MIG_CMDS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_TS_MIG_CMDS, object_name:FND_TS_MIG_CMDS, status:VALID, product: FND - Application Object Library , description: This table contains the commands generated for migrating Objects from old tablesapce to new tablespace , implementation_dba_data: APPLSYS.FND_TS_MIG_CMDS ,
-
Table: FND_TS_MIG_CMDS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_TS_MIG_CMDS, object_name:FND_TS_MIG_CMDS, status:VALID, product: FND - Application Object Library , description: This table contains the commands generated for migrating Objects from old tablesapce to new tablespace , implementation_dba_data: APPLSYS.FND_TS_MIG_CMDS ,
-
APPS.FND_EXEC_MIG_CMDS SQL Statements
12.1.1
-
APPS.FND_EXEC_MIG_CMDS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FND_EXEC_MIG_CMDS
12.2.2
-
PACKAGE BODY: APPS.FND_EXEC_MIG_CMDS
12.1.1
-
SYNONYM: APPS.FND_TS_MIG_CMDS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_TS_MIG_CMDS, status:VALID,
-
SYNONYM: APPS.FND_TS_MIG_CMDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_TS_MIG_CMDS, status:VALID,
-
VIEW: APPLSYS.FND_TS_MIG_CMDS#
12.2.2
-
VIEW: APPLSYS.FND_TS_MIG_CMDS#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:FND_TS_MIG_CMDS#, status:VALID,
-
APPS.FND_GEN_MIG_CMDS SQL Statements
12.2.2
-
APPS.FND_GEN_MIG_CMDS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FND_EXEC_MIG_CMDS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_EXEC_MIG_CMDS, status:VALID,
-
PACKAGE BODY: APPS.FND_GEN_MIG_CMDS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_GEN_MIG_CMDS, status:VALID,
-
PACKAGE BODY: APPS.FND_EXEC_MIG_CMDS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_EXEC_MIG_CMDS, status:VALID,
-
TABLE: APPLSYS.FND_TS_MIG_CMDS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_TS_MIG_CMDS, object_name:FND_TS_MIG_CMDS, status:VALID,
-
PACKAGE BODY: APPS.FND_GEN_MIG_CMDS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_GEN_MIG_CMDS, status:VALID,
-
TABLE: APPLSYS.FND_TS_MIG_CMDS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_TS_MIG_CMDS, object_name:FND_TS_MIG_CMDS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.FND_GEN_MIG_CMDS
12.1.1
-
PACKAGE BODY: APPS.FND_GEN_MIG_CMDS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.FND_GEN_MIG_CMDS dependencies on FND_TS_MIG_CMDS
12.2.2
-
APPS.FND_GEN_MIG_CMDS dependencies on FND_TS_MIG_CMDS
12.1.1
-
APPS.FND_EXEC_MIG_CMDS dependencies on FND_TS_MIG_CMDS
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.FND_EXEC_MIG_CMDS dependencies on FND_TS_MIG_CMDS
12.1.1
-
APPS.FND_EXEC_MIG_CMDS dependencies on DBMS_AQ
12.1.1
-
APPS.FND_EXEC_MIG_CMDS dependencies on DBMS_AQ
12.2.2
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,