SAS to ORACLE prepare error: ORA-00904 -
`rsubmit; proc sql ; &c_oradb; create table output.want select * connection oracle (select * data.ref_codes lowcase(description) '%vac%'); disconnect oracle; quit;
`
error:
oracle prepare error: ora-00904: "lowcase": invalid identifier. sql statement:
i trying run code getting above error. understand variable names case sensitive while connecting oracle why isn't lowcase
function identified?
considering schema
"data" exists , has table/view/materialized view ref_codes
in it, has column called "description", statement should be:
(select * data.ref_codes lower(description) '%vac%');
cheers
Comments
Post a Comment