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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikview979
Specialist
Specialist

Autogenerate

Hi Experts,

What is the Difference between Autogenerate0,Autogenerate1 and Autogenerate10 ? Can explain with Example?

1 Solution

Accepted Solutions
sunny_talwar

It just means how many rows of data do you want to generate while loading. For example

LOAD 1 as Flag

AutoGenerate 10;

will generate 10 rows of data with flag = 1

vs

LOAD 1 as Flag

AutoGenerate 1;

will generate 1 row.

vs LOAD 1 as Flag

AutoGenerate 0;

will create the table with no data in it (no rows)

View solution in original post

2 Replies
sunny_talwar

It just means how many rows of data do you want to generate while loading. For example

LOAD 1 as Flag

AutoGenerate 10;

will generate 10 rows of data with flag = 1

vs

LOAD 1 as Flag

AutoGenerate 1;

will generate 1 row.

vs LOAD 1 as Flag

AutoGenerate 0;

will create the table with no data in it (no rows)

qlikview979
Specialist
Specialist
Author

Hi Sunny,

Thanks for your Support.

Regards,

Mahesh