<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techno Oracle &#187; Fundementals of PL/SQL</title>
	<atom:link href="http://www.technooracle.com/oracle-tutorials/category/oracle-plsql/fundementals-of-plsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technooracle.com</link>
	<description>Oracle information centre</description>
	<lastBuildDate>Tue, 17 Apr 2012 12:07:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>NLS_LOWER Function in PL/SQL</title>
		<link>http://www.technooracle.com/oracle-tutorials/nls_lower-function-in-plsql/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/nls_lower-function-in-plsql/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=72</guid>
		<description><![CDATA[NLS_LOWER function returns a string with eache letter in lower case corresponding to the input string given. &#60;strong&#62;Syntax for uisng NLS_LOWER Function&#60;/strong&#62; NLS_LOWER(  &#8216;string&#8217;,'nlsparam&#8217;); Both string and 'nlsparam' can be  CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB. The output  returned is of VARCHAR2 datatype if string is a character datatype and a LOB if string [...]]]></description>
			<content:encoded><![CDATA[<p><code>NLS_LOWER</code> function returns a string with eache letter in lower case corresponding to the input string given.</p>
<p>&lt;strong&gt;Syntax for uisng NLS_LOWER Function&lt;/strong&gt;</p>
<p>NLS_LOWER(  &#8216;string&#8217;,'nlsparam&#8217;);</p>
<p>Both <code>string</code> and <code>'nlsparam'</code> can be  <code>CHAR</code>, <code>VARCHAR2</code>, <code>NCHAR</code>, <code>NVARCHAR2</code>, <code>CLOB</code>, or <code>NCLOB</code>. The output  returned is of <code>VARCHAR2</code> datatype if <code>string </code> is a character datatype and a LOB if <code>string </code> is a LOB datatype.</p>
<p>The <code>'nlsparam'</code> can have the same form and serve the same purpose as in the <code>NLS_INITCAP</code> function.</p>
<p><a id="sthref1682" name="sthref1682"></a></p>
<p>The following Query  returns the character string &#8216;<code>New City'</code>&#8216; using the XFrench linguistic sort sequence:</p>
<pre>SELECT NLS_LOWER
   ('New City', 'NLS_SORT = XFrench')
   FROM DUAL;

Output
------
New City
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/nls_lower-function-in-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INSTRC Function in PL/SQL</title>
		<link>http://www.technooracle.com/oracle-tutorials/instrc-function-in-plsql/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/instrc-function-in-plsql/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 17:36:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=69</guid>
		<description><![CDATA[INSTRC function finds Location of a string, within another string, in Unicode complete characters.INSTRC calculates lengths using Unicode complete characters. Synatx For using INSTRC function INSTRC(string_1, string_2 [, starting_position [, nth_appearance ] ] ) string_1 is the string to search. string_2 is the substring to search for in string_1. starting_position is the position in string_1 [...]]]></description>
			<content:encoded><![CDATA[<p>INSTRC function finds Location of a string, within another string, in Unicode complete characters.INSTRC calculates lengths using Unicode complete characters.</p>
<p><strong>Synatx For using INSTRC function </strong></p>
<p>INSTRC(string_1, string_2 [, starting_position [, nth_appearance ] ] )</p>
<p>string_1 is the string to search.</p>
<p>string_2 is the substring to search for in string_1.</p>
<p>starting_position is the position in string_1 where the search will start. this  field is optional. If omitted, it defaults to 1. The first position in the string is 1. If the starting_position is negative, the function count from back start_position number of characters from the end of string1 and then searches towards the beginning of string1.</p>
<p>nth_appearance is the nth appearance of string2. This argument is optional. If omitted, it defaults to 1.</p>
<p>If string_2 is not found in string_1, then the instr function will return 0.</p>
<p>some examples follow</p>
<p>SQL>SELECT INSTRC(&#8216;John Peter&#8217;, &#8216;n&#8217;, 1, 1)<br />
        FROM dual;<br />
   This query would return 4; the first occurrence of &#8216;n&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/instrc-function-in-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASCII Function in PL/SQL</title>
		<link>http://www.technooracle.com/oracle-tutorials/ascii-function-in-plsql/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/ascii-function-in-plsql/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 16:53:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=67</guid>
		<description><![CDATA[ASCII function returns the NUMBER corresponding to the first Character of expression. Syntax for using ASCII Function ASCII(character); some examples follow SQL>SELECT ASCII(a) from DUAL; this query would return 97 SQL>SELECT ASCII(a) from DUAL; this query would would return 65]]></description>
			<content:encoded><![CDATA[<p>ASCII function returns the NUMBER corresponding to the first Character of expression.</p>
<p><strong>Syntax for using ASCII Function</strong></p>
<p>ASCII(character);</p>
<p>some examples follow</p>
<p>SQL>SELECT ASCII(a)  from DUAL;</p>
<p>this query would return 97</p>
<p>SQL>SELECT ASCII(a)  from DUAL;</p>
<p>this query would would return 65</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/ascii-function-in-plsql/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Comments in PL/SQL</title>
		<link>http://www.technooracle.com/oracle-tutorials/comments-in-plsql/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/comments-in-plsql/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=57</guid>
		<description><![CDATA[The comments are a piece of code that exist to improve readability. The comments are written in the program, either as a single line or multiple lines of documentation. A single line or multiline comments are separated from the rest of the program through delimiters, so the PL / SQL engine will ignore them.Comments are [...]]]></description>
			<content:encoded><![CDATA[<p>The comments are a piece of code that exist to improve readability. The comments are written in the program, either as a single line or multiple lines of documentation. A single line or multiline comments are separated from the rest of the program through delimiters, so the PL / SQL engine will ignore them.Comments are of Two types.Inline comments and multi line comments.</p>
<p><strong>Inline comments </strong></p>
<p>Inline Comments begins with a Double hyphen(The single line comment delimiter, ). The comment starts after the hyphen, and includes a single line of text only. If a second line is needed, the following should also include the delimiter at the beginning.</p>
<p>The following example shows use of single line comments<br />
<span id="more-57"></span><br />
DECLARE<br />
v_emp_name VARCHAR2(50);<br />
BEGIN<br />
&#8211; Retrieve the name of a employee into a local variable from employee database<br />
SELECT emp_name<br />
INTO v_emp_name<br />
FROM employees<br />
WHERE emp_id = &#8217;9895678&#8242;;<br />
&#8211;Prints the employee name to the screen<br />
DBMS_OUTPUT.PUT_LINE(&#8216;The Employee name for employee id 9895678 is: &#8216;<br />
||v_emp_id);</p>
<p>EXCEPTION<br />
&#8211;print exception if any<br />
WHEN OTHERS THEN<br />
DBMS_OUTPUT.PUT_LINE (SQLERRM);<br />
END;<br />
/</p>
<p><strong>Multi Line Comments</strong></p>
<p>anonymous comments of several lines of multi line comment use &#8216;/*; as a starting comment delimiter and * / ;as a ending comment delimiter. We can use multiline Comments on several lines or paragraphs. They are useful for headings or notes, including version control in the PL / SQL directly. The following example illustrates the multi-line comments in an anonymous block:</p>
<p>/*<br />
Author : MARY PETER<br />
Description : Sample Program to find employee name<br />
*/<br />
DECLARE<br />
v_emp_name VARCHAR2(50);<br />
BEGIN<br />
&#8211; Retrieve the name of a employee into a local variable from employee database<br />
SELECT emp_name<br />
INTO v_emp_name<br />
FROM employees<br />
WHERE emp_id = &#8217;9895678&#8242;;<br />
&#8211;Prints the employee name to the screen<br />
DBMS_OUTPUT.PUT_LINE(&#8216;The Employee name for employee id 9895678 is: &#8216;<br />
||v_emp_id);</p>
<p>/*<br />
This code will not be executed</p>
<p>UPDATE emp_salary =emp_salary *.23<br />
WHERE emp_name=v_emp_id<br />
*/<br />
EXCEPTION<br />
&#8211;print exception if any<br />
WHEN OTHERS<br />
THEN DBMS_OUTPUT.PUT_LINE (SQLERRM);<br />
END;<br />
/</p>
<p>Multiline comments can be used for</p>
<p>■ Header information For PL/SQL scripts<br />
■ Header information For PL/SQL Objects<br />
■ To comment blocks of code. This is useful for the trial or effectively eliminate the code, but allowing for future use of the code<br />
comments that go beyond simple lines<br />
■ For comments that extend beyond single lines</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/comments-in-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lexical Units</title>
		<link>http://www.technooracle.com/oracle-tutorials/lexical-units/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/lexical-units/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 11:57:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=56</guid>
		<description><![CDATA[Lexical units are the characters that make up PL/SQL Characters are grouped together into four lexical units: identifiers,literals, delimiters, and comments. We discuss the main components of PL/SQL Lexical Units in the following sections. click on the following links to read more about Lexical units Identifiers Literals Delimiters Comments]]></description>
			<content:encoded><![CDATA[<p>Lexical units are the characters that make up PL/SQL Characters are grouped together into four lexical units: identifiers,literals, delimiters, and comments.<br />
We discuss the main components of PL/SQL Lexical Units in the following sections.<br />
click on the following links to read more about Lexical units</p>
<p><span style="color: #0000ff;"><a href="http://www.technooracle.com/2010/06/identifiers-in-plsql/">Identifiers</a></span></p>
<p><span style="color: #0000ff;"><a href="http://www.technooracle.com/2010/06/lexical-units/">Literals</a></span></p>
<p><span style="color: #0000ff;"><a href="http://www.technooracle.com/2010/06/delimiters">Delimiters</a></span></p>
<p><span style="color: #0000ff;"><a href="http://www.technooracle.com/2010/06/comments-in-plsql/">Comments</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/lexical-units/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Declaration in PL/SQL</title>
		<link>http://www.technooracle.com/oracle-tutorials/variable-declaration-in-plsql/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/variable-declaration-in-plsql/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 11:48:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>
		<category><![CDATA[declaration]]></category>
		<category><![CDATA[declaration in pl sql]]></category>
		<category><![CDATA[declare pl sql]]></category>
		<category><![CDATA[Declaring constant Variables]]></category>
		<category><![CDATA[pl sql declare]]></category>
		<category><![CDATA[pl sql declare variable]]></category>
		<category><![CDATA[pl sql variables]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=55</guid>
		<description><![CDATA[PL/SQL program stores values in variables and constants.You can declare variables and constants in the declarative part of any PL/SQL block, subprogram, or package. Declarations allocate storage space for a value, specify its datatype, and name the storage location so that you can reference it. As the program executes, the values of variables can change, [...]]]></description>
			<content:encoded><![CDATA[<p>PL/SQL  program stores values in variables and constants.You can declare variables and constants in the declarative part of any PL/SQL block, subprogram, or package.</p>
<p>Declarations allocate storage space for a value, specify its datatype, and name the storage location so that you can reference it.<br />
As the program executes, the values of variables can change, but the values of constants cannot.</p>
<h2><strong>Declaring Variables</strong></h2>
<p>To declare simple variable, the format is:</p>
<p>VARIABLE_NAME DATATYPE;</p>
<p>Some examples follow:</p>
<p>DECLARE<br />
v_emp_name VARCHAR2(10);<br />
v_emp_number NUMBER(10);<br />
v_emp_bdate DATE;<br />
BEGIN<br />
&#8211;some executable statments using these variables</p>
<p>END;</p>
<h2><strong>Assigning values to Variables</strong></h2>
<p>To declare some variables and assign values we use := (the assignment operator)</p>
<p>The format is</p>
<p>VARIABLE_NAME DATATYPE := VARIABLE_VALUE;</p>
<p>Some examples follow:</p>
<p>DECLARE<br />
v_emp_name VARCHAR2(20) := &#8216;PETER&#8217;;<br />
v_emp_number NUMBER(10) := 1899891;<br />
BEGIN<br />
&#8211;some executable statments using these variables<br />
END;</p>
<p>When the program executes, the values of variables may change.In the below example value of v_emp_number 0 in Declaration,As the program executes the value of v_emp_number change to a value which stored in the database associated with the employee name &#8216;PETER&#8217;</p>
<p>DECLARE<br />
v_emp_name VARCHAR2(20) := &#8216;PETER&#8217;;<br />
v_emp_number NUMBER(10) := 0;<br />
BEGIN<br />
&#8211; This Query find employee number associated with the name &#8216;PETER&#8217; and stores it into variable v_emp_number<br />
SELECT emp_number into v_emp_number<br />
FROM employees<br />
WHERE emp_name=&#8217;PETER&#8217;;</p>
<p>&#8211;This prints the output to the user screen<br />
DBMS_OUTPUT.PUT_LINE(v_emp_number);<br />
END;</p>
<p><strong>OUTPUT</strong><br />
&#8212;&#8212;&#8212;&#8212;-<br />
1899891</p>
<h2><strong>Declaring constant Variables</strong></h2>
<p>A constant variable is a variable that is assigned a value during the declaration using the CONSTANT keyword. A constant variable maintains the same value throughout the life of the procedure. You cannot change the value of a constant outside the declaration. If you try to change the value of a constant outside the declaration section, you will get an error.</p>
<p>To declare a constant,Format is:</p>
<p>VARIABLE_NAME CONSTANT DATATYPE := VARIABLE_VALUE;</p>
<p>Some examples follow:</p>
<p>DECLARE<br />
v_message CONSTANT VARCHAR2(10) := &#8216;Hello World&#8217;;<br />
v_emp_number CONSTANT NUMBER := 123;<br />
BEGIN<br />
&#8211;some executable statments that use these variables<br />
END;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/variable-declaration-in-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delimiters</title>
		<link>http://www.technooracle.com/oracle-tutorials/delimiters/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/delimiters/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 11:44:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=54</guid>
		<description><![CDATA[Delimiters are symbols used by Oracle for a special purpose.In other words a delimiter is a simple or compound symbol that has a special meaning to PL/SQL. They act as separators, database link indicators, mathematical operators, and concatenation operators. The following table lists the delimiters available. Delimiter Description +, –, *, /, ** Mathematical operators [...]]]></description>
			<content:encoded><![CDATA[<p>Delimiters are symbols used by Oracle for a special purpose.In other words a delimiter is a simple or compound symbol that has a special meaning to PL/SQL. They act as separators,<br />
database link indicators, mathematical operators, and concatenation operators.</p>
<p>The following table lists the delimiters available.</p>
<table>
<tbody>
<tr>
<td><strong>Delimiter</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>+, –, *, /, **</td>
<td>Mathematical operators</td>
</tr>
<tr>
<td>..</td>
<td>Range operator, frequently used in for-loops</td>
</tr>
<tr>
<td>&lt;, &gt;, &lt;&gt;, =, !=,<br />
~=, ^=, &lt;=, &gt;=</td>
<td>Relational operators (greater than, less than, etc.)</td>
</tr>
<tr>
<td>&#8211;, /*, */</td>
<td>Comment indicators (single line and multiline)</td>
</tr>
<tr>
<td>&lt;&lt;, &gt;&gt;</td>
<td>Label delimiters</td>
</tr>
<tr>
<td>%</td>
<td>Attribute indicator, used with TYPE, ROWTYPE, NOTFOUND, and<br />
other attributes</td>
</tr>
<tr>
<td>(, )</td>
<td>Expression delimiters, often used in the WHERE clause with AND<br />
and OR operators</td>
</tr>
<tr>
<td>:</td>
<td>Bind variable indicator—bind variables are used for performance<br />
reasons in PL/SQL to reduce the number of parses required for<br />
SQL where only the values of the variables change and not the<br />
structure of the SQL itself</td>
</tr>
<tr>
<td>,</td>
<td>Item separator—a comma separates lists whenever present in<br />
PL/SQL</td>
</tr>
<tr>
<td>‘</td>
<td>Character string delimiter—strings or character literals between<br />
two single quotes are case sensitive</td>
</tr>
<tr>
<td>“</td>
<td>Quoted identifier delimiter—quoted identifiers are case sensitive<br />
and can contain spaces and special characters</td>
</tr>
<tr>
<td>@</td>
<td>Database link delimiter—in a SQL statement the string following<br />
this symbol is the database name that is linked to the current<br />
instance</td>
</tr>
<tr>
<td>;</td>
<td>Statement terminator, used at the completion of every statement or<br />
declaration in PL/SQL to signify the completion of the command</td>
</tr>
<tr>
<td>:=</td>
<td>Assignment delimiter—this delimiter initializes variables (to the<br />
left of the operator) with values (to the right of the operator)</td>
</tr>
<tr>
<td>=&gt;</td>
<td>Association operator, used when calling a procedure or function,<br />
passing values to the parameters</td>
</tr>
<tr>
<td>||</td>
<td>Concatenation operator, combines the string on the left with the<br />
string on the right of the operator</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/delimiters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL Character Set</title>
		<link>http://www.technooracle.com/oracle-tutorials/plsql-character-set/</link>
		<comments>http://www.technooracle.com/oracle-tutorials/plsql-character-set/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 11:41:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fundementals of PL/SQL]]></category>
		<category><![CDATA[PL SQL character set]]></category>

		<guid isPermaLink="false">http://www.technooracle.com/?p=53</guid>
		<description><![CDATA[A PL/SQL program consists of a sequence of statements, each PL/SQL statments are written using a specific set of characters.These characters are shown below Type Characters Letters a-z,A-Z, Digits 0..9 Symbols ~ ! @ # $ % &#38; amp; * ( ) _ &#8211; + = &#124; [ ] { } : ; &#8221; &#8216; [...]]]></description>
			<content:encoded><![CDATA[<p>A PL/SQL program consists of a sequence of statements, each PL/SQL statments are written using a specific set of characters.These characters are shown below</p>
<table border="1">
<tbody>
<tr>
<td><strong><span>Type</span></strong></td>
<td><strong>Characters</strong></td>
</tr>
<tr>
<td>Letters</td>
<td>a-z,A-Z,</td>
</tr>
<tr>
<td>Digits</td>
<td>0..9</td>
</tr>
<tr>
<td>Symbols</td>
<td>~  !  @  #  $  %  &amp; amp; *  ( )  _  &#8211;  +  =  |  [ ]  { } :  ;  &#8221;  &#8216; &lt; &gt; , . ? /</td>
</tr>
<tr>
<td>Whitespace</td>
<td>Tab, Space, Carriage return</td>
</tr>
</tbody>
</table>
<p>PL/SQL keywords are not case-sensitive, so lower-case letters are equivalent to corresponding upper-case letters.</p>
<p>For eg.emp_sal,EMP_SAL are treated as same.but they are treated diffrently in C,C++ etc</p>
<p>except within string and character literals.</p>
<p><strong>Special Symbols</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong><span>Symbol</span></strong></td>
<td><strong><span>Description</span></strong></td>
</tr>
<tr>
<td>;</td>
<td>statement terminator</td>
</tr>
<tr>
<td>%</td>
<td>Attribute indicator(cursor attributes etc)</td>
</tr>
<tr>
<td>_</td>
<td>Single-byte wildcard symbol</td>
</tr>
<tr>
<td>:</td>
<td>Host variable indicator</td>
</tr>
<tr>
<td>**</td>
<td>Double asterisk(exponentiation operator)</td>
</tr>
<tr>
<td>&lt; &gt; and !=</td>
<td>&#8220;Not equals&#8221;</td>
</tr>
<tr>
<td>||</td>
<td>Double vertical bar: concatenation operator</td>
</tr>
<tr>
<td>&lt;&lt; and &gt;&gt;</td>
<td>Label delimiters</td>
</tr>
<tr>
<td>&lt;= and &gt;=</td>
<td>Relational operators</td>
</tr>
<tr>
<td>:=</td>
<td>Assignment operator</td>
</tr>
<tr>
<td>=&gt;</td>
<td>Association operator for positional notation</td>
</tr>
<tr>
<td>&#8211;</td>
<td>Double dash: single-line comment indicator</td>
</tr>
<tr>
<td>/* and */</td>
<td>Beginning and ending multiline comment block delimiters</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.technooracle.com/oracle-tutorials/plsql-character-set/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

