<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Support Forums - Recent Posts				            </title>
            <link>https://www.salvis.com/blog/forum/</link>
            <description>Forum</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 14 Jul 2026 10:27:05 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Answer to: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-140</link>
                        <pubDate>Fri, 20 Dec 2019 21:03:35 +0000</pubDate>
                        <description><![CDATA[Yes, you&#039;re right. That&#039;s another parser bug. I&#039;ve opened a ticket (PLSQLCOP-269). Parse error when using expressions in offset/rowcount in row_limiting_clause.The first issue is caused by d...]]></description>
                        <content:encoded><![CDATA[<p>Yes, you're right. That's another parser bug. I've opened a ticket (PLSQLCOP-269). Parse error when using expressions in offset/rowcount in row_limiting_clause.</p><p>The first issue is caused by dealing with keyword offset. It is allowed as table alias and that leads to a conflict. </p><p>Right now the best what you can do is using simple variables or constants. This should work.</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-140</guid>
                    </item>
				                    <item>
                        <title>Answer to: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-139</link>
                        <pubDate>Thu, 19 Dec 2019 16:02:32 +0000</pubDate>
                        <description><![CDATA[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(25) */                 api.patient_ot (pa...]]></description>
                        <content:encoded><![CDATA[<p>When using expressions in the offset/fetch clause it also seems to go wrong (although it is ordered).</p><p> e.g. the following query:</p><p><em><span style="font-size: 10pt">SELECT /*+ first_rows(25) */</span></em></p><p><em><span style="font-size: 10pt">                 api.patient_ot (patient_nr =&gt; p.patient_id</span></em></p><p><em><span style="font-size: 10pt">                                ,afdelings_code =&gt; p.afdeling_id</span></em></p><p><em><span style="font-size: 10pt">                                ,naam =&gt; p.naam</span></em></p><p><em><span style="font-size: 10pt">                                ,voornaam =&gt; CASE l_tonenvoornaam WHEN 1 THEN p.voornaam ELSE null END</span></em></p><p><em><span style="font-size: 10pt">                                ,geslacht =&gt; p.geslacht</span></em></p><p><em><span style="font-size: 10pt">                                ,geboortedatum =&gt; p.geboorte_dt</span></em></p><p><em><span style="font-size: 10pt">                                ,email =&gt; p.e_mail</span></em></p><p><em><span style="font-size: 10pt">                                ,rijksregister_nr =&gt; p.rijksregister_nr</span></em></p><p><em><span style="font-size: 10pt">                                ,gsm_nr =&gt; p.gsm_nr</span></em></p><p><em><span style="font-size: 10pt">                                ,adressen =&gt; NULL)</span></em></p><p><em><span style="font-size: 10pt">                ,COUNT (1) OVER ()</span></em></p><p><em><span style="font-size: 10pt">        BULK COLLECT INTO l_patientlist.items, l_rowcount</span></em></p><p><em><span style="font-size: 10pt">        FROM dl.patient p WHERE 1=1</span></em></p><p><em><span style="font-size: 10pt">        AND (p_naam is null OR p.naam LIKE p_naam)</span></em></p><p><em><span style="font-size: 10pt">        AND (p_voornaam is null OR p.voornaam LIKE p_voornaam)</span></em></p><p><em><span style="font-size: 10pt">        AND (p_patient_nr is null OR p.patient_id = p_patient_nr)</span></em></p><p><em><span style="font-size: 10pt">        AND (p_rijksregister_nr is null OR p.rijksregister_nr = p_rijksregister_nr)</span></em></p><p><em><span style="font-size: 10pt">        AND (p_geboortedatum is null OR p.geboorte_dt = TO_DATE(p_geboortedatum))</span></em></p><p><em><span style="font-size: 10pt">        AND (p_afdelings_code is null OR p.afdeling_id = p_afdelings_code)</span></em></p><p><em><span style="font-size: 10pt">        ORDER BY p.voornaam, p.naam</span></em></p><p><em><span style="font-size: 10pt">        OFFSET (l_patientlist.page - 1) * l_patientlist.limit ROWS</span></em></p><p><em><span style="font-size: 10pt">        FETCH NEXT l_patientlist.limit ROWS ONLY;</span></em></p><p>When putting the expressions in a variable it works fine.</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>icams</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-139</guid>
                    </item>
				                    <item>
                        <title>RE: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-138</link>
                        <pubDate>Thu, 19 Dec 2019 10:53:16 +0000</pubDate>
                        <description><![CDATA[using an alias works as well. In fact it is required also for the subquery variant. updated post.]]></description>
                        <content:encoded><![CDATA[using an alias works as well. In fact it is required also for the subquery variant. updated post.]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-138</guid>
                    </item>
				                    <item>
                        <title>RE: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-137</link>
                        <pubDate>Thu, 19 Dec 2019 10:47:34 +0000</pubDate>
                        <description><![CDATA[opened ticket PLSQLCOP-268]]></description>
                        <content:encoded><![CDATA[opened ticket PLSQLCOP-268]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-137</guid>
                    </item>
				                    <item>
                        <title>Answer to: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-136</link>
                        <pubDate>Thu, 19 Dec 2019 10:33:44 +0000</pubDate>
                        <description><![CDATA[Hmm, this looks like a parser bug. Thanks for reporting this. I&#039;ll open a ticket.However, It usually does not make sense to use the row_limiting_clause without ordering the result. And since...]]></description>
                        <content:encoded><![CDATA[<p>Hmm, this looks like a parser bug. Thanks for reporting this. I'll open a ticket.</p><p>However, It usually does not make sense to use the row_limiting_clause without ordering the result. And since you asked for a workaround...</p><pre>SELECT naam<br />  FROM dl.patient<br /> ORDER BY naam<br />OFFSET 10 ROWS<br /> FETCH NEXT 3 ROWS ONLY;</pre><p>Using a subquery works as well: </p><pre>SELECT * FROM (SELECT naam FROM dl.patient) a<br />OFFSET 10 ROWS<br /> FETCH NEXT 3 ROWS ONLY;</pre><p> </p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-136</guid>
                    </item>
				                    <item>
                        <title>Answer to: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-135</link>
                        <pubDate>Thu, 19 Dec 2019 09:37:32 +0000</pubDate>
                        <description><![CDATA[A simple example where I get the error:SELECT naamFROM dl.patientOFFSET 10 ROWSFETCH NEXT 3 ROWS ONLY;]]></description>
                        <content:encoded><![CDATA[<p>A simple example where I get the error:</p><p>SELECT naam<br />FROM dl.patient<br />OFFSET 10 ROWS<br />FETCH NEXT 3 ROWS ONLY;</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>icams</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-135</guid>
                    </item>
				                    <item>
                        <title>Answer to: Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-134</link>
                        <pubDate>Tue, 17 Dec 2019 15:59:42 +0000</pubDate>
                        <description><![CDATA[Can you please provide a full example? Thx]]></description>
                        <content:encoded><![CDATA[<p>Can you please provide a full example? Thx</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-134</guid>
                    </item>
				                    <item>
                        <title>Offset/Fetch giving errors</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-133</link>
                        <pubDate>Tue, 17 Dec 2019 15:29:17 +0000</pubDate>
                        <description><![CDATA[Hello,When using OFFSET/FETCH I am getting following error:4-Blocker: no viable alternative at input &#039;(&#039;This is not supported by PL/SQL Cop ? If no, is there any workaround ?]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p><p>When using OFFSET/FETCH I am getting following error:</p><p>4-Blocker: no viable alternative at input '('</p><p>This is not supported by PL/SQL Cop ? If no, is there any workaround ?</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>icams</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/offset-fetch-giving-errors/#post-133</guid>
                    </item>
				                    <item>
                        <title>Answer to: Code templates corrupt after installation PL/SQL Cop</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/code-templates-corrupt-after-installation-pl-sql-cop/#post-132</link>
                        <pubDate>Mon, 16 Dec 2019 16:38:24 +0000</pubDate>
                        <description><![CDATA[No, this is not known. I can reproduce it. I use some utPLSQL templates. I&#039;ve done the following:1) typed &quot;ut&quot;, crtl-tab, selected a template2) right click, selected &quot;Check&quot;3) typed &quot;ut&quot;, ct...]]></description>
                        <content:encoded><![CDATA[<p>No, this is not known. I can reproduce it. I use some utPLSQL templates. I've done the following:</p><p>1) typed "ut", crtl-tab, selected a template</p><p>2) right click, selected "Check"</p><p>3) typed "ut", ctrl-tab, selected another template</p><p>So using them does not seem to be a problem. But when I open "Preferences" as you've mentioned, no code templates are shown. Looks like a bug. Strange.</p><p>As a workaround, never save code templates in the preferences after "Check". Restart SQL Developer before changing code templates. Then you shouldn't lose them (again). Not nice, I know, but at the moment I have no better idea.</p><p> </p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>Philipp Salvisberg</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/code-templates-corrupt-after-installation-pl-sql-cop/#post-132</guid>
                    </item>
				                    <item>
                        <title>Code templates corrupt after installation PL/SQL Cop</title>
                        <link>https://www.salvis.com/blog/forum/plsql-cop/code-templates-corrupt-after-installation-pl-sql-cop/#post-131</link>
                        <pubDate>Mon, 16 Dec 2019 16:07:42 +0000</pubDate>
                        <description><![CDATA[Hello,I am encountering following problem: after I perform a check with PL/SQL Cop for SQL Developer I can not use my code templates anymore. When I open Preferences -&gt; Database -&gt; SQL...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p><p>I am encountering following problem: after I perform a check with PL/SQL Cop for SQL Developer I can not use my code templates anymore. When I open <em>Preferences </em>-&gt; <em>Database -&gt; SQL Editor Code Templates</em> all the code templates are gone.</p><p>When I restart SQL Developer everything is ok again, but when I try to add a new template first the configuration is corrupt.</p><p>Is this a known issue ?</p>]]></content:encoded>
						                            <category domain="https://www.salvis.com/blog/forum/"></category>                        <dc:creator>icams</dc:creator>
                        <guid isPermaLink="true">https://www.salvis.com/blog/forum/plsql-cop/code-templates-corrupt-after-installation-pl-sql-cop/#post-131</guid>
                    </item>
							        </channel>
        </rss>
		