RSS
热门关键字:  cms  下载  模版  开源  dedecms
Oracle
当前位置 :主页>站长学院>数据库>Oracle>列表
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 查阅全文...
SQL 的高级应用
...
作者:未知发表于:2006-09-13 23:41:00 点击:52 评论: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 查阅全文...
栏目列表