- 1、本文档共23页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Dynamic SQL动态SQL
Dynamic SQL What Will I Learn? Recall the stages through which all SQL statements pass Describe the reasons for using dynamic SQL to create a SQL statement List four PL/SQL statements supporting Native Dynamic SQL Describe the benefits of EXECUTE IMMEDIATE over DBMS_SQL for Dynamic SQL Why Learn It? In this lesson, you learn to construct and execute SQL statements dynamically—in other words, at run time using the Native Dynamic SQL statements in PL/SQL. Dynamically executing SQL and PL/SQL code extends the capabilities of PL/SQL beyond query and transactional operations. The lesson also compares Native Dynamic SQL to the DBMS_SQL package, which provides similar capabilities. Execution Flow of SQL All SQL statements in the database go through various stages: Parse: pre-execution “is this possible?” checks including syntax, object existence, privileges and so on Bind: getting the actual values of any variables referenced in the statement Execute: the statement is executed Fetch: results are returned to the user. Some stages may not be relevant for all statements—for example, the fetch phase is applicable to queries but not DML. Execution Flow of SQL in PL/SQL Subprograms When a SQL statement is included in a PL/SQL subprogram, the parse and bind phases are normally done at compile time, ie when the procedure, function or package body is CREATEd. What if the text of the SQL statement is not known when the procedure is created ? How could the Oracle server parse it ? It couldn’t. For example, suppose we want to DROP a table, but the user will enter the table name at execution time: Dynamic SQL We use dynamic SQL to create a SQL statement whose text is not completely known in advance. Dynamic SQL: ? Is constructed and stored as a character string within a subprogram. ? Is a SQL statement with varying column data, or different conditions with or without placeholders (bind variables) ? Enables data-definition, data-control, or session-control statements to be written a
您可能关注的文档
- Blood Pressure - One Body One Choice血压一体的一个选择.ppt
- BLOOD PRESSURE - The SC EBS血压- SC EBS.ppt
- Bloodborne Virus Transmission from Healthcare Worker to Patient血源性传播病毒的医护人员对病人.ppt
- Blue and Red Gradient - University of Wisconsin-Platteville蓝色和红色的梯度-威斯康星大学普拉特维尔.ppt
- Blue and Red Gradient - wickUP - HOME PAGE蓝色和红色的梯度wickup -首页.ppt
- BlueEyes Human-Operator Monitoring Systemblueeyes操作员监控系统.ppt
- Blue and Red Gradient蓝色和红色的梯度.ppt
- BND National Diploma IT Practitioners和国家文凭的IT从业人员.ppt
- Bohr ModelAtomic Spectra玻尔modelatomic谱.ppt
- Body Planes, Directions, and Cavities - Swcsus体层,方向,和型腔的swcsus.ppt
文档评论(0)