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

Popular posts from this blog

python - Setting ctypes.Structure default values -

Ansible - ERROR! the field 'hosts' is required but was not set -

java - HTTP Status 500 - No data type for node: org.hibernate.hql.internal.ast.tree.IdentNode -