Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ODI 12c – How to modify LKM Create C$ Table to create column names in DOUBLE QUOTES

vikhilesh challaDec 22 2025
  1. Screenshot 2025-12-22 at 22.39.29.png

HI Team,

I am working with ODI 12c and using LKM SQL to Oracle (Recon)

I wanted to modify the LKM - Create C$(Work) table step so that all column names are created in DOUBLE QUOTES

CURRENT BEHAVIOR

During the Create work table step ,Odi generates SQL like this

CREATE TABLE C$_MY_TABLE

(COL1 varchar2(100),
COL2 Number,
COL3 date
);

Expected Behaviour

I want column names to be created with double quotes, like

CREATE TABLE C$MY_TABLE
(
“COL1” varchar2(100),
“COL2” number,
“COL3” date
)

i tried warapping [CX_COL_NAME] with double quotes ,but ODI still generates unquotes column names

Thanks in advance 🙏
ODI Vesion 12c

Comments
Post Details
Added on Dec 22 2025
0 comments
39 views