<?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/"
	>

<channel>
	<title>El-Shihabi</title>
	<atom:link href="http://el-shihabi.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://el-shihabi.com/blog</link>
	<description>Abdulaziz El-Shihabi Blog, Where you can find a useful things :D</description>
	<pubDate>Fri, 26 Feb 2010 08:16:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The real golden age</title>
		<link>http://el-shihabi.com/blog/?p=115</link>
		<comments>http://el-shihabi.com/blog/?p=115#comments</comments>
		<pubDate>Fri, 26 Feb 2010 08:16:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=115</guid>
		<description><![CDATA[<p></p>
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9441093&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9441093&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=115</wfw:commentRss>
		</item>
		<item>
		<title>Data Base Administration &#8220;Recommended&#8221;</title>
		<link>http://el-shihabi.com/blog/?p=114</link>
		<comments>http://el-shihabi.com/blog/?p=114#comments</comments>
		<pubDate>Wed, 17 Feb 2010 05:55:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[DBA]]></category>

		<category><![CDATA[index]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=114</guid>
		<description><![CDATA[<p>1- Tablespaces
    - create two table spaces (one for tables and other for indexes)
2- Index
    -bitmap for repeated value like = 0,1 - Femal, Mail
    -B-tree  for large value</p>
]]></description>
			<content:encoded><![CDATA[<p>1- Tablespaces<br />
    - create two table spaces (one for tables and other for indexes)<br />
2- Index<br />
    -bitmap for repeated value like = 0,1 - Femal, Mail<br />
    -B-tree  for large value</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=114</wfw:commentRss>
		</item>
		<item>
		<title>ORACLE IS_NUMBER FUNCTION</title>
		<link>http://el-shihabi.com/blog/?p=111</link>
		<comments>http://el-shihabi.com/blog/?p=111#comments</comments>
		<pubDate>Fri, 15 Jan 2010 23:03:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[DBA]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=111</guid>
		<description><![CDATA[<p>CREATE OR REPLACE FUNCTION is_number(char_in VARCHAR2) RETURN NUMBER IS
BEGIN
  FOR x IN 1 .. LENGTH(char_in) LOOP
    &#8212; remove , &#038; .
    IF SUBSTR(char_in,x,1) in (&#8217;,&#8217; , &#8216;.&#8217; , &#8216; &#8216;) THEN
      RETURN 0;
    END IF;
  END LOOP;</p>
<p>  IF [...]]]></description>
			<content:encoded><![CDATA[<p>CREATE OR REPLACE FUNCTION is_number(char_in VARCHAR2) RETURN NUMBER IS<br />
BEGIN<br />
  FOR x IN 1 .. LENGTH(char_in) LOOP<br />
    &#8212; remove , &#038; .<br />
    IF SUBSTR(char_in,x,1) in (&#8217;,&#8217; , &#8216;.&#8217; , &#8216; &#8216;) THEN<br />
      RETURN 0;<br />
    END IF;<br />
  END LOOP;</p>
<p>  IF TO_NUMBER(char_in,&#8217;9999999&#8242;) > -1000000 THEN<br />
    RETURN 1 ;<br />
  END IF;<br />
EXCEPTION<br />
  WHEN invalid_number THEN<br />
    RETURN 0;<br />
  WHEN OTHERS THEN<br />
    RETURN 0;<br />
END is_number;</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=111</wfw:commentRss>
		</item>
		<item>
		<title>Create Oracle Tablespace SQL</title>
		<link>http://el-shihabi.com/blog/?p=109</link>
		<comments>http://el-shihabi.com/blog/?p=109#comments</comments>
		<pubDate>Thu, 14 Jan 2010 08:15:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[DBA]]></category>

		<category><![CDATA[tablesapace]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=109</guid>
		<description><![CDATA[<p>CREATE SMALLFILE TABLESPACE &#8220;TBS_NAME&#8221; DATAFILE &#8216;$ORACLE_BASE/$SID/file.dbf&#8217; SIZE 5120M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE 32767M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO</p>
]]></description>
			<content:encoded><![CDATA[<p>CREATE SMALLFILE TABLESPACE &#8220;TBS_NAME&#8221; DATAFILE &#8216;$ORACLE_BASE/$SID/file.dbf&#8217; SIZE 5120M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE 32767M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=109</wfw:commentRss>
		</item>
		<item>
		<title>ORACLE - Shared Pool</title>
		<link>http://el-shihabi.com/blog/?p=106</link>
		<comments>http://el-shihabi.com/blog/?p=106#comments</comments>
		<pubDate>Wed, 06 Jan 2010 16:42:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[DBA]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=106</guid>
		<description><![CDATA[<p>GET POOL INFORMATION
select name,bytes/(1024*1024) MB from v$sgastat where pool=&#8217;shared pool&#8217; order by bytes desc;</p>
]]></description>
			<content:encoded><![CDATA[<p>GET POOL INFORMATION<br />
select name,bytes/(1024*1024) MB from v$sgastat where pool=&#8217;shared pool&#8217; order by bytes desc;</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=106</wfw:commentRss>
		</item>
		<item>
		<title>Oracle Database link</title>
		<link>http://el-shihabi.com/blog/?p=103</link>
		<comments>http://el-shihabi.com/blog/?p=103#comments</comments>
		<pubDate>Thu, 10 Dec 2009 09:07:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[DBA]]></category>

		<category><![CDATA[database link]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=103</guid>
		<description><![CDATA[<p>Create Database link:</p>
<p>desc user_db_links</p>
<p>set linesize 121
col db_link format a20
col username format a20
col password format a20
col host format a20
SELECT * FROM user_db_links;
SELECT * FROM all_db_links;
SELECT table_name, tablespace_name FROM user_tables@conn_user;</p>
]]></description>
			<content:encoded><![CDATA[<p>Create Database link:</p>
<p>desc user_db_links</p>
<p>set linesize 121<br />
col db_link format a20<br />
col username format a20<br />
col password format a20<br />
col host format a20<br />
SELECT * FROM user_db_links;<br />
SELECT * FROM all_db_links;<br />
SELECT table_name, tablespace_name FROM user_tables@conn_user;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=103</wfw:commentRss>
		</item>
		<item>
		<title>XFORWARD</title>
		<link>http://el-shihabi.com/blog/?p=102</link>
		<comments>http://el-shihabi.com/blog/?p=102#comments</comments>
		<pubDate>Wed, 25 Nov 2009 07:51:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Xforward]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=102</guid>
		<description><![CDATA[<p>from the remote:
export DISPLAY=host.name.com:port</p>
<p>from the local
xhost host.name.com</p>
]]></description>
			<content:encoded><![CDATA[<p>from the remote:<br />
export DISPLAY=host.name.com:port</p>
<p>from the local<br />
xhost host.name.com</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=102</wfw:commentRss>
		</item>
		<item>
		<title>Sannib.com</title>
		<link>http://el-shihabi.com/blog/?p=99</link>
		<comments>http://el-shihabi.com/blog/?p=99#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:45:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Sites Reviews]]></category>

		<category><![CDATA[Arts]]></category>

		<category><![CDATA[Painting]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=99</guid>
		<description><![CDATA[<p>

</p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://sannib.com/store" target="_blank">
<a href='http://el-shihabi.com/blog/?attachment_id=100' title='snnib_snap'><img src="http://el-shihabi.com/blog/wp-content/uploads/2009/11/snnib_snap-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=99</wfw:commentRss>
		</item>
		<item>
		<title>Q8khail.com</title>
		<link>http://el-shihabi.com/blog/?p=92</link>
		<comments>http://el-shihabi.com/blog/?p=92#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:33:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Sites Reviews]]></category>

		<category><![CDATA[Horses]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=92</guid>
		<description><![CDATA[
<p style="text-align: right;">موقع عربي خليجي متخصص بالخيول ومعداتها
صورة الموقع


</p>
<p style="text-align: right;">يمكنكم من خلال الموقع</p>
<p style="text-align: right;">1- عرض خيولكم</p>
<p style="text-align: right;">2- بيع معداتكم</p>
<p style="text-align: right;">3- اعلانات لاستطبلاتكم</p>

]]></description>
			<content:encoded><![CDATA[<div dir="rtl">
<p style="text-align: right;">موقع عربي خليجي متخصص بالخيول ومعداتها<br />
صورة الموقع<br />

<a href='http://el-shihabi.com/blog/?attachment_id=93' title='q8khail_snap'><img src="http://el-shihabi.com/blog/wp-content/uploads/2009/11/q8khail_snap-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
</p>
<p style="text-align: right;">يمكنكم من خلال الموقع</p>
<p style="text-align: right;">1- عرض خيولكم</p>
<p style="text-align: right;">2- بيع معداتكم</p>
<p style="text-align: right;">3- اعلانات لاستطبلاتكم</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=92</wfw:commentRss>
		</item>
		<item>
		<title>oracle timestamp</title>
		<link>http://el-shihabi.com/blog/?p=90</link>
		<comments>http://el-shihabi.com/blog/?p=90#comments</comments>
		<pubDate>Thu, 05 Nov 2009 13:41:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[DBA]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://el-shihabi.com/blog/?p=90</guid>
		<description><![CDATA[<p>Select to_char(to_date(&#8217;01-JAN-1970&#8242;) + 1257424753/86400,&#8217;DD-MM-YYYY HH:MI:SS&#8217;) from dual;</p>
<p>SELECT to_char(TO_DATE(&#8217;19700101000000&#8242;,&#8217;YYYYMMDDHH24MISS&#8217;)
+ NUMTODSINTERVAL(1257424753, &#8216;SECOND&#8217;),&#8217;DD_MM_YY HH24:MI:SS&#8217;) FROM DUAL</p>
]]></description>
			<content:encoded><![CDATA[<p>Select to_char(to_date(&#8217;01-JAN-1970&#8242;) + 1257424753/86400,&#8217;DD-MM-YYYY HH:MI:SS&#8217;) from dual;</p>
<p>SELECT to_char(TO_DATE(&#8217;19700101000000&#8242;,&#8217;YYYYMMDDHH24MISS&#8217;)<br />
+ NUMTODSINTERVAL(1257424753, &#8216;SECOND&#8217;),&#8217;DD_MM_YY HH24:MI:SS&#8217;) FROM DUAL</p>
]]></content:encoded>
			<wfw:commentRss>http://el-shihabi.com/blog/?feed=rss2&amp;p=90</wfw:commentRss>
		</item>
	</channel>
</rss>
