oracle - Dynamic SQL - Check syntax and semantics -
with oracle dynamic sql 1 able execute string containing sql statement. e.g.
l_stmt := 'select count(*) tab1'; execute immediate l_stmt;
is possible not execute l_stmt
check syntax , semantics correct programmitically?
i think "solution" use dbms_sql.parse()
.
it not perfect best can get
Comments
Post a Comment