Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
This produces the dreaded "Garbage after statement...."
Prices:
LOAD OrderID,
OpenClose,
Ask,
Bid
FROM
TestPrices.xls
(biff, embedded labels, table is Prices$)
ORDER BY OrderID;
and this works fine:
temp:
LOAD OrderID,
OpenClose,
Ask,
Bid
FROM
TestPrices.xls
(biff, embedded labels, table is Prices$)
;
NoConcatenate
Prices:
LOAD * Resident temp
Order by OrderID;
drop Table temp;
Any ideas?
Hi Alexis,
an Order By-Clause is only valid for resident tables.
Unfortunaly there comes no (syntax) error from the editor when using it in the wrong way.
RR
Hi Alexis,
an Order By-Clause is only valid for resident tables.
Unfortunaly there comes no (syntax) error from the editor when using it in the wrong way.
RR
Thank you for responding to my question Roland - I was not aware of that.
Alexis
That would be a good thing to show more informative message in this case.