Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
jerryr125
Creator III
Creator III

Sorting on Data Load Editor - error

Hi - I am trying to sort a table in the data load editor

I authored the following:

 

TempTable:
LOAD BSTATUSDATA
*;
DataNew:
LOAD
*
RESIDENT TempTable
ORDER BY RPA,RPB,RPC;


DROP TABLE TempTable;

 

The original Table is BSTATUSDATA

 

Any thoughts ?

1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try:

noconcatenate

DataNew:
LOAD
*
RESIDENT BSTATUSDATA
ORDER BY RPA,RPB,RPC;


DROP TABLE BSTATUSDATA;

View solution in original post

1 Reply
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try:

noconcatenate

DataNew:
LOAD
*
RESIDENT BSTATUSDATA
ORDER BY RPA,RPB,RPC;


DROP TABLE BSTATUSDATA;