我在 Alteryx 中创建表时遇到问题。我在工作流程结束时使用了一个Write Data In-Db工具(就像我已经制作的许多其他工具一样)。目标表还不存在。我尝试过创建新表和覆盖表(删除),但结果相同。
有我无法解释的错误:
Error: Write Data In-DB (184): Error running PreSQL on "NoTable": [Simba][Hardy] (80) Syntax or semantic analysis error thrown in server while executing query. Error message from server: Error while compiling statement: FAILED: SemanticException [Error 10004]: Line 1:14507 Invalid table alias or column reference 'Sinistre': (possible column names are: nrcl, nrefrcl, drcprcl, dstrcl, dcrercl, nchm, nsoc, ccnlrcl, cdmnrcl, ldmnrcl, cetarcl, theprircl, thescdrcl, lthescdrcl, dhchg)
我不知道为什么它提到“Sinisre”,因为在我的结果中没有以这种方式命名列或数据。还有我尝试写入的数据列:
1 nom_expert V_String 255 In-DB:DB=ehivedb;
2 num_expert Double 8 In-DB:DB=ehivedb;
3 date_contact V_String 255 In-DB:DB=ehivedb;
4 typo_chemise V_String 255 In-DB:DB=ehivedb;
5 nom_contact V_String 255 In-DB:DB=ehivedb;
6 prenom_contact V_String 255 In-DB:DB=ehivedb;
7 ref_evenement V_String 255 In-DB:DB=ehivedb;
8 email_contact V_String 255 In-DB:DB=ehivedb;
9 tel_mobile_contact V_String 255 In-DB:DB=ehivedb;
10 tel_domicile_contact V_String 255 In-DB:DB=ehivedb;
11 num_soc V_String 255 In-DB:DB=ehivedb;
12 entite V_String 255 In-DB:DB=ehivedb;
您知道什么可能导致此错误吗?