日期:2014-05-16  浏览次数:20688 次

求高手解析oracle中存储过程的静态编译静态执行和静态编译动态执行
什么叫静态编译,静态执行?
什么叫静态编译,动态执行?
求详细解析

------解决方案--------------------
SQL code

--静态编译,静态执行
select table_name from user_tables where table_name='DUAL';
TABLE_NAME
------------------------------
DUAL
--静态编译,动态执行
select table_name from user_tables where table_name=&table_name;
--跳出弹出框,输入 'DUAL' 带引号的
TABLE_NAME
------------------------------
DUAL
我的异常网推荐解决方案:oracle存储过程,http://www.aiyiweb.com/oracle-develop/177537.html