ORACLE 11G使用exp或者pl/sql导出空表

2024-06-19 19:18

本文主要是介绍ORACLE 11G使用exp或者pl/sql导出空表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

oracle在11G这个版本中增添了一个新的参数:deferred_segment_creation,默认值为true,作用是延迟建表,对于新建之后从未插入过数据的表(插入数据后又删除所有数据的表不在此列)。可将其设置成false来让之后的表不使用延迟建表,但对于之前的表没用。在此提供一种其他方法的补充:
使用:select ‘alter table ‘||table_name||’ allocate extent;’ from user_tables where num_rows=0语句查出结果,结果中就是新建后未添加过诗句的表,将结果保存。
我保存成了.sql文件,内容如下:

prompt Importing table user_tables...
set feedback off
set define off
alter table COM_CONTACT_MECH allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_PARTY_ATTRIBUTE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_PARTY_CONTACT_MECH allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_PARTY_IDENTIFICATION allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_PARTY_ROLE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_PARTY_STATUS allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table COM_ROLE_TYPE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_RR_PROFILE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_RR_PROFILE_RELA allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_RR_PROFILR_DETAIL allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_CHGPASS_REC allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_EXCLUSE_ITEM allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LEVEL_GRANT_DEPTS allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LEVEL_GRANT_OBJECTS allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LEVEL_GRANT_ROLES allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LOCK_ACCOUNTS allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LOGIN_EXT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_LOGIN_LIMIT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_NEED_APPROVE_ROLE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_ROLE_APPROVE_RECORD allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_ROLE_RIGHT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_R_SAFE_POLICY allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ACCOUNTS_DESKTOP allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ACCOUNTS_WIDGETS allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ACCOUNT_SHORT_CUT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_CACHE_REFRESH_DATE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_CONSIGN_REC allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_CQ_COND allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_CQ_COND_DEF allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_DROPBEAN_REFRESH_DATE allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ENTITY_AUDIT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_HELP_BOOKMARK allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_MODIFY_DETAIL allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_MODIFY_LOG allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_OBJECT_CONSIGN allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_PROPERTY_AUDIT allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_REMOTE_APP allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_REMOTE_MENU allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ROLE_CONSIGN allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_ROLE_GROUP allocate extent;');insert into user_tables ('ALTERTABLE'||TABLE_NAME||'ALL)
values ('alter table EP_SYS_TABLE_INFO allocate extent;');prompt Done.

直接执行这个文件是报错的,需要修改成如下格式:

alter table COM_CONTACT_MECH allocate extent;alter table COM_PARTY_ATTRIBUTE allocate extent;alter table COM_PARTY_CONTACT_MECH allocate extent;alter table COM_PARTY_IDENTIFICATION allocate extent;alter table COM_PARTY_ROLE allocate extent;alter table COM_PARTY_STATUS allocate extent;alter table COM_ROLE_TYPE allocate extent;alter table EP_RR_PROFILE allocate extent;alter table EP_RR_PROFILE_RELA allocate extent;alter table EP_RR_PROFILR_DETAIL allocate extent;alter table EP_R_CHGPASS_REC allocate extent;alter table EP_R_EXCLUSE_ITEM allocate extent;alter table EP_R_LEVEL_GRANT_DEPTS allocate extent;alter table EP_R_LEVEL_GRANT_OBJECTS allocate extent;alter table EP_R_LEVEL_GRANT_ROLES allocate extent;alter table EP_R_LOCK_ACCOUNTS allocate extent;alter table EP_R_LOGIN_EXT allocate extent;alter table EP_R_LOGIN_LIMIT allocate extent;alter table EP_R_NEED_APPROVE_ROLE allocate extent;alter table EP_R_ROLE_APPROVE_RECORD allocate extent;alter table EP_R_ROLE_RIGHT allocate extent;alter table EP_R_SAFE_POLICY allocate extent;alter table EP_SYS_ACCOUNTS_DESKTOP allocate extent;alter table EP_SYS_ACCOUNTS_WIDGETS allocate extent;alter table EP_SYS_ACCOUNT_SHORT_CUT allocate extent;alter table EP_SYS_CACHE_REFRESH_DATE allocate extent;alter table EP_SYS_CONSIGN_REC allocate extent;alter table EP_SYS_CQ_COND allocate extent;alter table EP_SYS_CQ_COND_DEF allocate extent;alter table EP_SYS_DROPBEAN_REFRESH_DATE allocate extent;alter table EP_SYS_ENTITY_AUDIT allocate extent;alter table EP_SYS_HELP_BOOKMARK allocate extent;alter table EP_SYS_MODIFY_DETAIL allocate extent;alter table EP_SYS_MODIFY_LOG allocate extent;alter table EP_SYS_OBJECT_CONSIGN allocate extent;alter table EP_SYS_PROPERTY_AUDIT allocate extent;alter table EP_SYS_REMOTE_APP allocate extent;alter table EP_SYS_REMOTE_MENU allocate extent;alter table EP_SYS_ROLE_CONSIGN allocate extent;alter table EP_SYS_ROLE_GROUP allocate extent;alter table EP_SYS_TABLE_INFO allocate extent;

执行修改后的文件之后,再用exp或者pl/sql导出的时候就能将空表导出了。

这篇关于ORACLE 11G使用exp或者pl/sql导出空表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1075911

相关文章

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

Pandas使用SQLite3实战

《Pandas使用SQLite3实战》本文主要介绍了Pandas使用SQLite3实战,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录1 环境准备2 从 SQLite3VlfrWQzgt 读取数据到 DataFrame基础用法:读

JSON Web Token在登陆中的使用过程

《JSONWebToken在登陆中的使用过程》:本文主要介绍JSONWebToken在登陆中的使用过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录JWT 介绍微服务架构中的 JWT 使用结合微服务网关的 JWT 验证1. 用户登录,生成 JWT2. 自定义过滤