易截截图软件、单文件、免安装、纯绿色、仅160KB

Oracle查看用户锁表信息

select p.spid,
       a.serial#,
       c.object_name,
       b.session_id,
       b.oracle_username,
       b.os_user_name
  from v$process       p,
          v$session       a,
          v$locked_object b,
          all_objects     c
 where p.addr = a.paddr
   and a.process = b.process
   and c.object_id = b.object_id


相关文档:

Two papers on Oracle 11g Security

Hey all,
Since there seems to be a fair bit of disinformation, and utter nonsense,
floating around since my talk at the Black Hat Federal security conference
the other day, I have decided to publish the following papers.
http://www.databasesecurity.com/HackingAurora.pdf
http://www.databasesec ......

ORACLE 数据库对象

ORACLE 数据库对象
——索引
 
q      索引是与表相关的一个可选结构
q      用以提高 SQL 语句执行的性能
q      减少磁盘I/O
q      使用 CREATE INDEX 语句创建索引
q   &n ......

ORACLE程序包

程序包
 
包主体/规范名字一样
包主体/规范中的对应参数必须类型及名字一样
只能使用强类型的REF游标
 
创建程序包规范
create or replace package my_pack
is
       procedure find_emp_proc(eno emp.empno%type);
       function fin ......

oracle PK问题

我列出我全部的做法:

table a 有id1, str1, str2, str3


开始的pk是id1, str1, str2
希望改成id1, str1, str3
--问题
小弟先有如下问题:

一个表原来的PK是 id1+str1+str2 列
先修改成id1+str1+str3列
而这三列现在当前数据库的数据有重复的情况, 小弟现在用sql:
ALTER table a a ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号