Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issues With NOCONCATENATE

Hi all,

I have attached qlikview file in which i pull data from table t1 using resident to table t2. I used noconcatenate because i am pulling same copy of data.

Whenever I want to view the data in t1 and t2 in internal table view, by rirght clicking on table, and then clicking on data, the qlikview application file is getting struck, however no problem in front end. Can anyone come about this clearly?

Thanks,

Murali

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi Murali,

There are a couple of things here. One is the version of QlikView you are using. That was a known issue (registered as bug ID 24386 crashing when right clicking on the table viewer when synthetic keys are in the data model) in some release of version 9 SR6 under some circumstances. I don't know if the problem still persists in version 10. As far as I'm concerned, I can open your file and see the tables and the synthetic table without crashes.

Second is that the synthetic table that is created after the load is bound to be unwanted, so to avoid it, add below the script the line

t1:

Load * inline [a,b,c

1,2,3];

Noconcatenate

t2:

Load * resident t1;

DROP TABLE t1;

That will remove from memory table "t1" leaving only "t2". There shouldn't be any crash now.

Hope that helps.

Miguel

EDIT: I forgot to mention, regarding the first point, to update to the latest release of QlikView (version 10 SR4 build 9282 or version 9 SR7 7778). Updated with the bug info.

View solution in original post

4 Replies
jagannalla
Partner - Specialist III
Partner - Specialist III

Check this..

t1:

Load * inline [a,b,c

1,2,3];

t2:

NoConcatenate

Load * resident t1;

Not applicable
Author

Thanks Jagan,

Still same problem exists for t1 and t2, not for synTable.

Miguel_Angel_Baeyens

Hi Murali,

There are a couple of things here. One is the version of QlikView you are using. That was a known issue (registered as bug ID 24386 crashing when right clicking on the table viewer when synthetic keys are in the data model) in some release of version 9 SR6 under some circumstances. I don't know if the problem still persists in version 10. As far as I'm concerned, I can open your file and see the tables and the synthetic table without crashes.

Second is that the synthetic table that is created after the load is bound to be unwanted, so to avoid it, add below the script the line

t1:

Load * inline [a,b,c

1,2,3];

Noconcatenate

t2:

Load * resident t1;

DROP TABLE t1;

That will remove from memory table "t1" leaving only "t2". There shouldn't be any crash now.

Hope that helps.

Miguel

EDIT: I forgot to mention, regarding the first point, to update to the latest release of QlikView (version 10 SR4 build 9282 or version 9 SR7 7778). Updated with the bug info.

Not applicable
Author

Many  Thanks Miguel..

I am using v9....