如何单独备份一个或多个表?
命令详解: D:\>exp 用户/密码 tables=表 D:\>exp 用户/密码 tables=(表1,…,表2) D:\>exp system/manager tables=(用户.表) D:\>exp system/manager tables=(用户1.表1,用户2.表2) ============================================================ 如何导入指定表?
命令详解:
D:\>exp scott/tiger file=a.dmp D:\>imp test/test fromuser=scott tables=emp file=a.dmp D:\>imp test/test tables=dept file=a.dmp ignore=y //ignore create error
说明: 如果导出用户没有DBA权限,则导入用户可以不用指定fromuser、touser参数 如果导出用户拥有DBA权限,则导入用户也必须拥有DBA权限 =========================================================================== 如何单独备份一个或多个用户?
命令详解:
D:\>exp scott/tiger file=导出文件 D:\>exp system/manager owner=(用户1,用户2,…,用户n) file=导出文件 =============================================================================== 如何给表、列加注释?
系统环境: 1、数据库: Oracle 8i R3 (8.1.7) for NT 企业版
说明: SQL>comment on table 表 is '表注释'; 注释已创建。
SQL>comment on column 表.列 is '列注释'; 注释已创建。
SQL> select * from user_tab_comments where comments is not null; SQL> select * from user_col_comments where comments is not null; =================================================================== http://www.oradb.net
在存储过程中如何判断一张视图是否存在 SELECT COUNT(*) FROM ALL_OBJECTS WHERE OWNER='&OWER' AND OBJECT_NAME='&VIEWNAME' /
|