发布时间:2014-06-26 16:52:30
1、建立表时指定约束。create table test(id number(10) constraint test_nn not null,name varchar2(20),company varchar2(20));2、表建立好后再指定约束。drop table test;create table test(id number(10),name varchar2(20),company varchar2(20));alter table test modify(id constraint test_nn not null);3、.........【阅读全文】
发布时间:2014-06-15 22:41:56
启动Oracle报错:[oracle@oracle11g ~]$ sqlplus "/as sysdba"SQL*Plus: Release 11.2.0.3.0 Production on Sun Jun 15 22:13:54 2014Copyright (c) 1982, 2011, Oracle. All rights reserved.Connected to an idle instance.SQL> startupORACLE instance started.Total System Global Area 1603411968 bytes.........【阅读全文】
发布时间:2014-05-20 09:47:14
OracleEnterpriseManager(Oracle企业管理器,简称OEM)是通过一组Oracle程序,为管理分布式环境提供了管理服务。OEM包括了一组DBA工具,一个repository,以及一个图形化显示的控制台。OEM控制台与每一个服务器上的智能化**(IntelligentAgent)相对应,oracle11g中OEM默认是关闭的状态,下面步骤如何启动OEM工具。1.查看OEM状.........【阅读全文】
发布时间:2014-05-19 15:51:32
O7_DICTIONARY_ACCESSIBILITY参数控制对数据字典的访问.设置为true,如果用户被授予了如select any table等any table权限,用户即使不是dba或sysdba用户也可以访问数据字典.在9i及以上版本默认为false,8i及以前版本默认为true.如果设置为true就可能会带来安全上的一些问题.这也就为什么O7_DICTIONARY_ACCESSIBILITY 设置为fal.........【阅读全文】