- 浏览: 76173 次
- 性别:
- 来自: 苏州
最新评论
With Oracle Database XE in production, it is even easier to install Oracle on Ubuntu. There is now an apt-get repository up on oss.oracle.com for XE. Just add:
deb http://oss.oracle.com/debian unstable main non-free
to /etc/apt/sources.list and then:
# useradd -m oracle
# passwd oracle
# wget http://oss.oracle.com/el4/RPM-GPG-KEY-oracle ; -O- | sudo apt-key add -
# apt-get update
# apt-get install oracle-xe
(Note: You will need to 'sudo' or have 'root' privileges to install XE.)
if all of above was finished then:
# /etc/init.d/oracle_x configure
and add
# .bash_profile
# Get the aliases and functions
if [-f ~/.bashrc]; then
.~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$ORACLE_HOME/bin
unset USERNAME
export ORACLE_SID=XE
export ORACLE_BASE=/usr/lib/oracle
export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
export PATH
to /home/oracle/.bash_profile and add :
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
ORACLE_SID=XE
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
TNS_ADMIN=/usr/lib/oracle
to /etc/environment and add :$ORACLE_HOME/bin to PATH with /etc/environment
at last restart the server of ORACLE
# /etc/init.d/oracle_x restart
Catch-all disclaimer: These steps worked for me on my configuration; they might not work on yours.
I'm new guy,this is my first install oracle on LINUX OS.If any problems please let me know.
deb http://oss.oracle.com/debian unstable main non-free
to /etc/apt/sources.list and then:
# useradd -m oracle
# passwd oracle
# wget http://oss.oracle.com/el4/RPM-GPG-KEY-oracle ; -O- | sudo apt-key add -
# apt-get update
# apt-get install oracle-xe
(Note: You will need to 'sudo' or have 'root' privileges to install XE.)
if all of above was finished then:
# /etc/init.d/oracle_x configure
and add
# .bash_profile
# Get the aliases and functions
if [-f ~/.bashrc]; then
.~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$ORACLE_HOME/bin
unset USERNAME
export ORACLE_SID=XE
export ORACLE_BASE=/usr/lib/oracle
export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
export PATH
to /home/oracle/.bash_profile and add :
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
ORACLE_SID=XE
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
TNS_ADMIN=/usr/lib/oracle
to /etc/environment and add :$ORACLE_HOME/bin to PATH with /etc/environment
at last restart the server of ORACLE
# /etc/init.d/oracle_x restart
Catch-all disclaimer: These steps worked for me on my configuration; they might not work on yours.
I'm new guy,this is my first install oracle on LINUX OS.If any problems please let me know.
发表评论
-
Oracle的schema、方案、模式、用户
2012-12-07 12:11 1147今天才对这几个概念 ... -
DBMS_STATS.GATHER_TABLE_STATS详解
2012-08-15 15:12 1810作用:DBMS_STATS.GATHER_TABLE_S ... -
Oracle表连接操作——Merge Sort Join(合并排序连接)
2012-08-15 15:12 3357关系型数据库并不是最早出现的数据库表现形式,之前还存在层 ... -
Oracle表连接操作——Nest Loop Join(嵌套循环)
2012-08-15 15:12 7952关系型数据库并不是最 ... -
Oracle hash join
2012-08-15 15:13 1032hash join是oracle里面一个 ... -
Oracle表连接操作——Hash Join(哈希连接)下
2012-08-15 15:13 1648Hash Join是Oracle CBO时代经常出现的一 ... -
Oracle表连接操作——Hash Join(哈希连接)上
2012-08-14 14:19 13968在Oracle中,确定连接操作类型是执行计划生成的重要方 ... -
oracle 递归查询,向上和向下遍历
2012-08-14 11:10 19362--查询全部资源信息 select * from urm_cl ... -
ORACLE中Like与Instr性能大比拼(转)
2012-08-14 11:09 979http://zhaolinjnu.blog.sohu.com ... -
SQL语句优化技术分析
2012-08-14 11:08 947一、操作符优化1、IN 操 ... -
CBO和RBO介绍
2012-08-14 11:08 899Rule Based Optimizer(RBO) ... -
Merge into 详细介绍
2012-03-15 15:40 950/*Merge into 详细介绍 MERGE ... -
ora-12516 tns listener could not find available handler with matching protocol
2012-03-12 15:51 8692公司数据库安装的是 Oracle10g XE(Oracle D ... -
CUUG《Oracle 监听和TNS配置》- 笔记
2012-02-24 22:07 2204监听负责多个实例 相关文件:Listener.ora和 ... -
批处理备份oracle
2012-02-24 22:07 840@echo off @title Oracle简易数据备份工具 ... -
oracle-ORA的原理
2012-02-07 14:15 10461、在一个应用环境当中,所有的服务器使用和管理同一个数据库,目 ... -
Oracle的卸载过程
2012-02-07 12:15 909修改注册表,在开始运行中执行regedit命令,进入注册表, ... -
创建表空间文件
2012-02-07 12:12 2255--1 创建表空间文件 --1.1 创建ASIT 实体表空间 ... -
SQL触发器实例讲解
2012-02-07 12:10 845SQL触发器实例1 定义: ... -
oracle 10g 默认用户名密码及解锁
2012-02-07 12:04 9981. 安装时选择的自动安装,忘了用户名和密码,导致现在试了几个 ...
相关推荐
oracleXE11g数据库安装包windowsX64免费下载,请笑纳。 Oracle Database Express Edition (XE) is a community supported edition of the Oracle Database family. Please go to the Oracle Database XE Community ...
10. **删除ODBC数据源**:如有必要,从ODBC管理器中删除所有与Oracle相关的数据源。 11. **清理日志**:最后,查看“事件查看器”,删除Oracle相关的日志记录,确保所有痕迹都被清除。 对于Oracle 11g R2的卸载,...
### Oracle 11g for Win32 下载与安装指南 #### 一、概述 Oracle 11g 是 Oracle 公司推出的一款功能强大的数据库管理系统,它提供了多种新特性和改进,以提高性能、可靠性和安全性。对于使用 Windows 32 位操作...
映泰TA890GXE BIOS 联想SLIC 5.3
根据提供的文件信息,内容涉及NCC铝电解电容引线型GXE系列和黑金刚电容的选型手册。虽然提供的部分内容由于OCR技术原因存在识别错误和漏识别情况,我们仍然可以从这些片段中提炼出关于铝电解电容器的一些基本知识点...
- **Oracle 数据库**: 10GXE - **WebLogic Server**: 10.3.3 - **ODI 版本**: 11.1.1.3 - **RCU 版本**: 11.1.1.3 #### 二、ODI 11G 安装步骤详解 1. **创建数据库**: - 解压 RCU 软件包。 - 运行 `rcu.bat` ...
3. **安装 Oracle 10gXE** - 安装 Oracle 10g Express Edition(XE),这是一个轻量级的数据库系统,适用于开发和测试环境。 4. **安装 Openfire 3.5.1 源代码** - 下载途径:方法 1 从本地的 Openfire 文件夹...
### Oracle10.1.0.2在Win2k环境下的RAC安装——基于VMWare虚拟技术 #### 一、项目背景与目标 本实验旨在通过使用VMWare虚拟化技术,在一个普通PC机上构建一个双节点Oracle RAC (Real Application Clusters)集群...
开发该软件包的目的是为了适应我们称为gesso的正态回归模型,该模型用于联合选择基因与环境(GxE)的相互作用。 该模型集中于单个环境暴露,并引发“交互之前的主要作用”层次结构。 我们开发并实施了一种高效的拟合...
自己制作的登录小例子 很多地方不是很完善 功能仅限登录 注册 修改密码 注销... 这个例子采用eclipse编写 Oracle11gXE数据库 运行只需将src/com/lzy/dbutil/DbUtil中的具体代码改成自己的数据库 并将sql文件导入即可
提供给以后想从事J2EE工作的同学,该项目是javase 过渡到j2ee的完整的一个项目源码和文档,采用oracle11gXE数据库,用myeclepse上tomcat8 部署上去就能运行,实现了一个购物平台大多数功能,如下订单,在线人数查看...
you plan on using other types of blt (such as stretching or complex clipping), your application may want to time top-down versus bottom-up blts itself at run time. See the WinG help file for more ...
标题中的"PCL 6 Driver W10 (for Print)_database_"揭示了我们正在讨论的是一个专为Windows 10设计的PCL 6打印机驱动程序的数据库组件。PCL(Printer Control Language)是由HP(惠普)开发的一种页面描述语言,广泛...
在本项目中,“NEX-HS_C-GxE”是一个研究课题,主要关注的是NEX苍蝇(可能是一种实验用的果蝇模型)的单代HS(热休克)C(可能是某种条件或处理方式)GxE(基因型与环境交互作用)实验分析。通过使用Jupyter ...
背景:创伤后应激障碍(PTSD)是一种精神疾病,存在于遭受包括自然灾害在内的创伤事件折磨的个体中。 2004年12月26日在泰国安达曼海岸发生了“海啸”,其中33.6%的幸存者被诊断为PTSD... 结论:这项研究表明,GxE研究
"gxe-exploration"这个项目似乎专注于利用Stata进行复杂的数据探索和交互效应分析。在这里,我们将会深入讨论如何使用Stata进行数据处理、统计建模以及交互效应的分析。 首先,"gxe"通常指的是Generalized ...
hierNetGxE 开发该软件包以适应正则化回归模型,我们将其称为hierNetGxE,用于基于层次化套索的基因-环境(GxE)交互作用的联合选择[Bien等。 (2013)]。 该模型集中于单个环境暴露,并引发“交互之前的主要作用”...