|
P4
|
发表于 2013-8-28 21:34:15
guo 发表于 2013-8-28 10:50
楼上正解
实验不正确
orcl>copy from sys/Sw251860@orcl as sysdba append test using select sysdate from
dual;
用法: COPY FROM <db> TO <db> <opt> <table> {(<cols>)} USING <sel>
<db> : 数据库字符串, 例如, hr/your_password@d:chicago-mktg
<opt> : 下列关键字之一: APPEND, CREATE, INSERT 或 REPLACE
<table>: 目标表名称
<cols> : 用逗号分隔的目标列别名列表
<sel> : 任何有效的 SQL SELECT 语句
缺少的 FROM 或 TO 子句使用当前的 SQL*Plus 连接
|
|