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: 
Not applicable

qliksense load script stop concatenating different tables

I don't know if the title is correct.

I write the following code

[PreTweets]:

  load * from [lib://QVD (nubd-qlik_qliksense)/intital.QVD](qvd);

  load * from [lib://QVD (nubd-qlik_qliksense)/Delta.QVD](qvd);

   

[Tweets]:

  load

    TweetId,

        Text(TweetId) as TweetId_str,

        firstvalue(RetweetedRetweetCount) as RetweetedRetweetCount,

        firstvalue(last_updated_time) as last_updated_time

    resident [PreTweets]  group By TweetId order by last_updated_time desc;

Tweets table is not created ,, is there anything I'm doing wrong ?

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

[Tweets]:

noconcatenate  load

View solution in original post

1 Reply
m_woolf
Master II
Master II

[Tweets]:

noconcatenate  load