Good day...
We are trying to ALTER a Table during Execution time in an application... THE SQL Statement is defined as blow (We update the USERS database with structure changes)
String ls_SQL_statement
ls_SQL_statement = 'ALTER TABLE "efr_admin"."efr_contribution" ADD "benefit_received" numeric(10,2) DEFAULT NULL'
EXECUTE IMMEDIATE :ls_SQL_statement USING SQLCA;
But this error is generated after the EXECUTE
SQLSTATE = S1000
[Sybase][ODBC Driver][SQL Anywhere]Triggers and procedures not supported in runtime server
Any ideas?