linux oracle 网络安全 编程
发布时间:2013-01-08 21:49:12
1 ) 最重要的区别,存储的数据的重要性不同 【 sys 】 所有 oracle 的数据字典的基表和视图都存放在 sys 用户中,这些基表和视图对于 oracle 的运行是至关重要的,由数据库自己维护,任何用户都不能手动更改。 sys 用户拥有 dba , sysdba , sysoper 等角色或权限,是 oracle 权限最高的用户。 【 system 】 用户用于存放次一级的内部数据,如 oracle 的一些特性或工具的管理信息。 system 用户拥有普通 dba 角色权限。&nbs......【阅读全文】
发布时间:2012-12-30 01:15:40
SQL> create or replace procedure sp_pro7(goodsnum char) is 2 v_category goods.category%type; 3 begin 4 select category into v_category from goods where goodsid=goodsnum; 5 if v_category='家具' then 6 update goods set unitprice=unitprice-10......【阅读全文】
发布时间:2012-12-29 23:46:31
create or replace procedure sp_pro6(spname char) is --创建一个过程附带一个输入形参v_price goods.unitprice%type;--变量类型begin--执行部分select unitprice into v_price from goods where goodsname=spname;if v_price<5 then--条件语句update goods set unitprice=unitprice*1.1 where goodsname=spname;end if;end; exec sp_pro......【阅读全文】
发布时间:2012-12-20 14:36:21
不小心把表my_table中的数据全部删除了,现在要恢复数据。 1.select timestamp_to_scn(to_timestamp('2012-12-05 16:10:00', 'YYYY-MM-DD HH24:MI:SS')) from dual;(结果为10588775770) 2.create table my_table_bak as select * fr......【阅读全文】