do export method of oracle all database tables with dmp files.

usually we need to export the database tables to backup and others use. So we must know what to do export those data .

just exmple when I export the oracle all database tables with dmp files.

the method is following :

#exp oracle_userName/"""oracle_userPassword"""@orcl file=/SpecifiedPath/Name.dmp full=y

Note :why to do use the """oracle_userPassword"""" .if your password contains special characters ,then you can use this method .

orcl:spcified your database name .by default ,the database is orcl.

file=/SpecifiedPath/CustomName.dmp .Must use the name sufffix ".dmp".

by default ,the dmp files maybe have 20G of the size .

I have tried to export the dmp files ,if you have any dobut , you can contact me .learn form each other .

时间: 2024-08-02 13:43:11

do export method of oracle all database tables with dmp files.的相关文章

10 database tables

本章提要-----------------------------------各种数据库表的讨论, 并介绍什么情况使用哪种表情调表的物理存储特征-----------------------------------表类型    堆组织表, 普通标准表, 数据以堆的方式管理, 增加数据时, 会使用段中找到的第一个能放下此数据的自由空间.    索引组织表, 表按索引结构存储, 这就强制要求行本身有某种物理顺序, 在堆中, 只要放的下, 数据可以放在任何            位置, 而索引组织表,

Oracle Standby Database 实现方案

Oracle Standby Database 实现方案  From: http://wanow.blog.hexun.com/4672755_d.html 字号:大 中 小 版本:V20060328.01.01 Standby Database的工作原理 1. Oracle 与 High Availability, Disaster Recovery 及 Data Duplicate 相关功能的产品概述 Oracle 的 High Availability 功能,Oracle 是从下面几个方面

Oracle commonly uesd tables/views and processes(一)

一.Oracle commonly used tables 1.DBA_USERS #DataBase users informationcommon columnusername user_idaccount_statuslock_dateexpiry_datedefault_tablespacetemporary_tablespace2.DBA_SEGMENTS #describe the storage allocated for all segments in the database.

GitHub: Oracle RAC Database on Docker 未测试 改天试试

https://github.com/oracle/docker-images/blob/master/OracleDatabase/RAC/OracleRealApplicationClusters/README.md Oracle RAC Database on Docker Oracle Real Application Clusters (RAC) is an option to the award-winning Oracle Database Enterprise Edition.

安装concrete时提示“...database does not support InnoDB database tables..."如何解决

安装很多系统时,经常有有提示: "...database does not support InnoDB database tables..." 解决办法: 找到MySQL的配置文件: windows下是my.ini linux下/etc/my.cnf 找到如下的代码: skip-innodb 修改为如下: #skip-innodb

Oracle Active Database Duplication

Active Database Duplication 简介---------Active database duplication功能是从11g开始引入的一个新功能,它是对比以前版本中的基于备份集的复制数据库功能. 下面简单的回顾一下关于ORACLE Duplicate Database功能,Duplicate database可以按照用途分为2种,一种是duplicate database,第二种是duplicate standby database,本文主要介绍duplicate data

安装oracle XML Database 组件

近期部署项目数据库,编译包时遇到错误:   PACKAGE CTG.CTG_CSB_COMMON 编译错误  错误:PLS-00201: identifier 'XMLDOM' must be declared 行:124 文本:function getValueByXpath(inNode In xmldom.domnode, inXpath in Varchar2)  错误:PL/SQL: Declaration ignored 行:124 文本:function getValueByXpa

oracle 创建database link

有时候需要在两个数据库的表join 查询 这时候要用到 database link . database link 的作用就是搭建数据库和数据库的连接. 1.先看如何使用 PL\SQL  工具创建. 找到database links  右键  新建 填名称,  这里的用户名是远程数据库的登录名 数据库就是本地文件 D:\oracle\product\10.2.0\client_1\NETWORK\ADMIN\tnsnames.ora 的 也可以在数据库这里直接填 (DESCRIPTION =(A

[实战二]vbs script export user information to access database

vbs script export user information to access database, vbs operate accdb source code is below ===================================== '********************************************************'*         Windows Script Source Code                   *'*Us