- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Oracle存储过程总结(一、基本应用)(Summary of Oracle stored procedure (i. basic application))
Oracle存储过程总结(一、基本应用)(Summary of Oracle stored procedure (i. basic application)) Establish stored procedures or functions A stored procedure or function is a PL/SQL program in an ORACLE database that can be called directly or indirectly by the user. The main advantages of using stored procedures and functions are: 1. Effectiveness: in the client/server architecture, the client applies the requirement for SQL to the database server. As the number of users increases, the SQL request increases continuously, making the network quickly become a running bottleneck. Use stored procedures can make the running performance is a significant improvement, because of a call to the process of storage, which invokes the execution of multiple SQL statements in the server, thus reducing the network congestion. Reusability: a PL/SQL program is written only once and can be used everywhere. Portability: you can use stored procedures in any ORACLE database without considering platform issues. 4, maintainability: a stored procedure is used to complete a specific task, such as database trigger need to invoke the process are the same stored procedure, which can reduce the cost of software maintenance. I. stored procedures 1. Establish the syntax of stored procedures. CREATE [OR REPLACE] PROCEDURE name (parameter 1,... participate n)] IS [local variable declaration section] The BEGIN Executable part [exception handling section] The END; Note: the OR REPLACE option is to override this process when this stored procedure exists. The parameter part and the procedure definition are the same. Example: define a stored procedure to delete the student record specified by the student table in the students table. CREATE OR REPLACE PROCEDURE DELE (STUID VARCHAR2) IS The BEGIN The DELETE FROM STUDENTS WHERE STU_ID = STUID; The END; 2. Call the stored procedure Method: EXECUTE stored procedure name (parameter 1, parameter n); Note: the type of parameter 1 to the parameter n must be consistent with the type
您可能关注的文档
- 2010年台湾世界杯国际少林武术大赛规程(浙江)(Taiwan World Cup 2010 international shaolin wushu competition procedure (zhejiang)).doc
- 2010年市司法行政工作计划(2010 municipal judicial administrative work plan).doc
- 2010年春期《高层建筑施工》课程期末考试试题(The final exam of high-rise building construction in spring 2010).doc
- 2010年普通高等学校招生全国统一考试 语文 真题卷(湖北卷)(2010 national unified examination of students' national standardized test (hubei volume)).doc
- 2010护士资格考试专业实践题目(2010 nurse qualification examination professional practice title).doc
- 2010造价师技术与计量(超精华)4(2010 cost division technology and measurement (superessence) 4).doc
- 2010驾照理论考试模拟题(Test simulation of driver's license in 2010).doc
- 2010经济员铁路运输(2010 economic worker rail transport).doc
- 2011-2012学年度第一学期七年级期中考试试卷(The first semester of the 2011-2012 academic year).doc
- 2011《管理与法规》91道真题+答案(Management and regulation 91).doc
- Oracle小结(Oracle summary).doc
- NURBSmaya(NURBSmaya).doc
- Oracle操作数据(Oracle operational data).doc
- Oracle数据文件(Oracle data file).doc
- oracle知识点总结(Oracle knowledge point summary).doc
- oracle的存储过程格式(Oracle stored procedure format).doc
- Oracle语句整理(Oracle statement finishing).doc
- Oracle重建控制文件(Oracle rebuild control file).doc
- Origin坐标轴和坐标标注方法指南(Origin axis and coordinate labeling method guide).doc
- O型圈及其槽设计(O ring and slot design).doc
最近下载
- SG500MX-V31光伏并网逆变器故障介绍.ppt VIP
- [凉山]2024年四川凉山布拖县招聘“一村一幼”辅导员361人笔试历年典型考题及解题思路分析附带答案.docx VIP
- 塑料模具设计与制造(新) 单元1 壳件注射成型工艺规程编制 单元1-04壳件注射成型工艺规程编制任务工作单及评价表.doc VIP
- 2025年度职业教育科研课题申报书.pptx VIP
- 食用食叶草粉标准编制说明.pdf VIP
- 3MW风电机组常见故障(上海)精品课件.ppt VIP
- 必威体育精装版版八年级体育与健康教案(全册)(最全).doc VIP
- 2024二十届三中全会知识竞赛题库及答案.docx VIP
- 5MW风电机组常见故障的综合讲解.pptx VIP
- 2024宁南县教育和体育局招聘“一村一幼”辅导员历年考试试题及答案.docx VIP
文档评论(0)