数据库output什么意思

数据库output什么意思,第1张

英 [ˈaʊtpʊt] 美 [ˈaʊtˌpʊt]

n.输出;产量; 作品; [计]输出信号。

vt.输出网络

输出类型; 量;语言输出。

扩展资料

output的反义词:

input

英 [ˈɪnpʊt] 美 [ˈɪnˌpʊt]

n.

输入,投入;输入电路;<电>输入端;输入的数据

vt.

把…输入电脑;[自][电子] 输入;输入,给料

第三人称单数: inputs

复数: inputs

现在分词: inputting

过去式: input inputted

过去分词: input inputted

Oracle推荐在debug PL/SQL程序时使用该程序包,不推荐使用该包来做报表输出或其他格式化输出之用。

概述

DBMS_OUTPUT包主要用于调试PL/SQL程序,或者在SQL*PLUS命令中显示信息(displaying message)和报表,譬如我们可以写一个简单的匿名PL/SQL程序块,而该块出于某种目的使用DBMS_OUTPUT包来显示一些信息。

在该DBMS_OUTPUT包中存在2个存储过程,它们是PUT_LINE和PUT过程,使用这2个Procedure可以做到将信息存放到PL/SQL的Buffer中,以便其他的触发器、存储过程、程序包来读取。在独立的PL/SQL程序或匿名块中,我们还可以使用GET_LINES和GET这2个存储过程来将存放在PL/SQL Buffer中的信息输出(display)到屏幕。

DBMS_OUTPUT包子程序摘要 DISABLE存储过程 禁用消息输出 ENABLE 存储过程 启用消息输出 GET_LINE 存储过程 从buffer中获取单行信息 GET_LINES 存储过程 从buffer中获取信息数组 NEW_LINE 存储过程 终结有PUT过程所创建的一行 PUT 存储过程 将一行信息放到buffer中 PUT_LINE 存储过程 将部分行信息放到buffer中 注意目前PUT过程已废弃,因为遗留问题将被保留,但不在推荐使用。

DISABLE存储过程

该存储过程用以禁用对PUT, PUT_LINE, NEW_LINE, GET_LINE, and GET_LINES过程的调用,并会清理buffer中任何残存信息。

与之相反的是ENABLE存储过程,若在SQL*PLUS中使用SERVEROUTPUT选项则不需要调用该存储过程。

语法

DBMS_OUTPUT.DISABLE

编译器指示

pragma restrict_references(disable,WNDS,RNDS)

ENABLE存储过程

该存储过程用以启用对PUT, PUT_LINE, NEW_LINE, GET_LINE, and GET_LINES存储过程的调用。

语法

DBMS_OUTPUT.ENABLE (

buffer_size IN INTEGER DEFAULT 20000)

编译指示

pragma restrict_references(enable,WNDS,RNDS)

参量 buffer_size Buffer长度的上限,单位为bytes字节。将buffer_size设置为NULL即指定没有限制

使用注意事项

当在SQL*PLUS总使用 SET SERVEROUTPUT选项时没有必要使用该过程若有多次对ENABLE过程的调用,那么buffer_size以最后指定的为准。当用户没有指定buffer size为NULL时,该参量的上限为1,000,000字节,而下限为2,000一般建议buffer size设置为NULL,10g中默认值使用20000以便兼容老的数据库版本。

GET_LINE 存储过程

该过程用以从buffer中获取单行信息。

语法

DBMS_OUTPUT.GET_LINE (

line OUT VARCHAR2,

status OUT INTEGER)

参量 line 将返回buffer中的一行信息,但不包括最后的换行符。一般建议申明该参数为VARCHAR2(32767)类型,以避免出现ORA-06502: PL/SQL: numeric or value error: character string buffer too small”.错误 status 若调用成功则返回0,若buffer中没有更多行的信息则返回1

使用注意事项

可以选择是从buffer中获取单行还是多行的数组信息。使用GET_LINE过程可以获取单行信息。从性能考虑,应当减少调用次数,使用GET_LINES函数直接从buffer中返回一个多行的数组若在使用SQL*PLUS则可以设置SET SERVEROUTPUT选项控制是否直接输出到屏幕在调用GET_LINE或GET_LINES后,任何行信息在下一次的PUT, PUT_LINE, or NEW_LINE前没有被获取的都将被丢弃,以避免误会

