<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/plsql</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 18 Jun 2013 15:13:12 GMT</pubDate>
<item>
<title>(PL/SQL) Hello World - geekzspot</title>
<link>http://snipplr.com/view/71058/hello-world/</link>
<description><![CDATA[ <p>Hello World</p> ]]></description>
<pubDate>Mon, 06 May 2013 11:34:35 GMT</pubDate>
<guid>http://snipplr.com/view/71058/hello-world/</guid>
</item>
<item>
<title>(PL/SQL) Selecting a Random Row from Table in MySQL - apphp-snippets</title>
<link>http://snipplr.com/view/70369/selecting-a-random-row-from-table-in-mysql/</link>
<description><![CDATA[ <p>Here the simplest way of selecting random rows from the MySQL database with using "ORDER BY RAND()" clause in the query.</p> ]]></description>
<pubDate>Tue, 12 Mar 2013 22:09:43 GMT</pubDate>
<guid>http://snipplr.com/view/70369/selecting-a-random-row-from-table-in-mysql/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Loop through an Array - geekzspot</title>
<link>http://snipplr.com/view/70012/oracle-loop-through-an-array/</link>
<description><![CDATA[ <p>Loop through a fixed list of values or strings</p> ]]></description>
<pubDate>Wed, 20 Feb 2013 10:50:32 GMT</pubDate>
<guid>http://snipplr.com/view/70012/oracle-loop-through-an-array/</guid>
</item>
<item>
<title>(PL/SQL) PL/SQL Loop through a SELECT FROM a_table; - geekzspot</title>
<link>http://snipplr.com/view/69894/plsql-loop-through-a-select-from-atable/</link>
<description><![CDATA[ <p>You can put it in a Procedure or Function or run it as an anonymous block of SQL</p> ]]></description>
<pubDate>Tue, 12 Feb 2013 07:37:09 GMT</pubDate>
<guid>http://snipplr.com/view/69894/plsql-loop-through-a-select-from-atable/</guid>
</item>
<item>
<title>(PL/SQL) PL/SQL Loop 1 to n times - geekzspot</title>
<link>http://snipplr.com/view/69893/plsql-loop-1-to-n-times/</link>
<description><![CDATA[ <p>You can also run this an an anonymous SQL Block</p> ]]></description>
<pubDate>Tue, 12 Feb 2013 07:34:31 GMT</pubDate>
<guid>http://snipplr.com/view/69893/plsql-loop-1-to-n-times/</guid>
</item>
<item>
<title>(PL/SQL) Oracle User-Defined Exception - geekzspot</title>
<link>http://snipplr.com/view/69725/oracle-userdefined-exception/</link>
<description><![CDATA[ <p>You can create your own Exceptions in PL/SQL</p> ]]></description>
<pubDate>Fri, 01 Feb 2013 08:39:09 GMT</pubDate>
<guid>http://snipplr.com/view/69725/oracle-userdefined-exception/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Elapsed Time - geekzspot</title>
<link>http://snipplr.com/view/69512/oracle-elapsed-time/</link>
<description><![CDATA[ <p>Calculate the elapsed time between two points</p> ]]></description>
<pubDate>Thu, 17 Jan 2013 05:32:44 GMT</pubDate>
<guid>http://snipplr.com/view/69512/oracle-elapsed-time/</guid>
</item>
<item>
<title>(PL/SQL) Oracle If Exists - geekzspot</title>
<link>http://snipplr.com/view/69422/oracle-if-exists/</link>
<description><![CDATA[ <p>Function to test for the existence of at least 1 matching row, without having to count them all!</p> ]]></description>
<pubDate>Fri, 11 Jan 2013 03:24:18 GMT</pubDate>
<guid>http://snipplr.com/view/69422/oracle-if-exists/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Cursor examples - geekzspot</title>
<link>http://snipplr.com/view/69402/oracle-cursor-examples/</link>
<description><![CDATA[ <p>Write to a cursor, with parameters, read, print</p> ]]></description>
<pubDate>Thu, 10 Jan 2013 05:45:25 GMT</pubDate>
<guid>http://snipplr.com/view/69402/oracle-cursor-examples/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Package Procedure Function Name Self-reference - geekzspot</title>
<link>http://snipplr.com/view/69337/oracle-package-procedure-function-name-selfreference/</link>
<description><![CDATA[ <p>$$PLSQL_UNIT and $$PLSQL_LINE will give a self-reference to the Package Name (or a Procedure Name or a Function Name) and line number.

Documentation at http://docs.oracle.com/cd/B19306_01/appdev.102/b14261/fundamentals.htm#sthref557</p> ]]></description>
<pubDate>Thu, 03 Jan 2013 12:13:09 GMT</pubDate>
<guid>http://snipplr.com/view/69337/oracle-package-procedure-function-name-selfreference/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Get the Schema Name in a Script - geekzspot</title>
<link>http://snipplr.com/view/68930/oracle-get-the-schema-name-in-a-script/</link>
<description><![CDATA[ <p>Get the Schema Name into a Script Bind Variable</p> ]]></description>
<pubDate>Tue, 04 Dec 2012 03:07:11 GMT</pubDate>
<guid>http://snipplr.com/view/68930/oracle-get-the-schema-name-in-a-script/</guid>
</item>
<item>
<title>(PL/SQL) Oracle Get the Database Name in a Script - geekzspot</title>
<link>http://snipplr.com/view/68929/oracle-get-the-database-name-in-a-script/</link>
<description><![CDATA[ <p>Get the Database Name in a Script Bind Variable</p> ]]></description>
<pubDate>Tue, 04 Dec 2012 03:06:08 GMT</pubDate>
<guid>http://snipplr.com/view/68929/oracle-get-the-database-name-in-a-script/</guid>
</item>
<item>
<title>(PL/SQL) How To Change The Value Of A Sequence In PL/SQL - rtperson</title>
<link>http://snipplr.com/view/68869/how-to-change-the-value-of-a-sequence-in-plsql/</link>
<description><![CDATA[ <p>I'm pretty meh about Oracle's PL/SQL, but its inability to reference and change sequences has been pretty frustrating over the years. Until now. Thanks to the Puget Sound Oracle Users Group's website (psoug.org) for showing me how to do this.</p> ]]></description>
<pubDate>Sun, 02 Dec 2012 12:39:22 GMT</pubDate>
<guid>http://snipplr.com/view/68869/how-to-change-the-value-of-a-sequence-in-plsql/</guid>
</item>
<item>
<title>(PL/SQL) Oracle PL/SQL DBMS_OUTPUT Enable - geekzspot</title>
<link>http://snipplr.com/view/68819/oracle-plsql-dbmsoutput-enable/</link>
<description><![CDATA[ <p>Programatically enable DBMS_OUPUT</p> ]]></description>
<pubDate>Thu, 29 Nov 2012 08:31:42 GMT</pubDate>
<guid>http://snipplr.com/view/68819/oracle-plsql-dbmsoutput-enable/</guid>
</item>
<item>
<title>(PL/SQL) Oracle send email - geekzspot</title>
<link>http://snipplr.com/view/68812/oracle-send-email/</link>
<description><![CDATA[ <p>Send a test email from Oracle database</p> ]]></description>
<pubDate>Thu, 29 Nov 2012 03:45:08 GMT</pubDate>
<guid>http://snipplr.com/view/68812/oracle-send-email/</guid>
</item>
<item>
<title>(PL/SQL) oracle database scheduler jobs - geekzspot</title>
<link>http://snipplr.com/view/68798/oracle-database-scheduler-jobs/</link>
<description><![CDATA[ <p>how to create a job to collect Table size metrics over time, with email notification</p> ]]></description>
<pubDate>Wed, 28 Nov 2012 15:30:19 GMT</pubDate>
<guid>http://snipplr.com/view/68798/oracle-database-scheduler-jobs/</guid>
</item>
<item>
<title>(PL/SQL) "If Exists" PL/SQL Function - geekzspot</title>
<link>http://snipplr.com/view/68013/if-exists-plsql-function/</link>
<description><![CDATA[ <p>Boolean "if exists" Function</p> ]]></description>
<pubDate>Tue, 30 Oct 2012 03:45:23 GMT</pubDate>
<guid>http://snipplr.com/view/68013/if-exists-plsql-function/</guid>
</item>
<item>
<title>(PL/SQL) PL/SQL Constants - geekzspot</title>
<link>http://snipplr.com/view/67901/plsql-constants/</link>
<description><![CDATA[ <p>Constants are a great way to standardize

See also PLSQL Subtypes

Here is an example:</p> ]]></description>
<pubDate>Wed, 24 Oct 2012 05:24:13 GMT</pubDate>
<guid>http://snipplr.com/view/67901/plsql-constants/</guid>
</item>
<item>
<title>(PL/SQL) PL/SQL Subtypes - geekzspot</title>
<link>http://snipplr.com/view/67899/plsql-subtypes/</link>
<description><![CDATA[ <p>Subtypes are a great way to standardize

See also PLSQL Constants

Here is an example:</p> ]]></description>
<pubDate>Wed, 24 Oct 2012 05:22:16 GMT</pubDate>
<guid>http://snipplr.com/view/67899/plsql-subtypes/</guid>
</item>
<item>
<title>(PL/SQL) Compile All Invalid Objects - geekzspot</title>
<link>http://snipplr.com/view/67878/compile-all-invalid-objects/</link>
<description><![CDATA[ <p>Compile all invalidated code. Just to see if it really is invalid, or just got invalidated.</p> ]]></description>
<pubDate>Tue, 23 Oct 2012 08:32:13 GMT</pubDate>
<guid>http://snipplr.com/view/67878/compile-all-invalid-objects/</guid>
</item>
</channel>
</rss>