Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I would just like to know if someone could clarify, why a NULLASVALUE would cause a lag in reload time?
Thank you
Hi,
Ok then use the first solution and Set NULLVALUE = 'NULL' .
Thanks
Kiran Kumar
using is as follows;
NULLASVALUE *;
SET NullValue = ' ';
Hi Adam,
You might be having many null values in your data.
Use this
SET NullValue = 'Unknown';
NULLASVALUE *;
Take a list box and try to check the null values.
Hope this works!
Regards,
Varun
Is NULLASVALUE not working (Title) or just slower than expected?
Hi Please check this links:,
NULLASVALUE * will convert all null values into an empty string. This will change the behaviour of where clauses without special null handling and it will change the behaviour of joins (you cannot join on a null, but you can on an empty string). Some of these behaviour changes could lead to changes in the amount of data and the load times.
slower than expected. It is causing the reload to lag at a certain point. If I take the NULLASVALUE out of my script then the model reloads as normal.
Hi ,
Do you really wanted every null value in each of columns to something or specific columns, if it is specific columns then
use
Nullasvalue column1, column2;
Set Nullvalue = something
otherwise
The above logic is having a problem every null value in the columns will be changing to the value "something" , if you column specific replacement use in the load script of the column as
if(isnull(column), something,column)
I think because of * it is taking more time.
Hope you have understand.
I understand yes. I would however want all the null values in the model to be blank space so that is is select-able for the user.
Could the NULLASVALUE be affected by a scripted indicator?
Thank you for your assistance.
Hi,
Ok then use the first solution and Set NULLVALUE = 'NULL' .
Thanks
Kiran Kumar