# 1建立测试表“emp_bak" >使用双引号建立的表,默认为小写字母的表. ``` SQL> create table "emp_bak" as select * from emp; Table created. SQL> slect * from tab; SP2-0734: unknown command beginning "slect * fr..." - rest of line ignored. SQL> select * from tab; TNAME TABTYPE CLUSTERID ------------------------------ ------- ---------- BONUS TABLE DEPT TABLE EMP TABLE E_TMP TABLE OD TABLE OUTPUT TABLE OUTPUT2 TABLE SALGRADE TABLE TS1 TABLE TS2 TABLE emp_bak TABLE 13 rows selected. ``` # 小写字母表特点 查询需要使用单引号: ``` SQL> select count(*) from emp_bak; select count(*) from emp_bak * ERROR at line 1: ORA-00942: table or view does not exist SQL> select count(*) from "emp_bak"; COUNT(*) ---------- 14 ``` #是否可以建立同名大写的表? ``` SQL> create table emp_bak as select * from emp; Table created. SQL> select * from tab; TNAME TABTYPE CLUSTERID ------------------------------ ------- ---------- BONUS TABLE DEPT TABLE EMP TABLE EMP_BAK TABLE E_TMP TABLE emp_bak TABLE ``` # 如何单独导入小写字母的表呢? # exp 全用户导出 ``` [oracle@prod04 ~]$ exp scott/snow file=snow1.dmp Export: Release 11.2.0.4.0 - Production on Mon Jan 7 18:54:29 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) . exporting pre-schema procedural objects and actions . exporting foreign function library names for user SCOTT . exporting PUBLIC type synonyms . exporting private type synonyms . exporting object type definitions for user SCOTT About to export SCOTT's objects ... . exporting database links . exporting sequence numbers . exporting cluster definitions . about to export SCOTT's tables via Conventional Path ... . . exporting table BONUS 0 rows exported . . exporting table DEPT 4 rows exported . . exporting table EMP 14 rows exported EXP-00091: Exporting questionable statistics. . . exporting table EMP_BAK 14 rows exported . . exporting table E_TMP 14 rows exported . . exporting table OD 4 rows exported . . exporting table OUTPUT 5 rows exported . . exporting table OUTPUT2 3 rows exported . . exporting table SALGRADE 5 rows exported . . exporting table TS1 7585 rows exported EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. . . exporting table TS2 288657 rows exported EXP-00091: Exporting questionable statistics. EXP-00091: Exporting questionable statistics. . . exporting table emp_bak 14 rows exported . exporting synonyms . exporting views . exporting stored procedures . exporting operators . exporting referential integrity constraints . exporting triggers . exporting indextypes . exporting bitmap, functional and extensible indexes . exporting posttables actions . exporting materialized views . exporting snapshot logs . exporting job queues . exporting refresh groups and children . exporting dimensions . exporting post-schema procedural objects and actions . exporting statistics Export terminated successfully with warnings. ``` #解决方法: ``` [oracle@prod04 ~]$ imp scott/snow file=snow1.dmp tables='\"emp_bak\"' Import: Release 11.2.0.4.0 - Production on Mon Jan 7 18:45:02 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 file created by EXPORT:V11.02.00 via conventional path import done in US7ASCII character set and AL16UTF16 NCHAR character set import server uses AL32UTF8 character set (possible charset conversion) . importing SCOTT's objects into SCOTT . importing SCOTT's objects into SCOTT . . importing table "emp_bak" 14 rows imported Import terminated successfully without warnings. ```
imp-导入小写字母的表
来源:这里教程网
时间:2026-03-03 12:51:25
作者:
编辑推荐:
- imp-导入小写字母的表03-03
- ogg破案之复制进程隐式lag处理一则03-03
- Sector size导致ORA-27061: waiting for async I/Os failed with root.sh03-03
- adrci -age后面的参数单位是分钟03-03
- 问鼎大师我的OCM之路——程向智03-03
- AP 应付接口导入常见报错03-03
- oracle、mysql数据库窗口下执行操作系统命令03-03
- 3NF浅谈BI领域的数据模型设计03-03
下一篇:
相关推荐
-
雷神推出 MIX PRO II 迷你主机:基于 Ultra 200H,玻璃上盖 + ARGB 灯效
2 月 9 日消息,雷神 (THUNDEROBOT) 现已宣布推出基于英
-
制造商 Musnap 推出彩色墨水屏电纸书 Ocean C:支持手写笔、第三方安卓应用
2 月 10 日消息,制造商 Musnap 现已在海外推出一款 Oce
热文推荐
- 问鼎大师我的OCM之路——程向智
问鼎大师我的OCM之路——程向智
26-03-03 - oracle、mysql数据库窗口下执行操作系统命令
oracle、mysql数据库窗口下执行操作系统命令
26-03-03 - 由db_domain引起的数据库连接异常
由db_domain引起的数据库连接异常
26-03-03 - Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题
Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题
26-03-03 - Debian日志分析最佳实践(新手也能掌握的Linux系统日志管理与安全审计指南)
- ORA-15083: failed to communicate with ASMB background process
- 并行处理 Parallel Processing
并行处理 Parallel Processing
26-03-03 - oracle_Parallel相关参数设置不当引起的系统故障
oracle_Parallel相关参数设置不当引起的系统故障
26-03-03 - ASM维护工具 (KFOD KFED AMDU)
ASM维护工具 (KFOD KFED AMDU)
26-03-03 - Oracle集群技术 | 集群的自启动系列(一)
Oracle集群技术 | 集群的自启动系列(一)
26-03-03
