FedSQL can work on small dataset but it cannot run inDatabase so it failed for large dataset. For input: I used (just try to convert time only for an example) proc ds2; data; dcl time new_time having format time8.; method run(); set &inputdata.; new_tm=input(substr(char_datetime,1,2) !! ':' !! substr(char_datetime,4,2) !! ':' !! substr(char_datetime,7,2),time8.); end; enddata; run; quit; Here is the log: ERROR: Compilation error. ERROR: Parse encountered INPUT when expecting one of: identifier constant expression. ERROR: Line 30: Parse failed: new_tm= >>> input <<< (substr(
... View more