我试图通过Mac上的snowsql
终端加载csv文件,我得到了这个错误,我知道csv文件没有问题
CBILONG#COMPUTE_WH@REVIEWS.PUBLIC>put file:///Macintosh HD\Users\Documents\users.csv @~/staged;
001003 (42000): SQL compilation error:
parse error line 1 at position 25 near '85'.
parse error line 1 at position 31 near '68'.
parse error line 1 at position 41 near '117'.
syntax error line 1 at position 42 unexpected 'sers'.
syntax error line 1 at position 46 unexpected '.'.
syntax error line 1 at position 51 unexpected '@~/staged'.
发布于 2021-01-26 02:42:40
看起来这只是斜杠和反斜杠的问题,你不需要Macintosh HD在你的路径上
试一试
CBILONG#COMPUTE_WH@REVIEWS.PUBLIC>put file:///Users/Documents/users.csv @~/staged;
https://stackoverflow.com/questions/65889688
复制相似问题