发布时间:2013-03-25 17:59:04
1、startup open dbname 先执行“nomount”,然后执行“mount”,再打开包括Redo log文件在内的所有数据库文件, 这种方式下可访问数据库中的数据。 2、startup,等于以下三个命令 startup nomount alter database mount alter database open 3、startup restrict .........【阅读全文】
发布时间:2013-03-25 17:55:56
a、启动ORACLE系统 oracle>svrmgrl SVRMGR>connect internal SVRMGR>startup SVRMGR>quit b、关闭ORACLE系统 oracle>svrmgrl SVRMGR>connect internal SVRMGR>shutdown SVRMGR>quit 启动oracle9i数据库命令: $ sqlplus /nolog SQL*Plus: Release 9.2..........【阅读全文】
发布时间:2013-03-21 13:18:57
--1、用sys用户等陆的话:Sql代码 select text from dba_source where owner= 'lingfeng' and type = 'PROCEDURE'; oracle认证考试--2、用一般用户(要导出其下存储过程的用户):Sql代码 select text from user_source; spool off; oracle认证考试法三:(自己写存储过程导出)1..........【阅读全文】
发布时间: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.........【阅读全文】