Hi everyone,
I will try to explain the behavior as good as I can but I don't have any explanation for it. Maybe someone else does and has an idea how I can track the 'culprit' / improve the behavior.
We have an item list with related documents. This item list has a data row column which outputs an HTML fragment for the current row to trigger a rename function.
select '
case SUBSTRING('{USERLAN}',1,2)
when 'de' then 'Umbenennen'
else 'Rename'
end
+'">
'
AS Rename
The only variable is the user language, there's no FROM, so it should be executed really fast.
For whatever reason so the diagnostic log shows that the execution for one row took 87ms seconds while another took 4279ms.
I don't have the slightest idea, why this happened, how I can track this or how to prevent it.
My best guess is, that a bulk of SQL commands needed to be executed and this one was in a queue which execution was delayed.
The version is WEBCON BPS 2023.1.2.99.
Best regards,
Daniel