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

What is mean by InLine MEmory in Qlikview ??

Hey,

What is mean by InLine Memory in Qlikview ??

Thanks.

5 Replies
senpradip007
Specialist III
Specialist III

Inline is used if data should be typed within the script, and not loaded from a file. Use the Inline Data Wizard for help with the creation of load inline statements.

data ::= [ text ]

Data entered through an inline clause must be enclosed by double Quotation Marks in Scripting or with square brackets. The text between these is interpreted in the same way as the content of a file. Hence, where you would insert a new line in a text file, you should also do it in the text of an inline clause, i.e. by pressing the Enter key when typing the script.

rajeshvaswani77
Specialist III
Specialist III

if it is in  memory, what you are looking for then it means that all the dashboard data is in memory for the QlikView dashboard.

sujeetsingh
Master III
Master III

Inline is used to create temp table in Qlikview.

But if you are searching for in-memory  then follow this.

What is In-Memory in QlikView

Not applicable

Load inline will create a table in the qvw document. The table and its data will be stored in the qvw file once saved.

Once the table is created in the script data from the table can be accessed like any other table further down the script.

As an example, you create a table with the following Load inline:
mytable:
LOAD * INLINE [ Field1, Field2
ValueA1, ValueA2
ValueB1, ValueB2 ];

Now you can access this table (once loaded) further down in your script, like:
Load Field1 as NewField resident mytable;

If you save the file (after reload) and reopen you will notice that you have two fields with the data constructed in your Load inline, i.e. data is saved within the qvw document

Thanks,

TDP

maxgro
MVP
MVP