上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 132 下一页
摘要: Your settings are fine. The last step is to split the spool and select statements into another script, as follows: SET head OFF;SET feed OFF;SET trims 阅读全文
posted @ 2020-04-13 14:43 kakaisgood 阅读(151) 评论(0) 推荐(0)
摘要: If you do not have permission to create the directory object (and assuming that the directory object does not already exist), you'll need to send a re 阅读全文
posted @ 2020-04-13 11:45 kakaisgood 阅读(135) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/robinson_0612/article/details/17348067 a、使用UTL_FILE的主要步骤(使用directory方式) --先创建用于存放os文件的目录 scott@USBO> ho mkdir -p /u03/database/u 阅读全文
posted @ 2020-04-13 11:27 kakaisgood 阅读(372) 评论(0) 推荐(0)
摘要: 第三章PL/SQL 基础PL/SQL块结构 DECLARE BEGIN 必须 EXCEPTION END;必须 set serveroutput onBEGIN dbms_output.put_line('hello, everyone');END;/ 标量类型VARCHAR2/CHAR/NUMBE 阅读全文
posted @ 2020-04-13 10:37 kakaisgood 阅读(342) 评论(0) 推荐(0)
摘要: 游标 隐示游标 显示游标 - 静态游标 - 动态游标 (IS REF CURSOR / sys_refcursor) 阅读全文
posted @ 2020-04-10 18:31 kakaisgood 阅读(176) 评论(0) 推荐(0)
摘要: There is no difference between using a type declared as REF CURSOR and using SYS_REFCURSOR , because SYS_REFCURSOR is defined in the STANDARD package 阅读全文
posted @ 2020-04-10 18:29 kakaisgood 阅读(139) 评论(0) 推荐(0)
摘要: Oracle-cursor动态游标 语法 type 动态游标类型名 is ref cursor; 声明一个动态游标类型,紫色填写一样内容 游标名 动态游标类型; 声明一个动态游标类型的变量,这个变量就是动态游标类型的,也就是动态游标 open 游标名 for SQL语句; 打开游标,并且把SQL语句 阅读全文
posted @ 2020-04-10 18:25 kakaisgood 阅读(2473) 评论(0) 推荐(1)
摘要: https://blog.csdn.net/qq_36743482/article/details/79354036 1.1 cursor是什么cursor是光标,游标的意思。比如我们的鼠标的光标就是cursor。那么在数据库中cursor是什么呢?当运行DML(select,update,inse 阅读全文
posted @ 2020-04-10 18:21 kakaisgood 阅读(3618) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-04-10 16:51 kakaisgood 阅读(181) 评论(0) 推荐(0)
摘要: 例子 IF THEN ELSIF THEN ELSE END IF CASE CASE第二种 阅读全文
posted @ 2020-04-10 16:49 kakaisgood 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 132 下一页