exp-小写字母表导出问题?

简介: exp 小写字母表

建立小写字母表?

SQL> create table "test01" as select * from test;

Table created.
SQL> create table "test02" as select * from test;

Table created.

SQL> select * from tab;

TNAME                   TABTYPE    CLUSTERID
------------------------------ ------- ----------
TEST                   TABLE
test01                   TABLE
test02                   TABLE

如何导出表?

[oracle@prod04 ~]$ exp t/t file=t.dmp tables="('\"test01\"','\"test02\"')"

Export: Release 11.2.0.4.0 - Production on Thu Jan 10 14:53:52 2019

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Export done in US7ASCII character set and AL16UTF16 NCHAR character set
server uses AL32UTF8 character set (possible charset conversion)

About to export specified tables via Conventional Path ...
. . exporting table                         test01      86289 rows exported
. . exporting table                         test02      86288 rows exported
Export terminated successfully without warnings.

报错信息?

[oracle@prod04 ~]$ exp t/t file=t.dmp tables="(test01,test02)"

Export: Release 11.2.0.4.0 - Production on Thu Jan 10 14:54:04 2019

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Export done in US7ASCII character set and AL16UTF16 NCHAR character set
server uses AL32UTF8 character set (possible charset conversion)

About to export specified tables via Conventional Path ...
EXP-00011: T.TEST01 does not exist
EXP-00011: T.TEST02 does not exist
Export terminated successfully with warnings.
相关文章
|
10月前
Oracle11G用EXP导出时,空表不能导出解决
Oracle11G用EXP导出时,空表不能导出解决
|
4月前
文件(夹)批量重命名数字、字母、日期、中文数字大写小写
该内容是一个指南,介绍如何使用一个工具批量重命名文件。首先,提供了两个下载链接:百度网盘和蓝奏云,分别附有提取码。接着,目标是将5个文件以大写中文数字“贰”开始重命名。步骤包括:打开工具的“文件批量复制”功能,点击重命名按钮,拖入要重命名的文件,选择重命名类型为“大写中文数字”,设置格式如“db_zh_ + 中文大写数字”,然后执行操作。如果需要更改文件后缀,可勾选相应选项并输入新后缀。最后,展示了重命名前后的文件列表。
|
4月前
|
SQL
sql语句将数字格式修改为字符
sql语句将数字格式修改为字符
|
Oracle 关系型数据库 OLAP
imp-导入小写字母表问题
1建立测试表“emp_bak" 使用双引号建立的表,默认为小写字母的表. SQL> create table "emp_bak" as select * from emp; Table created.
1191 0
|
关系型数据库 Oracle 索引
|
关系型数据库 Oracle Linux
|
SQL Oracle 关系型数据库
[20170918]exp 直接路径导出.txt
[20170918]exp 直接路径导出.txt --//昨天看链接blogs.oracle.com/database4cn/%e5%af%b9%e4%ba%8e%e4%b8%80%e4%b8%aa%e9%9d%9e%e7%a9%ba%e5%ad%97%e6%ae%...
1457 0