Skip to main content
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