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

How to load all columns while residint load

Hi friends

I have a table. I want all the coumns expect two in to new table. Is there any way to get all the coumns into next table without typing all the column names again.

Thanks

Pavan

1 Solution

Accepted Solutions
MarcoWedel

newTableName:

Load *

Resident oldTableName;

Drop Fields unwantedField1, unwantedField2 From newTableName;

View solution in original post

2 Replies
PrashantSangle

Hi,

Use

Load *

Resident oldTableName;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
MarcoWedel

newTableName:

Load *

Resident oldTableName;

Drop Fields unwantedField1, unwantedField2 From newTableName;