导出:exp userid=xcgwjxuser/[email protected] file=D:\xcgwjx2014.dmp
导入:imp userid=xcgwjxuser/[email protected] file=D:\xcgwjx2014.dmp fromuser=xcgwjxuser(旧用户) touser=xcgwjxuser(新用户) commit=y ignore=y
oracle dmp文件导入数据库步骤:
1>打开oracle配置和移植工具--->Database Configuration Assistant 创建数据库
2>创建好数据库后用sys登录,创建用户,将dba权限赋予。(若是连接远程数据库,则需要在配置和移植工具中选择Net manager进行数据库配置)
数据库创建表并给表增加注释:
普通注释:/**/ --
表和字段注释:comment on table 表名 is ‘注释‘
comment on column 表名.字段名 is ‘注释‘
create table tc_personlx
(
PERSONLX_ID number,
PERSONLX_NAME nvarchar2(50)
)
commit;
comment on table tc_personlx is ‘人员类型表‘;
comment on column tc_personlx.personlx_id is ‘ID‘;
comment on column tc_personlx.personlx_name is ‘拍照人员类型‘;
时间: 2024-11-09 01:52:22