设为首页 加入收藏

TOP

ORACLE数据库逻辑备份、表空间创建及用户授权(一)
2014-11-24 18:35:46 】 浏览:4857
Tags:ORACLE 数据库 逻辑 备份 空间 创建 用户 授权

2012年2月7日导出正式库数据
$exp userid=leopardsnow/leopardsnow@ywdb file=./leopardsnow20120207.dmp log=./leopardsnow20120207.log owner=leopardsnow grants=y



2012年1月13日导出正式库数据
$exp userid=leopardsnow/leopardsnow@ywdb file=./leopardsnow20120113.dmp log=./leopardsnow20120113.log owner=leopardsnow grants=y


2011年6月27日导出正式库数据
$exp userid=leopardsnow/leopardsnow@ywdb file=./leopardsnow20121215.dmp log=./leopardsnow20111215.log owner=leopardsnow grants=y


exp system/system88@ywdb file=./leopardsnow0627.dmp log=./leopardsnow0627.log owner=leopardsnow grants=y


2011年6月19日导出正式库数据
一种方式:
exp system/system88@ywdb file=./ywdb20110619.dmp log=./ywdb20110619.og full=y


二种方式:
exp system/system88@ywdb file=./leopardsnow.dmp log=./leopardsnow.log owner=leopardsnow grants=y
exp system/system88@ywdb file=./shark.dmp log=./shark.log owner=shark grants=y


---------------------------------------------
2、创建表空间及用户授权


SQL> create tablespace shark datafile '/opt/oracle/oradata/YWDB/datafile/shark.dbf'
size 500M AutoExtend On Next 10M maxsize unlimited extent management local uniform size 128k
segment space management auto


SQL> create user shark identified by shark
default tablespace shark
temporary tablespace temp;


SQL> grant connect,resource to shark
---------------------------------------------------------------------------------------
SQL> create tablespace dttmp datafile '/opt/oracle/oradata/YWDB/datafile/dttmp.dbf'
size 6000M AutoExtend On Next 100M maxsize unlimited extent management local uniform size 128k
segment space management auto


SQL> create user leopardsnow identified by leopardsnow
default tablespace dttmp
temporary tablespace temp;


SQL> grant connect,resource to leopardsnow
-------------------------------------------------------------------------------



imp system/system88 file=./expfull20110619.dmp log=expfull20110620.log fromuser=(shark,leopardsnow) touser=(shark,leopardsnow)



3、更改用户密码:


SQL>alter user system identified by 要改的密码;


--------------------------------------------


imp aichannel/aichannel@hust full=y file= d:\data\newsmgnt.dmp ignore=y
1. 导入一个完整数据库
imp system/manager file=bible_db log=dible_db full=y ignore=y



$exp scott/tiger tables=(emp,dept) file=/directory/scott.dmp grants=y



2 将数据库中的表inner_notify、notify_staff_relat导出
exp aichannel/aichannel@TESTDB2 file= d:\data\newsmgnt.dmp tables=(inner_notify,notify_staff_relat)


2011年3月27日操作记录:
$exp userid=szfescotest5/szfescotest5@test file=./20110328baseadjust_log.dmp tables=baseadjust_log
$exp userid=szfescotest5/szfescotest5@test file=./20110328base_adjust_new.dmp tables=base_adjust_new
$exp userid=szfescotest5/szfescotest5@test file=./20110328employee_fee_period.dmp tables=employee_fee_period
$exp userid=szfescotest5/szfescotest5@test file=./20110328employee_fee_period_item.dmp tables=employee_fee_period_item



3 将数据库中system用户与sys用户的表导出
$exp system/manager@TEST file=d:\daochu.dmp owner=system grants=y



$exp userid=leopardsnow/leopardsnow@ywdb file=./20110329full.dmp log=./20110329full.log owner=leopardsnow grants=y



测试库用户szfescotest5备份:
$exp szfescotest5/szfescotest5@test file=./20110329full.dmp grants=y


Export: Release 10.2.0.1.0 - Production on Tue Mar 29 13:14:56 2011

Copyright (c) 1982, 2005, Oracle. All r

首页 上一页 1 2 3 下一页 尾页 1/3/3
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇在一台服务器安装多个MySQL数据库 下一篇Linux MySQL 4G内存my.cnf配置表

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目