发布时间:2013-03-19 15:30:47
toad for oracle 11substr substrb instr instrb length lengthbinstr(string1,instring2[,start_position[,nth_appearance]])string1:被搜索的字符串string2:在string1里面寻找的字符串start_position:从string1中开始搜索的位置,这是个可选参数,默认为1。sting1中第一个字符的位置为1。如果这个参数为一个负数,.........【阅读全文】
发布时间:2013-03-15 15:05:19
1.无参数create or replace procedure insertTbisbegininsert into tb values('hongda',10);commit;endcall insertTb();2.有参数create or replace procedure insertTb2(country in varchar2 ,people in number)isbegininsert into tb values(country,people);commit;end insertTb2; call insertTb.........【阅读全文】
发布时间:2013-03-14 14:40:50
输入的参数不能同列名相同,编译不会出错,运行会报错。(procedure也有这个问题)create or replace function fun_num(country varchar2)return numberispeople number;beginselect people into people from tb where country=country;return people;exceptionwhen no_data_found thenreturn 0;when others t.........【阅读全文】
发布时间:2013-03-08 11:01:36
Oracle日期格式&操作日期格式: Year: yy two digits 两位年 显示值:07.........【阅读全文】
发布时间:2013-03-07 16:01:32
其它相关视图说明表2 数据字典视图说明视图名描述主要字段说明v$session查询会话的信息和锁的信息。 sid,serial#:表示会话信息。program:表示会话的应用程序信息。row_wait_obj#:表示等待的对象。和DBA_objects中的object_id相对应。v$session_wait查询等待的会话信息。 sid:表示持有锁的会话信息。Se.........【阅读全文】