A new property is available to set unique name generation on/off. When unique names have been enabled for a mapping, all temporary names used by the collection and integration objects will be generated using unique names. This property is presented as a check-box in the Property Inspector for a deployment specification.

If an execution failed in ODI 11g then temporary tables would have been left around and cleaned up in the subsequent run. In ODI 12c, KM tasks can now have a cleanup-type task which is executed even after a failure in the main tasks. These cleanup tasks will be executed even on failure if the property ‘Remove Temporary Objects on Error’ is set.

If the agent was to crash and not be able to execute this task, then there is an ODI tool (OdiRemoveTemporaryObjects here) you can invoke to cleanup the tables – it supports date ranges and the like.
That’s all there is to it from the aspect of the mapping developer it’s much, much simpler and straightforward. You can now execute the same mapping concurrently or execute many mappings using the same resource concurrently without worrying about conflict.
2. Secondly as a Procedure or KM Developer…..
In the ODI Operator the executed code shows the actual name that is generated – you can also see the runtime code prior to execution (introduced in 11.1.1.7), for example below in the code type I selected ‘Pre-executed Code’ this lets you see the code about to be processed and you can also see the executed code (which is the default view).
References to the collection (C$) and integration (I$) names will be automatically made unique by using the odiRef APIs – these objects will have unique names whenever concurrency has been enabled for a particular mapping deployment specification. It’s also possible to use name uniqueness functions in procedures and your own KMs.
2.1 New uniqueness tags
You can also make your own temporary objects have unique names by explicitly including either %UNIQUE_STEP_TAG or %UNIQUE_SESSION_TAG in the name passed to calls to the odiRef APIs. Such names would always include the unique tag regardless of the concurrency setting.
- <?=odiRef.getObjectName(“L”, “%COL_PRFEMP%UNIQUE_STEP_TAG”, “D”)?>
- SCOTT.C$_EABH7QI1BR1EQI3M76PG9SIMBQQ
- <?=odiRef.getObjectName(“L”, “EMP%UNIQUE_STEP_TAG_AE”, “D”)?>
- SCOTT.EMPAO96Q2JEKO0FTHQP77TMSAIOSR_
- UNIQUE_STEP_TAG – Returns the unique value for the current step scope, e.g. 5rvmd8hOIy7OU2o1FhsF61 Note that this will be a different value for each loop-iteration when the step is in a loop.
- UNIQUE_SESSION_TAG – Returns the unique value for the current session scope, e.g. 6N38vXLrgjwUwT5MseHHY9
- IS_CONCURRENT – Returns info about the current mapping, will return 0 or 1 (only in % phase)
- GUID_SRC_SET – Returns the UUID for the current source set/execution unit (only in % phase)
2.2 Additional APIs
- <%=odiRef.getFormattedName(“%COL_PRFMY_TABLE%UNIQUE_STEP_TAG_AE”, “ORACLE”)%>
- <?=odiRef.getFormattedName(“%COL_PRFMY_TABLE%UNIQUE_STEP_TAG_AE”, “ORACLE”)?>
- C$_MY_TAB7wDiBe80vBog1auacS1xB_AE
- <?=odiRef.getFormattedName(“%COL_PRFMY_TABLE%UNIQUE_STEP_TAG.log”, “FILE”)?>
- C2_MY_TAB7wDiBe80vBog1auacS1xB.log
2.3 Name length generation
As part of name generation, the length of the generated name will be compared with the maximum length for the target technology and truncation may need to be applied. When a unique tag is included in the generated string it is important that uniqueness is not compromised by truncation of the unique tag. When a unique tag is NOT part of the generated name, the name will be truncated by removing characters from the end – this is the existing 11g algorithm. When a unique tag is included, the algorithm will first truncate the <postfix> and if necessary the <prefix>. It is recommended that users will ensure there is sufficient uniqueness in the <prefix> section to ensure uniqueness of the final resultant name.
SUMMARY
To summarize, ODI 12c make it much simpler to utilize mappings in concurrent cases and provides APIs for helping developing any procedures or custom knowledge modules in such a way they can be used in highly concurrent, parallel scenarios.
