oracle 11G<==>toad 9.5/9.6
http://blog.sina.com.cn/atto18
http://www.innovatedigital.com/DatabasesTuning/TOAD.shtml
products
http://www.oracle.com/technology/global/cn/software/products/database/index.html
download
http://download.oracle.com/otn/nt/oracle11g/win32_11gR1_database.zip
http://download.oracle.com/otn/linux/oracle11g/linux_11gR1_database.zip
http://download.oracle.com/otn/nt/oracle10g/10201/10201_database_win32.zip
sample_code
http://www.oracle.com/technology/global/cn/sample_code/index.html
方法文档
http://www.oracle.com/technology/global/cn/sample_code/tech/java/codesnippet/index.html
技术教程
http://www.oracle.com/technology/global/cn/sample_code/tutorials/index.html
体验在WINXP上安装ORACLE11g.pdf xunlei download it!
(从Oracle 10g开始需要固定ip地址,利用微软自带内环网卡作固定ip支持)
http://www.lupaworld.com/viewthread_31337.html
http://www.lupaworld.com/bbs/attachment.php?aid=6390
Oracle_FAQ.chm
http://techbbs.enet.com.cn/attachment.php?aid=1172
Oracle 中国
http://www.oracle.com/lang/cn/database/index.html
Oracle安装完成后的初始口令
默认帐号应该是sysdba
internal/oracle
sys/change_on_install
system/manager
scott/tiger
sysman/oem_temp
Id:sys as sysdba
Pwd:sys
Id:sys as sysoper
Pwd:sys
Oracle安装完成后的修改口令
internal/oracle sys/sys system/system scott/tiger sysman/orcl dbsnmp/orcl
自动重新安装,忘记密码解决方法:
开始----运行----打开
sqlplusw
用户名:sqlplus as sysdba
输入:ALTER USER DBSNMP ACCOUNT UNLOCK;
注:由于刚才解锁的用户名是DBSNMP,所以这里设置的用户名也是DBSNMP
Oracle 数据库 11g 中的 ASM 新特性
http://www.oracle.com/technology/global/cn/products/database/asm/index.html
http://www.oracle.com/technology/products/database/asm/pdf/11gr1%20asm%20new%20features%20wp%2005-2007.pdf
Oracle 11g 管理资料档案库已置于安全模式下, 在此模式下将对 Enterprise Manager 数据进行加密。加密密钥已放置在文件 E:\oracle\product\11.1.0\db_1\169.254.105.73_orcl\sysman\config\emkey.ora 中。请务必备份此文件, 因为如果此文件丢失, 则加密数据将不可用。
全局数据库名:orcl 系统表示符sid:orcl 服务器参数文件名:E:\oracle\product\11.1.0\db_1\database\spfileorcl.ora
查看数据库实例运行情况 :
http://localhost:1158/em [url=https://169.254.105.73:1158/em]https://169.254.105.73:1158/em[/url]
web方式登录iSQL*Plus
name:system
pwd:system name:sys pwd:sys 固定虚拟ip:192.168.116.126
Enterprise Manager Database Control URL - (orcl) :
https://Lindows-IBM-XP2:1158/em
http://localhost:5560/isqlplus
http://localhost:5560/isqlplus/dba
http://LindowsXP:5560/isqlplus
http://LindowsXP:5560/isqlplus/dba
Ultra Search URL:
http://localhost:5620/ultrasearch
Ultra Search 管理工具 URL:
http://localhost:5620/ultrasearch/admin
Enteprise Manager 10g Database Control URL:
http://localhost:5500/em
PL/SQL Developer V7.1.1.1339
name:system pwd:system
http://www.duote.com/soft/3156.html
http://www.allroundautomations.com/
解决Oracle.exe占用内存过大的问题
开始----运行---打开cmd
输入
net start 察看服务运行列表
net stop OracleServiceORCL 停止ORACLE服务
net start OracleServiceORCL 开始ORACLE服务
启动Oracle 10g sqlplus 图形界面:
开始---- 运行----sqlplusw
启动Oracle 10g sqlplus dos 界面:
开始---- 运行----sqlplus
解决ServerDB(UTF-8)与ClientDB(GBK)之间的字符集不统一的问题:
开始----运行---打开regedit 查找
HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraDb10g_home1
数值名称(N) NLS_LANG
数值数据(V) SIMPLIFIED CHINESE_CHINA.ZHS16GBK
oracle 10G 12154问题解决
http://blog.csdn.net/liuya1985liuya/archive/2007/09/25/1800188.aspx
Oracle 10 g .bat文件启动/关闭方法
net start oracle.bat
内容:
net start OracleOraDb10g_home1TNSListener
net start OracleServiceMYORACLE
net start OracleDBConsolemyoracle
net start OracleJobSchedulerMYORACLE
net start OracleOraDb10g_home1iSQL*Plus
net stop oracle.bat
内容:
net stop OracleOraDb10g_home1TNSListener
net stop OracleServiceMYORACLE
net stop OracleDBConsolemyoracle
net stop OracleJobSchedulerMYORACLE
net stop OracleOraDb10g_home1iSQL*Plus
Exception:
0RA-01034 : Oracle not available.
0RA-27101 : Shared memory realm does not exists.
表空间太小也可能造成数据库连不上,Oracle10g增加
SGA_TARGET ,
PGA_AGGREGATE_TARGET 语法对付表空间问题, 如果是Oracle8i运行sqlplus,用system登陆,然后键入:startup mount //启动数据库
Oracle 10g system && sysaux 姊妹表空间
system 数据库打开后,一定不能被offline,而sysaux表空间offline后则部分功能失效。
Oracle提供了缺省数据表空间的概念,即使用户不指定,Oracle也不会将用户数据存放在SYSTEM表空间,
Oracle还将一些无关紧要的系统数据分离到SYSAUX表空间,以使得SYSTEM表空间纯净化。。。。。。。
Oracle 11g 冷备份
开始----运行----sqlplus>>>>用户名:SQL>system as sysdba 密码:system
--查询数据文件位置
select name from v$datafile;
select file_name,status from dba_data_files;
E:\ORACLE\ORADATA\ORCL\SYSTEM01.DBF
E:\ORACLE\ORADATA\ORCL\SYSAUX01.DBF
E:\ORACLE\ORADATA\ORCL\UNDOTBS01.DBF
E:\ORACLE\ORADATA\ORCL\USERS01.DBF
E:\ORACLE\ORADATA\ORCL\EXAMPLE01.DBF
--查询控制文件位置
select * from v$controlfile;
select name from v$controlfile;
E:\ORACLE\ORADATA\ORCL\CONTROL01.CTL
E:\ORACLE\ORADATA\ORCL\CONTROL02.CTL
E:\ORACLE\ORADATA\ORCL\CONTROL03.CTL
--查询重做日志文件位置
select * from v$log;
select * from v$logfile;
select member from v$logfile order by group#;
E:\ORACLE\ORADATA\ORCL\REDO01.LOG
E:\ORACLE\ORADATA\ORCL\REDO02.LOG
E:\ORACLE\ORADATA\ORCL\REDO03.LOG
--关闭数据库进行物理备份
--SQL>shutdown immediate;
--拷贝刚查询的数据文件、控制文件、重做日志文件到其他地方以备用
--拷贝E:\oracle\product\11.1.0\db_1\database里所有文件到其它盘
--拷贝完成
--SQL>startup
--ok
--查询系统参数
select * from v$parameter;
select tablespace_name, count(*) from dba_free_space group by tablespace_name;
SELECT tablespace_name,count(*)chunks,max(bytes/1024/1024) max_chunk
FROM dba_free_space
GROUP BY tablespace_name;
--查询当前会话
SELECT sid,serial#,username,program,machine,status FROM v$session;
--查询表空间状态
--http://www.51cto.com/specbook/301/47525.htm
select * from dba_tablespaces;
select tablespace_name,status from dba_tablespaces;
Oracle数据库日常维护
http://my.donews.com/oracle/2006/08/18/oracle%e6%95%b0%e6%8d%ae%e5%ba%93%e6%97%a5%e5%b8%b8%e7%bb%b4%e6%8a%a4-dba/
在Oracle数据库运行期间,DBA应该对数据库的运行日志及表空间的使用情况进行监控,及早发现数据库中存在的问题。
使系统暂时不产生Redo log
方法一:
>sqlplus /nolog
sql>connect sys/***** as sysdba;
(*****为sys密码,安装时若没修改默认的是change_on_install)
sql>shutdown immediate
sql>startup mount
sql>alter database noarchivelog
sql>alter database open
Oracle 常用SQL查询列表
http://www.weixiuwang.com/Article/server/tech/200610/22256.html
Oracle Warehouse Builder 11g 第 1 版使用
http://www.oracle.com/technology/global/cn/obe/11gr1_owb/owb11g_update_getting_started_intro/lesson1/less1_start.htm
OCP DBA1学习笔记
http://bbs.chinaunix.net/thread-852976-1-1.html
[04/11] [Oracle管理]9I 笔记 (ZT)
http://lyt5664681.blog.163.com/blog/
新一篇: Oracle数据库的导出和导入
http://blog.csdn.net/gonghb/archive/2007/10/31/1859868.aspx
oracle管理SQL查询.doc
http://www.itpub.net/attachment.php?aid=531311
·Oracle财务软件(Oracle Financial)
·Oracle制造业软件(Oracle Manufacturing)
·Oracle人力资源软件(Oracle Human Resources)
·Oracle自动控制软件(Oracle Automotive)
·Oracle 商业交易系统(Oracle Exchange)