- oracle管理查询
- oracle日常管理用到的一些sql语句 继续添加中 表空间及容量: select tablespace_name,sum(bytes)/1024/1024/1024 from dba_data_files group by tablespace_name; 表空间的空闲容量: select tablespace_name,sum(bytes) from dba_free_space group by tablespace_name...
- 作者:未知发表于:2006-09-13 23:41:00 点击:39 评论:0 查阅全文...
- oracle热物理备份步骤
- 谁有更好的或者是实际生产中的备份脚本可以贴上来共享。 1,选取所有表空间 select tablespace_name from dba_tablespaces; 2,对于每一个表空间建立数据文件的列表 select file_name from dba_data_files where tablespace_name='tablespace name'; 3,让表空间处于备份...
- 作者:未知发表于:2006-09-13 23:41:00 点击:119 评论:0 查阅全文...
- 堆与栈的区别
- 堆与栈有什么区别? 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若...
- 作者:未知发表于:2006-09-13 23:41:00 点击:1379 评论:0 查阅全文...
- Install Oracle9 on RedHat
- A useful guide for installation oracle on redhat. 1.Download Software Download Sun's Java Development Kit (JDK 1.3.1). Download the Oracle installation files from otn.oracle.com. Download the Oracle 9.2.0.4.0 patchset files from metalink.oracle.com....
- 作者:未知发表于:2006-09-13 23:41:00 点击:81 评论:0 查阅全文...
- Start Console on Oracle9i VS Oracle10G
- Oracle 9i use C/S console, while Oracle 10g use B/S console. Oracle 9i --------------------- DB start and console start: $lsnrctl start $dbstart ./oemapp dbastudio oracle 10g: ------------------------------ DB start and console start: 1. Navigate int...
- 作者:未知发表于:2006-09-13 23:41:00 点击:67 评论:0 查阅全文...
- oracle自动imp脚本
- 先删除用户,在重建用户,然后赋权, 脚本放到crontab中定时执行即可 source /opt/.bash_profile DATE=$(date +%Y%m%d) sqlplus /nolog EOF connect / as sysdba; DROP USER WAPUSER CASCADE; DROP USER JLTGAME CASCADE; CREATE USER WAPUSER PROFILE DEFAULT IDENTIFI...
- 作者:未知发表于:2006-09-13 23:41:00 点击:87 评论:0 查阅全文...
- 栏目列表
-
热门关注
- Oracle PL/SQL语言入门
- Oracle job 管理
- Oracle 10G数据库软硬件环境
- Oracle用户权限的管理
- 进程导致CPU 100%解决步骤
- 案例学习Oracle错误:TNS-00
- Eclipse是如何连接Oracle数
- TSM Server,Client,TDPO安装
- 解决Oracle中Exp/Imp大量数
- 如何在Oracle数据库字段上建
- 堆与栈的区别
- Oracle数据库的自动备份
- Oracle快速删除重复的记录
- Oracle数据库配置错误信息解
- 介绍了Oracle数据库锁的种类
- 在Linux下安装VNC 远程安装
- Oracle 应用技巧
- Oracle中的外连接简单介绍
- Oracle的面试问题——技术知
- ORACLE数据库启动关闭





