RSS
热门关键字:  cms  下载  模版  开源  dedecms
Oracle
当前位置 :主页>站长学院>数据库>Oracle>列表
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-14 07:41:00 点击:99 评论: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-14 07:41:00 点击:108 评论:0 查阅全文...
SQL 的高级应用
...
作者:未知发表于:2006-09-14 07:41:00 点击:68 评论:0 查阅全文...
堆与栈的区别
堆与栈有什么区别? 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若...
作者:未知发表于:2006-09-14 07:41:00 点击:1564 评论:1 查阅全文...
oracle热物理备份步骤
谁有更好的或者是实际生产中的备份脚本可以贴上来共享。 1,选取所有表空间 select tablespace_name from dba_tablespaces; 2,对于每一个表空间建立数据文件的列表 select file_name from dba_data_files where tablespace_name='tablespace name'; 3,让表空间处于备份...
作者:未知发表于:2006-09-14 07:41:00 点击:170 评论:0 查阅全文...
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-14 07:41:00 点击:49 评论:0 查阅全文...
快速编译sql过程和视图的脚本
常常遇到因为过程或者视图没有被编译,,而无法正常运行基于存储过程的数据库程序。 用以下几句sql语句,用于在程序执行之前,自动编译。省去了我们的麻烦 /***************************************pro.sql****************************************/ #用于快速编辑过程...
作者:未知发表于:2006-09-14 07:41:00 点击:62 评论:0 查阅全文...
CICS FOR NT 安装(一)
在windows2000下安装cics 晁智平 2005-08-13 由于公司的CICS服务器是AIX的操作系统,不方便回家学习,所以想在2000下安装一下CICS服务程序。 虽然已经开发了近一年的CICS中间层的程序了,但大部分底层的代码都被封装好了,开发时的确很容易,可对真正的CICS的运作机制...
作者:未知发表于:2006-09-14 07:41:00 点击:92 评论:0 查阅全文...
栏目列表