GET_LINES 存储过程

该存储过程用以从Buffer中获取一个多行的的数组

语法

DBMS_OUTPUT.GET_LINES (

lines OUT CHARARR,

numlines IN OUT INTEGER)

DBMS_OUTPUT.GET_LINES (

lines OUT DBMSOUTPUT_LINESARRAY,

numlines IN OUT INTEGER)

参量 lines 返回Buffer中多行信息的数组。该数组中每行的最大长度为32767bytes。 numlines 想要获取行的数量。在成功获取多行信息后,该过程将返回实际获取的行数。若返回的数字小于要求的值时,说明buffer中没有更多行的信息了。

使用注意事项:

可以选择是从buffer中获取单行还是多行的数组信息。使用GET_LINE过程可以获取单行信息。从性能考虑,应当减少调用次数,使用GET_LINES函数直接从buffer中返回一个多行的数组若在使用SQL*PLUS则可以设置SET SERVEROUTPUT选项控制是否直接输出到屏幕在调用GET_LINE或GET_LINES后,任何行信息在下一次的PUT, PUT_LINE, or NEW_LINE前没有被获取的都将被丢弃,以避免误会

游标是SQL的一个内存工作区,由系统或用户以变量的形式定义。游标的作用就是用于临时存储从数据库中提取的数据块。Oracle数据库的Cursor类型包含三种: 静态游标:分为显式(explicit)游标和隐式(implicit)游标;REF游标:是一种引用类型,类似于指针。下面我们一一介绍它们的使用。

1.隐式游标

1)Select …INTO…语句,DML语句,使用隐式Cursor。此外,还有一种使用FOR LOOP的Implicit Cursor用法。

2)可以通过隐式Cusor的属性来了解 *** 作的状态和结果。Cursor的属性包含:

SQL%ROWCOUNT 整型代表DML语句成功执行的数据行数。

SQL%FOUND 布尔型值为TRUE代表插入、删除、更新或单行查询 *** 作成功。

SQL%NOTFOUND 布尔型与SQL%FOUND属性返回值相反。

SQL%ISOPEN 布尔型DML执行过程中为真,结束后为假。

3) 隐式Cursor由系统自动打开和关闭.

例如:

setserveroutputon

declare

begin

updateemployeessetemployee_name='Mike'whereemployee_id=1001

ifSQL%FOUNDthen

dbms_output.put_line('Nameisupdated')

else

dbms_output.put_line('Nameisnotupdated')

endif

end

/

setserveroutputon

declare

begin

fortableInfoin(select*fromuser_tables)loop

dbms_output.put_line(tableInfo.table_name)

endloop

exception

whenothersthen

dbms_output.put_line(sqlerrm)

end

/

2.显式游标

1) 显式Cursor的属性包含:

游标的属性 返回值类型 意义

%ROWCOUNT 整型 获得FETCH语句返回的数据行数

%FOUND 布尔型 最近的FETCH语句返回一行数据则为真,否则为假

%NOTFOUND 布尔型 与%FOUND属性返回值相反

%ISOPEN 布尔型 游标已经打开时值为真,否则为假

2) 对于显式游标的运用分为四个步骤:

a 定义游标---Cursor [Cursor Name] IS

b 打开游标---Open [Cursor Name]

c *** 作数据---Fetch [Cursor name]

d 关闭游标---Close [Cursor Name]

以下是几种常见显式Cursor用法。

<p>setserveroutputon

declare

cursorcurisselect*fromuser_tables

tableInfouser_tables%rowtype

begin

opencur

loop

fetchcurintotableInfo

exitwhencur%notfound

dbms_output.put_line(tableInfo.table_name)

endloop</p><p>exception

whenothersthen

dbms_output.put_line(sqlerrm)</p><p>closecur

end

/</p>

setserveroutputon

declare

cursorcurisselect*fromuser_tables

begin

fortableInfoincurloop

dbms_output.put_line(tableInfo.table_name)

endloop

exception

whenothersthen

dbms_output.put_line(sqlerrm)

end

/

还可以使用带参数open的cursor。

<p>setserveroutputon

declare

cursorcur(tblNamevarchar2)isselect*fromuser_constraintswheretable_name=tblName

