Hi,
I am new to the world of SQL developer and have been trying to use some of the examples that were provided with the base installation. I am looking to add a prefix to a table name using transformation scripts.. I am able to add it but when I perform a ddl preview the table name is now surrounded in double quotes i.e. "Table Name". Is there some kind of append or concat method that I can leverage via the tableName or cname object?
//get column name
cname = column.getName();
prefix = "XXT_";
column.setName(prefix + cname.substring(count));
table.setDirty(true);