Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm kind of a beginner with QlikView. I'm trying to query a MySQL database to get around 50000 rows. I get the 'Table Not Found' error using the following code:
RawData:
SELECT *
FROM MyTable;
STORE RawData into ..\Data\RawData.qvd (qvd);
But not if I use the following code:
FROM MyTable
LIMIT 10;
Any idea how to fix this?
Thanks,
Deekshith
Message was edited by: Deekshith Juvvadi
Your script should be
Because Store will look for the Table Alice name which you have given, not the actual name of the table.
Regards,
Kaushik Solanki