Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
What is the Difference between Autogenerate0,Autogenerate1 and Autogenerate10 ? Can explain with Example?
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)
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)
Hi Sunny,
Thanks for your Support.
Regards,
Mahesh