动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息

本月文章推荐
.Oracle9i中监视索引的使用(1).
.高速的导出/导入:Oracle Data P.
.学在oracle数据库中插入特殊符号.
.Oracle网格计算中文资料—网格计.
.Oracle 9i 在AIX 5L 上的安装、建.
.Oracle数据库中时间间隔型数据分.
.Oracle内存结构:SGA的区域信息.
.oracle与sqlserver相互操作.
.移动数据库和J2ME工具构建应用程.
.如何从SQLServer到Oracle实现服务.
.Oracle灾难防护的关键技术.
.Warp 工具和代码迷惑.
.Oracle数据库恢复管理器及特殊包.
.设置 XFree86 激活档 ( .xinitrc.
.Oracle常见错误代码的分析与解决.
.Oracle webserver中文介绍-第二.
.Java+Oracle应用开发的几个问题.
.数据库设计中的反规范技术探讨.
.Oracle中安全可靠的复制问题的说.
.在Oracle 10g中如何获得索引建议.

Oracle PL/SQL学习笔记(1)

发表日期:2008-2-9 |


1 SQL*Plus环境
--------------------------------------
show all 显示所有SQL*Plus的命令名字
list or l 显示缓冲区的内容
list 4 显示当前SQL命令的第4行,并把第4行作为当前行。
change or c 用新的内容替换原来在一行中第一次出现内容,例如:SQL>c/(...)/('analyst')/
input or i 增加一行或多行
append or a 在一行后追加内容
del 删除当前行 删除SQL缓冲区中的当前行
run 显示并运行SQL缓冲区中的命令
/ 运行SQL缓冲区中的命令
edit 把SQL缓冲区中的命令写到操作系统下的文本文件,
并调用操作系统提供的编辑器执行修改。
set linesize 80 设置行的大小为80个字符宽度
set pagesize 100 设置页的大小为100行
ttitle 'smaple ttitle' 设置页头标
BTitle 'smaple btitle' 设置页脚标
spool /home/zxin10/myresult.log 设置sqlplus的输出到文件中
spool off(out) 停止输出文件
column column_name format a18 wrap heading ’smaple-column-title’
格式化列输出,每列宽度18个字符,超过18个自动换行,列标题换成'column-title'
CLEAR COLUMNS 将所有列的显示属性设为缺省值.
2 异常exception
--------------------------------------
no_data_found
表示select没有查询到满足条件的数据行。
others
表示Oracle预定义错误范围之外的任何错误,Oracle用这个"others"捕捉所有 未知的错误。可以使用sqlcode函数,sqlerrm函数在错误处理模块中显示错误 代码和错误信息。而且,others处理必须是一个块的最后一个错误处理,否则, others处理的优先级比较高,权利比较大,它会捕捉所有错误,包括预定义的Oracle 错误和非预定义的Oracle错误。
too_many_rows
Oracle的隐式游标,一次只能检索一行数据,使用隐式游标时,异常处理机制假如检测 到游标返回的数据是多行数据,它就抛出too_many_rows类型的异常。
dup_val_on_index
在某个索引上,出现重复值。
value_error
在某个目标字段中,放入的数据长度或者数据范围,超出目标字段定义的长度或者范围 ,如,把'8613905180088'这个字符串插入userid字段中,而userid定义为varchar2(10), 就会出现这种异常。 Exception Raised when ...
Access_INTO_NULL
Your program attempts to assign values to the attributes of an uninitialized
(atomically null) object. CASE_NOT_FOUND
None of the choices in the WHEN clauses of a CASE statement is selected, and
there is no ELSE clause. COLLECTION_IS_NULL
Your program attempts to apply collection methods other than EXISTS to an
uninitialized (atomically null) nested table or varray, or the program attempts
to assign values to the elements of an uninitialized nested table or varray. CURSOR_ALREADY_OPEN
Your program attempts to open an already open cursor. A cursor must be closed
before it can be reopened. A cursor FOR loop automatically opens the cursor to
which it refers. So, your program cannot open that cursor inside the loop. DUP_VAL_ON_INDEX
Your program attempts to store duplicate values in a database column that is
constrained by a unique index. INVALID_CURSOR
Your program attempts an illegal cursor operation sUCh as closing an unopened cursor. INVALID_NUMBER
In a SQL statement, the conversion of a character string into a number fails

because the string does not represent a valid number. (In procedural statements,
VALUE_ERROR is raised.) This exception is also raised when the LIMIT-clause
eXPression in a bulk FETCH statement does not evaluate to a positive number. LOGIN_DENIED
Your program attempts to log on to Oracle with an invalid username and/or passWord. NO_DATA_FOUND
A SELECT INTO statement returns no rows, or your program references a deleted element
in a nested table or an uninitialized element in an index-by table. SQL aggregate
functions such as AVG and SUM always return a value or a null. So, a SELECT INTO
statement that calls an aggregate function never raises NO_DATA_FOUND. The FETCH
statement is expected to return no rows eventually, so when that happens, no
exception is raised. NOT_LOGGED_ON
Your program issues a database call without being connected to Oracle. PROGRAM_ERROR
PL/SQL has an internal problem. ROWTYPE_MISMATCH
The host cursor variable and PL/SQL cursor variable involved in an assignment have
incompatible return types. For example, when an open host cursor variable is passed
to a stored subprogram, the return types of the actual and formal parameters must
be compatible. SELF_IS_NULL
Your program attempts to call a MEMBER method on a null instance. That is, the
built-in parameter SELF (which is always the first parameter passed to a MEMBER
method) is null. STORAGE_ERROR
PL/SQL runs out of memory or memory has been corrupted. SUBs cript_BEYOND_COUNT
Your program references a nested table or varray element using an index number
larger than the number of elements in the collection. SUBs cript_OUTSIDE_LIMIT
Your program references a nested table or varray element using an index number
(-1 for example) that is outside the legal range. SYS_INVALID_ROWID
The conversion of a character string into a universal rowid fails because the
character string does not represent a valid rowid. TIMEOUT_ON_RESOURCE
A time-out occurs while Oracle is waiting for a resource. TOO_MANY_ROWS
A SELECT INTO statement returns more than one row. VALUE_ERROR
An arithmetic, conversion, truncation, or size-constraint error occurs. For example,
when your program selects a column value into a character variable, if the value is
longer than the declared length of the variable, PL/SQL aborts the assignment and raises
VALUE_ERROR. In procedural statements, VALUE_ERROR is raised if the conversion of a
character string into a number fails. (In SQL statements, INVALID_NUMBER is raised.) ZERO_DIVIDE
Your program attempts to divide a number by zero.

3 连接查询
----------------------------------------
假设两个表s1cardinf,s1prefer
s1cardinf内容:
allindex
1
2
3 s1prefer内容:
allindex
2
3
4 select a.allindex,b.allindex
from s1cardinf a , s1prefer b
where a.allindex = b.allindex ;
结果:
allindex,allindex
2 2
3 3 select a.allindex,b.allindex
from s1cardinf a , s1prefer b
where a.allindex (+) = b.allindex ;
结果:
allindex,allindex
2 2
3 3
null 4 select a.allindex,b.allindex
from s1cardinf a , s1prefer b
where a.allindex = b.allindex (+) ;
结果:
allindex,allindex
1 null
2 2
3 3

上一篇:什么是Oracle OTN? 人气:500
下一篇:Oracle数据库分区表操作方法 人气:453
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-9-6 Movie34电影搜索引擎 v3.0
2008-9-6 wap2.0仿帝国建站喜用 v2.0
2008-9-6 免费人才招聘网 宽屏版 v3.01
2008-9-6 喜喔喔视频采集程序 v1.0 beta
2008-9-6 ASP客户管理系统
2008-9-6 主流驿站中秋祝福程序
2008-9-6 php实现msn协议的类
2008-9-5 Coppermine Photo Gallery v1.4.
2008-9-5 清松网络日记本 v2.4
2008-8-23 Mini WinMount V0.4
2008-8-23 Vista优化大师3.11正式版
2008-8-23 Wine 1.13
2008-8-23 KlipFolio 5.0 Build 5899-80
2008-8-23 Windows Sysinternals Desktops
2008-8-23 OneTap Movies1.2破解版
2008-8-23 AnnotaterPDF阅读1.1.503 破解版
2008-8-23 SoundMeter分贝测量仪 v1.0汉化破
2008-8-23 iDrum音乐节拍1.0破解版
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | 广告代码 | Html转换js | js/vbs加密 | md5加密 | 进制转换
实用工具:汉字翻译拼音 | 符号对照表 | 个税计算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 国家代码与域名缩写 | 文字加密解密 | 健康查询 | 万年历 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