Hi, your reply was very helpfull. We made it with another tool, but logparser is smarter and much more faster.
It's always the same, the solutuin was not far away ;-) Better to look in the path of the app, and you'll find the solution. But thanks very much for the hint.
With "path" I get the required information of the files with lenght over 230 digits (incl. path).
Thanks a lot. Here my solution for completion.
Best regards
adam.
SELECT Path,
STRLEN(Path) AS GesLen
INTO test.csv
FROM C:\*.*
WHERE GesLen > 230
ORDER BY GesLen DESC