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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
alan_grn
Creator II
Creator II

How do I use NONCONCATENATE?

I am trying to use the NONCONCATENATE keyword but get an error on load. Can you sue this with eitehr a load or a select statement?

I am trying to use it with a load statement where I am loading from a QVD.

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Alan,

You should use something like

Table1:LOAD Field1, Field2 FROM wahtever; Table2:NOCONCATENATE LOAD Field1, Field2 FROM whatever;


View solution in original post

3 Replies
Miguel_Angel_Baeyens

Hello Alan,

You should use something like

Table1:LOAD Field1, Field2 FROM wahtever; Table2:NOCONCATENATE LOAD Field1, Field2 FROM whatever;


peter_turner
Partner - Specialist
Partner - Specialist

Hi,

This is a spelling mistake in the manual, should be noconcatenate (no instead of non)
I've been caught out by this before, make sure the command goes blue in the script so QV knows its a script command.
You can add this before your load command to stop the new data being added to an existing table that has the same format.

Or you can load an extra dummy field with your data to make this new table unique such as:
load
*,
1 as dummy_field
from xyz

Peter.

alan_grn
Creator II
Creator II
Author

Thanks this is the explanation that I was looking for. I was using NON and could not understand why it was not turning blue.

Have tried NONCONCATENATE and it works.