Thanks Chandan. I found the table, the name of it was prefixed with the Package name as well. It looks like this: Package_name.Package_name_2::table_name.
The code I used was from the template provided out of the box and I kept it simple for my first test. Looks like this.
table.schemaName = "Staging";
table.tableType = COLUMNSTORE;
table.columns =
[
{name = "MY_COL1"; sqlType = VARCHAR; length = 200;}
];
I'll now try to find a way to not have it include the package in the table name. Any ideas?
Thanks,
Jeff.