I am trying to add primary constraint on a SAS SPDS table.
Error i am receivig is - 1. ERROR: Engine SASSPDS does not support integrity constraint operations 2. ERROR: Requested function is not supported.
I am unable to proceed. Query i have used -
1.
PROC DATASETS LIB=libname;
MODIFY tablename;
IC CREATE PK_IDENTPRODUKT= primary key (IDENTPRODUKT);
QUIT;
**** and also tried 2.
proc sql;
alter table libname.tablename add constraint PK_IDENTPRODUKT primary key (IDENTPRODUKT);
quit;
Any suggestions.