tableInfouser_constraints%rowtype

begin

opencur('EMPLOYEES')

loop

fetchcurintotableInfo

exitwhencur%notfound

dbms_output.put_line(tableInfo.constraint_name)

endloop</p><p>exception

whenothersthen

dbms_output.put_line(sqlerrm)</p><p>closecur

end

/</p><p></p>

setserveroutputon

declare

cursorcur(tblNamevarchar2)isselect*fromuser_constraintswheretable_name=tblName

begin

fortableInfoincur('EMPLOYEES')loop

dbms_output.put_line(tableInfo.constraint_name)

endloop

exception

whenothersthen

dbms_output.put_line(sqlerrm)

end

/

可以使用WHERE CURRENT OF子句执行UPDATE或DELETE *** 作。

setserveroutputon

declare

cursorcurisselect*fromemployeesforupdate

begin

fortableInfoincurloop

updateemployeessetsalarysalary=salary*1.1wherecurrentofcur

endloop

commit

exception

whenothersthen

dbms_output.put_line(sqlerrm)

end

/

3.REF CURSOR(Cursor Variables)

REF Cursor在运行的时候才能确定游标使用的查询。利用REF CURSOR,可以在程序间传递结果集(一个程序里打开游标变量,在另外的程序里处理数据)。

也可以利用REF CURSOR实现BULK SQL,提高SQL性能。

REF CURSOR分两种,Strong REF CURSOR 和 Weak REF CURSOR。

Strong REF CURSOR:指定retrun type,CURSOR变量的类型必须和return type一致。

Weak REF CURSOR:不指定return type,能和任何类型的CURSOR变量匹配。

Ref cursor的使用:

1) Type [Cursor type name] is ref cursor

2) Open cursor for...

3) Fetch [Cursor name]

4) Close Cursor

例如:

Step1:

createorreplacepackageTESTas

typeemployees_refcursor_typeisrefcursorreturnemployees%rowtype

procedureemployees_loop(employees_curINemployees_refcursor_type)

endTEST

/

Step2:

createorreplacepackagebodyTESTas

procedureemployees_loop(employees_curINemployees_refcursor_type)is

empemployees%rowtype

begin

loop

fetchemployees_curintoemp

exitwhenemployees_cur%NOTFOUND

dbms_output.put_line(emp.employee_id)

endloop

endemployees_loop

endTEST

/

Step3:

setserveroutputon

declare

empRefCurTEST.employees_refcursor_type

begin

foriin10..20loop

dbms_output.put_line('DepartmentID='||i)

openempRefCurforselect*fromemployeeswheredepartment_id=i

TEST.employees_loop(empRefCur)

endloop

exception

whenothersthen

dbms_output.put_line(sqlerrm)

closeempRefCur

end

/

4.BULK SQL

使用FORALL和BULK COLLECT子句。利用BULK SQL可以减少PLSQL Engine和SQL Engine之间的通信开销,提高性能。

1. To speed up INSERT, UPDATE, and DELETE statements, enclose the SQL statement within a PL/SQL FORALL statement instead of a loop construct. 加速INSERT, UPDATE, DELETE语句的执行,也就是用FORALL语句来替代循环语句。

2. To speed up SELECT statements, include the BULK COLLECT INTO clause in the SELECT statement instead of using INTO. 加速SELECT,用BULK COLLECT INTO 来替代INTO。

SQL>createtableemployees_tmpasselectfirst_name,last_name,salaryfromemployeeswhere0=1

setserveroutputon

declare

cursoremployees_cur(depIdemployees.department_id%type)isselectfirst_name,last_name,salaryfromemployeeswheredepartment_id=depId

typeemployee_table_typeistableofemployees_cur%rowtypeindexbypls_integer

employee_tableemployee_table_type

begin

openemployees_cur(100)

fetchemployees_curbulkcollectintoemployee_table

closeemployees_cur

foriin1..employee_table.countloop

dbms_output.put_line(employee_table(i).first_name||''||employee_table(i).last_name||','||employee_table(i).salary)

endloop

foralliinemployee_table.first..employee_table.last

insertintoemployees_tmpvalues(employee_table(i).first_name,employee_table(i).last_name,employee_table(i).salary)

commit

end

/


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9919913.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存