-
2008-01-08 17:10:57 / 招聘求职商务信息
要求:熟悉数据库,能进行简单的开发工作熟悉UNIX环境(perl语言)公司地点:北京最好是刚毕业时间不长,可塑性,可培养性好msn:jlliuyi@hotmail.com
查看(280)
评论(3)
-
2008-01-04 08:53:36 / Oracle数据库管理
调用存储过程的游标返回值unix下的perl程序想调用存储过程的游标返回值,是不是要通过定义包来实现1:首先你需要创建一个包,并定义你返回的游标的类型、存储过程create or replace package TEST_PKG is-- Public type declarationstype cur_emp is REF CURSOR;procedure test_proc (v_empno in number, emps out cur_emp);end TEST_PKG;2:然后你再创建包体create or replace package body TEST_PKG isprocedure test_proc (v_empno in number, emps out cur_emp)asbeginopen
查看(352)
评论(6)
-
2008-01-04 08:53:03 / Oracle开发
调用存储过程的游标返回值unix下的perl程序想调用存储过程的游标返回值,是不是要通过定义包来实现1:首先你需要创建一个包,并定义你返回的游标的类型、存储过程create or replace package TEST_PKG is-- Public type declarationstype cur_emp is REF CURSOR;procedure test_proc (v_empno in number, emps out cur_emp);end TEST_PKG;2:然后你再创建包体create or replace package body TEST_PKG isprocedure test_proc (v_empno in number, emps out cur_emp)asbeginopen
查看(450)
评论(6)
-
2008-01-03 16:21:39 / Oracle开发
怎么实现多个字段的in和not in操作select count(*) from table1 where (uuid,relateduuid)not in(select uuid,relateduuid from table2)语法有问题只能这样写吗:select count(*) from table1 tmp,table2 cr wheretmp.uuid!=cr.uuid and tmp.relateduuid!=cr.relateduuid能用not in语句吗?select count(*) from table1 where (uuid,relateduuid)in(select uuid,relateduuid from table2)这样的写法也不行呀!应该怎么写?
查看(359)
评论(7)
-
2008-01-03 16:21:05 / Oracle数据库管理
怎么实现多个字段的in和not in操作select count(*) from table1 where (uuid,relateduuid)not in(select uuid,relateduuid from table2)语法有问题只能这样写吗:select count(*) from table1 tmp,table2 cr wheretmp.uuid!=cr.uuid and tmp.relateduuid!=cr.relateduuid能用not in语句吗?select count(*) from table1 where (uuid,relateduuid)in(select uuid,relateduuid from table2)这样的写法也不行呀!应该怎么写?
查看(208)
评论(1)
-
2008-01-02 18:43:41 / Oracle数据库管理
在数据库里用sql不知道如果改,所以在dbca里改,可是在数据库里查没有变化.以后重新启动过了?请问是怎么回事?用sql改能改SGA_MAX_SIZE吗?我用sql改可是提示出错很多参数都可以用sql该,不知道怎么回事!
查看(184)
评论(1)
-
2007-12-28 10:21:32 / Oracle数据库管理
ALTER TABLESPACE YOUR TABLESPACE COALESCE可以是空闲的表空间释放出来吗?自己测试了一下,效果不怎么明显如果想释放delete后的空间,是不是只能通过move tablespace或者truncate..或者create table as..来实现有没有通过空间整理的方式来实现?
查看(157)
评论(3)
-
2007-12-27 15:10:19 / Oracle数据库管理
机器的内存32G 其它硬件也很先进,可是配置成如下参数:logmnr_max_persistent_sessionsinteger1max_commit_propagation_delayinteger700max_dispatchersinteger5max_dump_file_sizestringUNLIMITEDmax_enabled_rolesinteger30max_rollback_segmentsinteger37max_shared_serversinteger
查看(150)
评论(4)
-
2007-12-27 08:33:52 / Oracle开发
SELECTdistinct trim(a.name)cell_name,trim(a.name)m_cell_name,trim(b.gsmcellid)n_cell_name,trim(adjbsc.relative_log_name)site_container,adjsite.rdn_instancesite_rdnInstanceFROM neighbourtable2 a,celltable2 b,entity adjcell,entity cell,entitysite,entity bsc,entity adjsite,entity adjbscwhere a.containerclass=b.oidclassand a.containerinstrite=b.oidinstriteand a.containerins
查看(245)
评论(3)
-
2007-12-26 14:24:56 / Oracle数据库管理
删除控制文件,然后手工创建,介质恢复后很多文件变成了这个样子,\ORACLE\ORA92\DATABASE\MISSING00002\ORACLE\ORA92\DATABASE\MISSING00003...应该是创建控制文件的时候指定的数据文件list没有指定全,打开数据库后,系统发现数据文件但是在控制文件中没有指定所以指定为missing请问怎么恢复成原来的.
查看(170)
评论(6)