Important Announcement
This forum will be discontinued.
The creation of new topics is disabled.
Please open GitHub issues for the corresponding topics/products in the following Trivadis repositories:
- PL/SQL & SQL Coding Guidelines
- PL/SQL Cop Command Line
- PL/SQL Cop for SonarQube
- PL/SQL Cop for SQL Developer
- PL/SQL Cop Validators
- PL/SQL Analyzer
- PL/SQL Unwrapper
A lot of users have already a GitHub account and the management of the issues is better than in this forum. For example, closing a forum topic is never related to a product change. Closing a GitHub issue for an accepted bug means that the bug is fixed. This should simplify the work for all involved parties.
See this blog post for more information.
Thank you for your understanding.
When using expressions in the offset/fetch clause it also seems to go wrong (although it is ordered). e.g. the following query: SELECT /*+ first_rows...
A simple example where I get the error: SELECT naamFROM dl.patientOFFSET 10 ROWSFETCH NEXT 3 ROWS ONLY;
Is there any workaround I can use in meanwhile (e.g. download an older version ?). I would like to implement my own validators and this would be a gre...