新手提问:ORACLE 10G  维护-》实用程序-》从文件中加载数据,这里面的控制文件我自己编写如下(test.ctl):
load   data   
infile   'test.txt'   
into   table   purchase_orders     
(po_id  number by ',',  
po_date date   by ',',
po_desc varchar2 by ',',
po_item varchar2 by whitespace )  数据文件如下(test.txt)
1,25-MAY-2005,office equipment,optical mouse
2,18-JUN-2005,computer system,dell laptop
3,26-JUN-2005,travel expense,car rental这样加载之后,提示如下错误,该如何修改控制文件?
SQL*Loader-350: Syntax error at line 4.
Expecting valid column specification, "," or ")", found "number".
(po_id  number by ',',  
        ^ SQL*Loader: Release 10.1.0.2.0 - Production on æ˜ŸæœŸä¸‰ 8月 27 10:05:11 2008
 
 Copyright (c) 1982, 2004, Oracle.  All rights reserved.
 
 SQL*Loader-350: Syntax error at line 4.
 Expecting valid column specification, "," or ")", found "number".
 (po_id  number by ',',  
         ^