Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
As per the need, I have to compare the strings. My calculation is as per the below,
More interesting as the task-message would be the document-log to see when which error happens. If a script runs successfully with a smaller data-set and breaks with a larger one it could mean that it just takes too long and any timeout happens or any resource-threshold was hit and the execution was terminated or that there were any invalid data within the bigger data-set which couldn't be handled.
Beside this there might be potential for some performance optimization, for example by replacing the bridge_temp join with one or several mapping-tables. Mappings could be horizontally and vertically nested - from the table point of view as well as from the applymap() call - and they could be directly used without the need of following loads as joins would do. By loading the data with the right order within the mapping-table you may even avoid the applied if-loop checking.
Further your script indicates that a bridge-table is created which is quite often not the most suitable way to create a data-model. Officially recommended is to develop a data-model as a star-scheme ...
What error message does it display?
-Rob
Hi Rob,
It is showing the message as per the below,
This happens every time when I execute the above code for a large data set that I have.
Thanks
More interesting as the task-message would be the document-log to see when which error happens. If a script runs successfully with a smaller data-set and breaks with a larger one it could mean that it just takes too long and any timeout happens or any resource-threshold was hit and the execution was terminated or that there were any invalid data within the bigger data-set which couldn't be handled.
Beside this there might be potential for some performance optimization, for example by replacing the bridge_temp join with one or several mapping-tables. Mappings could be horizontally and vertically nested - from the table point of view as well as from the applymap() call - and they could be directly used without the need of following loads as joins would do. By loading the data with the right order within the mapping-table you may even avoid the applied if-loop checking.
Further your script indicates that a bridge-table is created which is quite often not the most suitable way to create a data-model. Officially recommended is to develop a data-model as a star-scheme ...