Unable to publish datastore. I have downloaded the scripts generated while tryin

Unable to publish datastore. I have downloaded the scripts generated while trying to verify a datastore and all the table names are lowercase and in quotes - for example
create table "country" (
"countryid" number(10,0) not null,
"countrycd" varchar2(255 char) not null,
"countryname" varchar2(255 char) not null,
primary key ("countryid")
);

I have downloaded the script and created the tables in the database as per enterprise standards eg-
create table COUNTRY (
countryid number(10,0) not null,
countrycd varchar2(255 char) not null,
countryname varchar2(255 char) not null,
primary key (countryid)
);
However Appian does not recognize this and does not allow me to Save and Publish the datastore. Any known workarounds?...

OriginalPostID-97285

OriginalPostID-97285

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data