Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

How to drop SALES_TABLE-1 ?

Hi All

My Table model :-

HOW TO DELETE TARGET TABLE.png

I using below load script to drop SALES_TABLE-1  :-

CONCATENATE(SALES_TABLE)
LOAD * Resident "SALES_TABLE-1";
Drop Table "SALES_TABLE-1";

I get below error msg :-

Table not found
CONCATENATE(SALES_TABLE)
LOAD * Resident "SALES_TABLE-1"

May i know where go wrong ?

Paul Yeo

1 Solution

Accepted Solutions
vamsee
Specialist
Specialist

You are actually loading SALES_TABLE somewhere else in your script with only two Columns SOURCE_, SOURCE.

The "-1" in the table name is autogenerated by Qlik. 

Example:

vamsee_0-1590517122703.png

 

Search your script for that table load and remove it.

 

View solution in original post

1 Reply
vamsee
Specialist
Specialist

You are actually loading SALES_TABLE somewhere else in your script with only two Columns SOURCE_, SOURCE.

The "-1" in the table name is autogenerated by Qlik. 

Example:

vamsee_0-1590517122703.png

 

Search your script for that table load and remove it.