2.1 基本知识 Oracle 的  SQL* LOADER  可以将外部格式化的文本数据加载到数据库表中.通常 与 SPOOL导出文本数据方法配合使用.     1.命令格式 SQLLDR keyword=value [,keyword=value,……] 例:$ sqlldr user/pwd control=emp.ctl data=emp.dat bad=emp.bad log=emp.log     2.控制文件 SQL*LOADER  根据控制文件可以找到需要加载的数据.并且分析和解…
一.SQL语句种类: 1. DDL(Data Definition Language,数据定义语言)用来创建或者删除存储数据用的数据库以及数据库中的表;包含以下几种指令: a. CREATE:CREATE: 创建数据库和表等对象 b. DROP: 删除数据库和表等对象 c. ALTER: 修改数据库和表等对象的结构 2. DML(Data Manipulation Language,数据操纵语言) 用来查询或者变更表中的记录;包含以下几种指令: a. SELECT:查询表中的数据 b. INSE…
1.开始->设置->控制面板->管理工具->服务 停止所有 Oracle服务. 2.开始->程序->Oracle - OraHome81->Oracle Installation  Products-> Universal Installer,单击“卸载产品”-“全部展 开”,选中除“OraDb11g_home1”外的全部目录,删除. 3.运行regedit,选择 HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE,按del键删除 这个入口…
CASE11 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase11.sql set termout off rem host write sys$output "Building demonstration tables . Please wait" drop table emp; create table emp (empno ) not null, ename ), job ), mgr ), hiredate date, sal ,), com…
CASE10 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase10.sql rem host write sys$output "Building demonstration tables. Please wait" rem do all cleanup drop table orders; drop table customers; drop type item_list_type; drop type item_type; drop type c…
CASE9 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase9.sql set termout off rem host write sys$output "Building demonstration tables. Please wait" drop table emp; create table emp (empno ) not null, ename ), job ), mgr ), hiredate date, sal ,), comm ,…
CASE8 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase8.sql set termout off rem host write sys$output "Building demonstration tables. Please wait" drop table lineitem; create table lineitem (l_orderkey number, l_partkey number, l_suppkey number, l_lin…
CASE6 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase6.sql set termout off rem host write sys$output "Building demonstration tables. Please wait" drop table emp; create table emp (empno ) not null, ename ), job ), mgr ), hiredate date, sal ,), comm ,…
CASE5 1. SQL脚本 [oracle@node3 ulcase]$ cat ulcase5.sql set termout off rem host write sys$output "Building demonstration tables. Please wait" drop table emp; drop table proj; create table emp (empno ) not null, ename ), job ), mgr ), hiredate dat…
用户管理的备份与恢复也称 OS物理备份,是指通过数据库命令设置数据库为备份 状态,然后用操作系统命令,拷贝需要备份或恢复的文件.这种备份与恢复需要用户的 参与手工或自动完成. 对于使用 OS拷贝备份的数据文件,可以使用 DBVERTIFY  进行检验.DBVERTIFY是一个外部工具,主要用于校验数据文件或备份的数据文件的数据块是否正确. 例: dbv /u01/oradata/oracle/users01.dbf BLOCKSIZE=8192 参数说明: 关键字                …