Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Error: File extdata.cpp, Line 2903


Hi Guys,

Please help, why isnt this working??

each FileName in filelist('$(v_FilePath)source\*.tsv')
     if filesize('$(FileName)')>0 then
     table_name:
         
load
               *
         
from $(v_FilePath)source\*
   (
txt, codepage is 1252, embedded labels, delimiter is '\t', msq);
 
store  table_name into  table_name.qvd (qvd);

     end if
next FileName;

Help much appreciated

1 Solution

Accepted Solutions
Not applicable
Author

I came across this problem as well. The solution for me turned out to be the name of the Tab in the excel document for one of the files in the loop. I removed the parameter in the "from" statement that references the tab, so it would default to the first tab.

In your case you are not specifying the tab, but I wager a parameters in the "from" statement doesn't apply to one of the files picked up in the loop. 

Regards,

View solution in original post

4 Replies
Not applicable
Author

I came across this problem as well. The solution for me turned out to be the name of the Tab in the excel document for one of the files in the loop. I removed the parameter in the "from" statement that references the tab, so it would default to the first tab.

In your case you are not specifying the tab, but I wager a parameters in the "from" statement doesn't apply to one of the files picked up in the loop. 

Regards,

Not applicable
Author

Hi Iain,

Thanks!! Your solution worked perfectly well for me.

If the name of the tab is different in any one of the files in loop, this error pops up.

Regards

Purvi

Not applicable
Author

Your contribution helped me a lot.


Thank

Not applicable
Author

For troubleshooting it is recommended to run the failing query in a third party SQL query tool, with the following considerations.

  • Use the same ODBC or OLEDB connection
  • Use the same underlying database driver
  • Access the same database server
  • Use the same user credentials, username and password. NOTE: Use the QlikView service user if issue is related to QlikView Server

The third party tool should return an unexpected result. In this context pay extra attention to that the field names are exactly as expected and in readable language without garbage characters.

Common resolution is to correct SQL query so that a valid and expected result is returned by database.

The error message comes from QlikView engine and is related to the database result not having valid fields. Typically this is due to the usage of LOAD * , which means that QlikView will parse the resuls in order to find the returned field names. For some reason the data base has not returned a valid result, most likely due to database driver issues or an invalid SQL query.  If this does not resolve your issue, please log a case with Qlik Support.  However if it does, please mark this as the correct answer.