<?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>TechnoBlogy &#187; parameters</title>
	<atom:link href="http://technoblogy.net/tag/parameters/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblogy.net</link>
	<description>Technology with a Big difference</description>
	<lastBuildDate>Mon, 05 Dec 2011 17:29:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Scaling-Optimizing MySQL Database</title>
		<link>http://technoblogy.net/scaling-optimizing-mysql-database/</link>
		<comments>http://technoblogy.net/scaling-optimizing-mysql-database/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 08:05:21 +0000</pubDate>
		<dc:creator>taxi</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[database optimization]]></category>
		<category><![CDATA[Master Master replication]]></category>
		<category><![CDATA[optimizing]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[scaling]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=1619</guid>
		<description><![CDATA[How to boost your MySQL database for high/Efficient performance? Following]]></description>
			<content:encoded><![CDATA[<p>How to boost your MySQL database for high/Efficient performance? Following are some of the techniques used to optimize your database:</p>
<ul>
<li><strong>Query optimization</strong>: The most most important fact for DB optimization is to tune in your queries for faster data manipulation activities. Frequently check slow query log and tune the heavy resource intensive queries.</li>
<li><strong>Master-Master Replication</strong>:</li>
<li><strong>In Memory Usage</strong>:</li>
<li><strong>Thread Concurrency</strong>:</li>
<li><strong>RAID</strong>: Move your servers disk on RAID environment</li>
<li><strong>Key Parameters</strong>:  Tune our key parameters for faster CRUD operations.</li>
</ul>
<p>Hope implementing above mentioned techniques you will be able to optimize your MySQL.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/scaling-optimizing-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Custom Functions in Oracle</title>
		<link>http://technoblogy.net/creating-custom-functions-in-oracle/</link>
		<comments>http://technoblogy.net/creating-custom-functions-in-oracle/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:34:15 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[parameters]]></category>

		<guid isPermaLink="false">http://technoblogy.net/creating-custom-functions-in-oracle/</guid>
		<description><![CDATA[Here it is a simple procedure to create and call a custom function in Oracle. A custom function is a simple PL/SQL subprogram that is used to calculate a value. It creation syntax is almost same as of procedure except it has a RETURN clause that is used to return the computed value. Syntax of [...]]]></description>
			<content:encoded><![CDATA[<p>Here it is a simple procedure to create and call a custom function in Oracle. A custom function is a simple PL/SQL subprogram that is used to calculate a value. It creation syntax is almost same as of procedure except it has a RETURN clause that is used to return the computed value.</p>
<p>Syntax of creating a custom function:</p>
<blockquote><p>CREATE [OR REPLACE] FUNCTION function_name      <br />[ (parameter [,parameter]) ]       <br />RETURN return_datatype       <br />IS | AS       <br />[declaration_section]       <br />BEGIN       <br />executable_section       <br />[EXCEPTION       <br />exception_section]       <br />END [function_name];</p>
</blockquote>
<p>Custom functions may have zero or more parameters in place. There are three types of parameters that can be defined in a custom function.</p>
<ol>
<li><strong>IN:</strong> This parameter can be called from a procedure or a function. The value of this parameter cannot be overwritten by procedure or function. </li>
<li><strong>OUT:</strong> This parameter cannot be called from a procedure or function, but its value can be overwritten from them. </li>
<li><strong>IN OUT:</strong> It has both the properties of above type. As it can be called from procedure and functions and also can be overwritten by them. </li>
</ol>
<p>Some examples of creating and calling custom functions:</p>
<ul>
<li>Function without parameters. </li>
</ul>
<p><a href="http://technoblogy.net/wp-content/uploads/2009/11/FUNC1.jpg"><img title="FUNC1" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="226" alt="FUNC1" src="http://technoblogy.net/wp-content/uploads/2009/11/FUNC1_thumb.jpg" width="349" border="0" /></a> </p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p>Function with parameter.</p>
<p><a href="http://technoblogy.net/wp-content/uploads/2009/11/FUNC2.jpg"><img title="FUNC2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="223" alt="FUNC2" src="http://technoblogy.net/wp-content/uploads/2009/11/FUNC2_thumb.jpg" width="381" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/creating-custom-functions-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

