|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
今天在看peoplesoft data mover的PSBOOK,其中有这么几段话不甚理解,求助达人ing
1:关于非标准SQL 语句这块 STORE和ERASE的用法,我们何时要用,怎么用?PSBOOK上的那段我看不懂。
2:data mover的语法章节中的Record Names and Table Names这段不理解。请高人解释。
Record Names and Table Names
In PeopleSoft Data Mover, when a record name needs to be specified as one of the elements in the command statement syntax, as in an IMPORT statement, you can specify either the record name or the corresponding table name. For example, the following IMPORT statements are equivalent:
Correct:
IMPORT job;
Correct:
IMPORT ps_job;
However, when a table name is required for one of the elements in the command statement syntax, you must use the table name, not the record name. For example:
Correct:
IMPORT job AS ps_process;
Incorrect:
IMPORT job AS process; |
|