-
2008-06-17 09:45:18 / Oracle开发
操作步骤:1. 建立表:SQL> create table Table_11(2idINTEGER,3nameVARCHAR2(20)4);2.插入数据:insert into Table_11 values (1,'1');insert into Table_11 values (2,'2');insert into Table_11 values (3,'3');insert into Table_11 v
查看(193)
评论(1)
-
2008-04-18 09:05:31 / Oracle数据库管理
求大家帮忙看一个问题我的环境:windows2003+oracle10g但是奇怪的是,数据库运行正常(至少业务是正常的),数据库的基本状态也没有什么问题,请问是什么原因呢?应该如何解决呢?虽然数据库运行正常,但是总是感觉存在隐患。由于小弟不是初学乍练,所以请诸位大侠多多指点!
查看(153)
评论(0)
-
2008-04-11 14:37:11 / Oracle开发
create table tCmsCheckAdjustPersonArchives(dIntgEmployeeIDINTEGERnot null,dVch2CertificateNumVARCHAR2(20)not null,dVch2CheckAdjstProjGatherID VARCHAR2(200)not null,constraint PK_TCMSCHECKADJUSTPERSONARCH
查看(370)
评论(5)
-
2008-03-29 11:38:27 / Oracle开发
create table TABLE_13(DINTIDINTEGER not null,DVCH2NAME VARCHAR2(20))SQL> select * from table_13;DINTID DVCH2NAME--------------------------------------- --------------------1张三
查看(291)
评论(2)
-
2008-03-28 16:18:19 / Oracle开发
我想实现在一张表中搜到前10条数据(类似于sql server中的select top 10) ,在Oracle中如何实现!
查看(369)
评论(7)
-
2008-03-28 15:21:19 / Oracle入门与认证
我在整理数据库时,在PL/sql develop中发现原先测试时建立的存储过程"12",我想把它删除,结果出现了'ORA-04050: 过程, 函数或程序包名无效或缺失'的错误,希望大家能帮帮我!
查看(269)
评论(0)
-
2008-03-10 10:59:14 / Oracle开发
SQL> create table t4(2idintegernot null,3namevarchar2(20),4constraint pk_t4 primary key (id)5);Table createdSQL>SQL> create table t5(2idint
查看(651)
评论(18)
-
2008-03-07 10:19:51 / Oracle开发
SQL> create table t4 (id number,name char(5),certified char(5));Table createdSQL> create table t5 (id number,object number);Table createdSQL> insert into t4 values (1,'王五','0001');1 row insertedSQL>SQL> insert into t4 values (1,'王五','0002');1 row inserted
查看(375)
评论(8)
-
2008-03-05 17:02:06 / Oracle开发
SQL> create table t4 (id number,name char(5));Table createdSQL> create table t5 (id number,certified char(10));Table createdSQL> insert into t4 values (1,'王五');1 row insertedSQL> commit;Commit completeSQL> insert into t5 values (1,'0001');1 row inser
查看(544)
评论(15)
-
2008-01-11 10:51:40 / Oracle开发
1.create type phone_type is table of varchar2(20);2.create table employee(id number(4),name varchar2(10),sal number(6,2),phone phone_type) nestedtable phone STORE AS phone_table;3.insert into employee values (1,'SCOTT',800,phone_type('sdfawf','fasdfsd'));我想搜出1,'SCOTT',800,'sdfaw
查看(356)
评论(4)