<?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>Askdbaonline</title>
	<atom:link href="http://www.askdbaonline.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.askdbaonline.com</link>
	<description>Oracle Apps/Database DBA</description>
	<lastBuildDate>Wed, 17 Apr 2013 06:44:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Create New User and all active responsibilities from existing user</title>
		<link>http://www.askdbaonline.com/?p=479</link>
		<comments>http://www.askdbaonline.com/?p=479#comments</comments>
		<pubDate>Wed, 17 Apr 2013 06:44:50 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=479</guid>
		<description><![CDATA[Oracle E-businnes Suite (EBS)  Create New User and all active responsibilities from existing user  DECLARE v_user_name VARCHAR2 (100) := upper(‘&#38;Enter_User_Name’); v_description VARCHAR2 (100) := ‘New User’; v_app_short_name VARCHAR2 (100); v_resp_key VARCHAR2 (100); CURSOR user_cur IS select a.application_short_name, r.responsibility_key from fnd_responsibility_vl r, fnd_application_vl a where r.application_id =a.application_id and R.responsibility_ID IN (SELECT RESPONSIBILITY_ID FROM fnd_user_resp_groups WHERE USER_ID=&#38;from_userid [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle E-businnes Suite (EBS)  Create New User and all active responsibilities from existing user</p>
<p> DECLARE<br />
v_user_name VARCHAR2 (100) := upper(‘&amp;Enter_User_Name’);<br />
v_description VARCHAR2 (100) := ‘New User’;<br />
v_app_short_name VARCHAR2 (100);<br />
v_resp_key VARCHAR2 (100);<br />
CURSOR user_cur IS<br />
select a.application_short_name, r.responsibility_key<br />
from fnd_responsibility_vl r, fnd_application_vl a where<br />
r.application_id =a.application_id<br />
and R.responsibility_ID IN (SELECT RESPONSIBILITY_ID FROM fnd_user_resp_groups WHERE USER_ID=&amp;from_userid AND END_dATE IS NULL);<br />
user_rec user_cur%ROWTYPE;<br />
BEGIN<br />
fnd_user_pkg.createuser<br />
(x_user_name =&gt; v_user_name,<br />
x_owner =&gt; NULL,<br />
x_unencrypted_password =&gt; ‘&amp;input_password’,<br />
x_session_number =&gt; 0,<br />
x_start_date =&gt; SYSDATE,<br />
x_end_date =&gt; NULL,<br />
x_last_logon_date =&gt; NULL,<br />
x_description =&gt; v_description,<br />
x_password_date =&gt; NULL,<br />
x_password_accesses_left =&gt; NULL,<br />
x_password_lifespan_accesses =&gt; NULL,<br />
x_password_lifespan_days =&gt; NULL,<br />
x_employee_id =&gt; NULL,<br />
x_email_address =&gt; NULL,<br />
x_fax =&gt; NULL,<br />
x_customer_id =&gt; NULL,<br />
x_supplier_id =&gt; NULL,<br />
x_user_guid =&gt; NULL,<br />
x_change_source =&gt; NULL<br />
);<br />
COMMIT;</p>
<p>OPEN user_cur;<br />
LOOP<br />
FETCH user_cur INTO user_rec;<br />
EXIT WHEN user_cur%NOTFOUND;<br />
fnd_user_pkg.addresp(username =&gt; v_user_name<br />
,resp_app =&gt; user_rec.application_short_name<br />
,resp_key =&gt; user_rec.responsibility_key<br />
,security_group =&gt; ‘STANDARD’<br />
,description =&gt; NULL<br />
,start_date =&gt; SYSDATE<br />
,end_date =&gt; null);<br />
END LOOP;<br />
CLOSE user_cur;<br />
commit;<br />
END;</p>
<p>Input variables required :</p>
<p>&amp;Enter_User_Name   &gt; New username to create</p>
<p>&amp;from_userid               &gt; userid from where all responsibilities needs to be copied</p>
<p>&amp;input_password       &gt; password for the new user</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=479</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL Constants</title>
		<link>http://www.askdbaonline.com/?p=472</link>
		<comments>http://www.askdbaonline.com/?p=472#comments</comments>
		<pubDate>Fri, 11 Jan 2013 20:27:19 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=472</guid>
		<description><![CDATA[PL/SQL Constants As the name implies a constant is a value used in a PL/SQL Block that remains unchanged throughout the program. A constant is a user-defined literal value. You can declare a constant and use it instead of actual value. For example: If you want to write a program which will increase the salary [...]]]></description>
			<content:encoded><![CDATA[<p><html template="true"><br />
<body><br />
<big><span style="font-weight: bold;">PL/SQL Constants</span></big></p>
<p>As the name implies a constant is a value used in a PL/SQL Block that<br />
remains unchanged throughout the program. A constant is a user-defined<br />
literal value. You can declare a constant and use it instead of actual<br />
value.</p>
<p>For example: If you want to write a program which will increase the<br />
salary of the employees by 25%, you can declare a constant and use it<br />
throughout the program. Next time when you want to increase the salary<br />
again you can change the value of the constant which will be easier<br />
than changing the actual value throughout the program.<br />
&nbsp;<br />
The General Syntax to declare a constant is:</p>
<table border="0" cellpadding="0">
<tbody>
<tr>
<td>
<pre class="style1">constant_name CONSTANT datatype := VALUE; </pre>
</td>
</tr>
</tbody>
</table>
<ul>
<li><em>constant_name </em>is the name of the<br />
constant i.e. similar to a variable name.</li>
<li>The word <em>CONSTANT </em>is a reserved word<br />
and ensures that the value does not change.</li>
<li><em>VALUE </em>- It is a value which must be<br />
assigned to a constant when it is declared. You cannot assign a value<br />
later. </li>
</ul>
<p>For example, to declare salary_increase, you can write code as<br />
follows: </p>
<pre class="style1">DECLARE </pre>
<pre class="style1">salary_increase CONSTANT number (3) := 10; </pre>
<p>You <em>must </em>assign a value to a constant<br />
at the time you declare it. If you do not assign a value to a constant<br />
while declaring it and try to assign a value in the execution section,<br />
you will get a error. If you execute the below Pl/SQL block you will<br />
get error. </p>
<table border="0" cellpadding="0">
<tbody>
<tr>
<td>
<pre class="style1">DECLARE </pre>
<pre class="style1"> salary_increase CONSTANT number(3); </pre>
<pre class="style1">BEGIN </pre>
<pre class="style1"> salary_increase := 100; </pre>
<pre class="style1"> dbms_output.put_line (salary_increase); </pre>
<pre class="style1">END; </pre>
</td>
</tr>
</tbody>
</table>
<p></body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=472</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to PL/SQL</title>
		<link>http://www.askdbaonline.com/?p=461</link>
		<comments>http://www.askdbaonline.com/?p=461#comments</comments>
		<pubDate>Fri, 11 Jan 2013 19:04:59 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=461</guid>
		<description><![CDATA[What is PL/SQL? PL/SQL stands for Procedural Language extension of SQL.PL/SQL is a combination of SQL along with the procedural features of programming languages.It was developed by Oracle Corporation in the early 90’s to enhance the capabilities of SQL. The PL/SQL Engine: Oracle uses a PL/SQL engine to processes the PL/SQL statements. A PL/SQL code [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is PL/SQL?</strong></p>
<p>PL/SQL stands for Procedural Language extension of SQL.PL/SQL is a combination of SQL along with the procedural features of programming languages.It was developed by Oracle Corporation in the early 90’s to enhance the capabilities of SQL.</p>
<p>The PL/SQL Engine:</p>
<p>Oracle uses a PL/SQL engine to processes the PL/SQL statements. A PL/SQL code can be stored in the client system (client-side) or in the database (server-side).</p>
<p>About This PL SQL Programming Tutorial</p>
<p>This Oracle PL SQL tutorial teaches you the basics of programming in PL/SQL with appropriate examples. You can use this tutorial as your guide or reference while programming with PL SQL. I will be making this Oracle PL SQL programming tutorial as often as possible to share my knowledge in PL SQL and help you in learning PL SQL better.</p>
<p>Even though the programming concepts discussed in this tutorial is specific to Oracle PL SQL. The concepts like cursors, functions and stored procedures can be used in other database systems like Sybase , Microsoft SQL server etc, with some change in syntax. This tutorial will be growing regularly; let us know if any topic related to PL SQL needs to be added or you can also share your knowledge on PL SQL with us. Lets share our knowledge about PL SQL with others.</p>
<p>A Simple PL/SQL Block:<br />
Each PL/SQL program consists of SQL and PL/SQL statements which from a PL/SQL block.</p>
<p>A PL/SQL Block consists of three sections:</p>
<p>The Declaration section (optional).<br />
The Execution section (mandatory).<br />
The Exception (or Error) Handling section (optional).</p>
<p><strong>Declaration Section:</strong></p>
<p>The Declaration section of a PL/SQL Block starts with the reserved keyword DECLARE. This section is optional and is used to declare any placeholders like variables, constants, records and cursors, which are used to manipulate data in the execution section. Placeholders may be any of Variables, Constants and Records, which stores data temporarily. Cursors are also declared in this section.</p>
<p><B>Execution Section:</B></p>
<p>The Execution section of a PL/SQL Block starts with the reserved keyword BEGIN and ends with END. This is a mandatory section and is the section where the program logic is written to perform any task. The programmatic constructs like loops, conditional statement and SQL statements form the part of execution section.</p>
<p><strong>Exception Section:</strong></p>
<p>The Exception section of a PL/SQL Block starts with the reserved keyword EXCEPTION. This section is optional. Any errors in the program can be handled in this section, so that the PL/SQL Blocks terminates gracefully. If the PL/SQL Block contains exceptions that cannot be handled, the Block terminates abruptly with errors.</p>
<p>Every statement in the above three sections must end with a semicolon ; . PL/SQL blocks can be nested within other PL/SQL blocks. Comments can be used to document code.</p>
<p>This is how a sample PL/SQL Block looks.</p>
<p>DECLARE<br />
Variable declaration<br />
BEGIN<br />
Program Execution<br />
EXCEPTION<br />
Exception handling<br />
END;<br />
<BR><br />
<B>These are the advantages of PL/SQL</B></p>
<p>• Block Structures: PL SQL consists of blocks of code, which can be nested within each other. Each block forms a unit of a task or a logical module. PL/SQL Blocks can be stored in the database and reused.</p>
<p>• Procedural Language Capability: PL SQL consists of procedural language constructs such as conditional statements (if else statements) and loops like (FOR loops).</p>
<p>• Better Performance: PL SQL engine processes multiple SQL statements simultaneously as a single block, thereby reducing network traffic. </p>
<p>•Error Handling: PL/SQL handles errors or exceptions effectively during the execution of a PL/SQL program. Once an exception is caught, specific actions can be taken depending upon the type of the exception or it can be displayed to the user with a message.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=461</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginner SQL</title>
		<link>http://www.askdbaonline.com/?p=459</link>
		<comments>http://www.askdbaonline.com/?p=459#comments</comments>
		<pubDate>Fri, 11 Jan 2013 19:02:40 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=459</guid>
		<description><![CDATA[Beginner SQL]]></description>
			<content:encoded><![CDATA[<p>Beginner SQL</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=459</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Added datafile in file system instead of ASM. Missed &#8216;+&#8217; while adding datafile</title>
		<link>http://www.askdbaonline.com/?p=453</link>
		<comments>http://www.askdbaonline.com/?p=453#comments</comments>
		<pubDate>Fri, 11 Jan 2013 18:35:01 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[ASM]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=453</guid>
		<description><![CDATA[Added datafile in file system instead of ASM. Missed &#8216;+&#8217; while adding datafile SQL> alter tablespace test01 add datafile &#8216;DATA1&#8242; size 8G;  Tablespace altered.  SQL> select file_id,file_name from dba_data_files where tablespace_name=&#8217;test01&#8242;;  FILE# NAME  &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;  11 +DATA1/askdbaonline/datafile/test01.276.662164269  17 +DATA1/askdbaonline/datafile/test01.283.660433979  82 /opt/oracle/product/10.2.0/db/dbs/DG1  2) We took following step to make it correct.  SQL> alter database datafile 82 [...]]]></description>
			<content:encoded><![CDATA[<p><B>Added datafile in file system instead of ASM. Missed &#8216;+&#8217; while adding datafile</B></p>
<p>SQL> alter tablespace test01 add datafile &#8216;DATA1&#8242; size 8G; </p>
<p>Tablespace altered. </p>
<p>SQL> select file_id,file_name from dba_data_files where tablespace_name=&#8217;test01&#8242;; </p>
<p>FILE# NAME <br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br />
11 +DATA1/askdbaonline/datafile/test01.276.662164269 <br />
17 +DATA1/askdbaonline/datafile/test01.283.660433979 <br />
82 /opt/oracle/product/10.2.0/db/dbs/DG1 </p>
<p>2) We took following step to make it correct. </p>
<p>SQL> alter database datafile 82 offline; </p>
<p>rman target /</p>
<p>RMAN> copy datafile 82 to &#8216;+DATA1/&#8217;; </p>
<p>RMAN> switch datafile 82 to copy;</p>
<p>SQL> alter database datafile 82 online; </p>
<p>alter database datafile 82 online <br />
* <br />
ERROR at line 1: <br />
ORA-01113: file 82 needs media recovery <br />
ORA-01110: data file 82: &#8216;+DATA1/askdbaonline/datafile/test01.372.779132951&#8242; </p>
<p>SQL> recover datafile 82; </p>
<p>Media recovery complete. </p>
<p>SQL> alter database datafile 82 online; </p>
<p>Database altered. </p>
<p>SQL> select * from v$recover_file; </p>
<p>no rows selected </p>
<p>SQL> select file_id,file_name from dba_data_files where tablespace_name=&#8217;test01&#8242;; </p>
<p>FILE# NAME <br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; <br />
11 +DATA1/askdbaonline/datafile/test01.276.662164269 <br />
17 +DATA1/askdbaonline/datafile/test01.283.660433979 <br />
82 +DATA1/askdbaonline/datafile/test01.372.779132951</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=453</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear Rman Configuration to Default</title>
		<link>http://www.askdbaonline.com/?p=449</link>
		<comments>http://www.askdbaonline.com/?p=449#comments</comments>
		<pubDate>Fri, 11 Jan 2013 18:20:19 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=449</guid>
		<description><![CDATA[rman target / CONFIGURE RETENTION POLICY CLEAR; CONFIGURE BACKUP OPTIMIZATION CLEAR; CONFIGURE DEFAULT DEVICE TYPE CLEAR; CONFIGURE CONTROLFILE AUTOBACKUP CLEAR; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK CLEAR; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT CLEAR; CONFIGURE DEVICE TYPE DISK CLEAR; CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK CLEAR; CONFIGURE DATAFILE BACKUP [...]]]></description>
			<content:encoded><![CDATA[<p>rman target /</p>
<p>CONFIGURE RETENTION POLICY CLEAR;<br />
CONFIGURE BACKUP OPTIMIZATION CLEAR;<br />
CONFIGURE DEFAULT DEVICE TYPE CLEAR;<br />
CONFIGURE CONTROLFILE AUTOBACKUP CLEAR;<br />
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK CLEAR;<br />
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT CLEAR;<br />
CONFIGURE DEVICE TYPE DISK CLEAR;<br />
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK CLEAR;<br />
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT  CLEAR;<br />
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK CLEAR;<br />
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT CLEAR;<br />
CONFIGURE CHANNEL DEVICE TYPE DISK CLEAR;<br />
CONFIGURE CHANNEL DEVICE TYPE SBT CLEAR;<br />
CONFIGURE MAXSETSIZE CLEAR;<br />
CONFIGURE SNAPSHOT CONTROLFILE NAME CLEAR;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=449</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Documentation</title>
		<link>http://www.askdbaonline.com/?p=270</link>
		<comments>http://www.askdbaonline.com/?p=270#comments</comments>
		<pubDate>Wed, 02 Jan 2013 06:38:44 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=270</guid>
		<description><![CDATA[  Oracle Database Oracle Database documentation, 11g Release 2 (11.2). Installation manuals and platform-specific books are included in this search. Oracle Database documentation, 11g Release 1 (11.1). Installation manuals and platform-specific books are included in this search. Oracle Database documentation, 10g Release 2 (10.2). Installation manuals and platform-specific books are included in this search. Oracle [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><strong>Oracle Database</strong></p>
<p><a href="http://www.oracle.com/pls/db112/homepage?remark=tahiti">Oracle Database documentation, 11<em>g</em> Release 2 (11.2)</a>.<br />
Installation manuals and platform-specific books <em>are</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/db111/homepage?remark=tahiti">Oracle Database documentation, 11<em>g</em> Release 1 (11.1)</a>.<br />
Installation manuals and platform-specific books <em>are</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/db102/homepage?remark=tahiti">Oracle Database documentation, 10<em>g</em> Release 2 (10.2)</a>.<br />
Installation manuals and platform-specific books <em>are</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/xe102/homepage?remark=tahiti">Oracle Database Express Edition documentation, 10<em>g</em> Release 2 (10.2)</a>.<br />
This is a small library specifically for the free Express Edition product. It covers administering the database through Application Express, and developing modern web applications in PHP, .NET, Java, and PL/SQL. Installation covers Windows and Linux only. Books such as the <em>SQL Reference</em> are not included.</p>
<p><a href="http://www.oracle.com/pls/db10g/homepage?remark=tahiti">Oracle Database documentation, 10<em>g</em> Release 1 (10.1)</a>.<br />
Installation manuals and platform-specific books <em>are</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/db92/homepage?remark=tahiti">Oracle9i documentation, Release 2 (9.2)</a>.<br />
<a href="http://www.oracle.com/pls/db901/homepage?remark=tahiti">Oracle9i documentation, Release 1 (9.0.1)</a>.<br />
Installation manuals and platform-specific books are included in this search, for 9.2 only.</p>
<p><a href="http://www.oracle.com/pls/tahiti/homepage?remark=tahiti">Oracle8i documentation, Release 8.1.7</a>.<br />
Installation manuals and platform-specific books are <em>not</em> included in this search.</p>
<p><strong>Oracle Application Server and Fusion Middleware</strong></p>
<p><a href="http://www.oracle.com/pls/as1111/homepage?remark=tahiti">Oracle Fusion Middleware documentation 11g (Release 11.1.1)</a>.<br />
Installation manuals and platform-specific books are included in this search.</p>
<p><a href="http://www.oracle.com/pls/as1014/homepage?remark=tahiti">Oracle Identity Management documentation 10g (Release 10.1.4)</a>.<br />
Installation manuals and platform-specific books are <em>not yet</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/as1013/homepage?remark=tahiti">Oracle Application Server documentation 10g (Release 10.1.3)</a>.<br />
Installation manuals and platform-specific books are <em>not yet</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/as1012/homepage?remark=tahiti">Oracle Application Server documentation 10g (Release 10.1.2)</a>.<br />
Installation manuals and platform-specific books are <em>not yet</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/ias904/homepage?remark=tahiti">Oracle Application Server documentation 10g (Release 9.0.4)</a>.<br />
Installation manuals and platform-specific books are <em>not</em> included in this search.</p>
<p><a href="http://www.oracle.com/pls/ias902/homepage?remark=tahiti">Oracle9iAS documentation (Release 9.0.2)</a>.<br />
Installation manuals and platform-specific books are <em>not</em> included in this search.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=270</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact Me</title>
		<link>http://www.askdbaonline.com/?p=268</link>
		<comments>http://www.askdbaonline.com/?p=268#comments</comments>
		<pubDate>Wed, 02 Jan 2013 06:34:30 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[Reach Me]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=268</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><code>
<p>Comments or questions are welcome.</p>
<!-- Fast Secure Contact Form plugin 3.1.6 - begin - FastSecureContactForm.com -->
<div id="FSContact1" style="width:375px;">
<form action="http://www.askdbaonline.com/?feed=rss2#FSContact1" id="si_contact_form1" method="post">
<div style="text-align:left;">
<span class="required"> *</span>(denotes required field)
   </div>

         <div>
               <input type="hidden" name="si_contact_CID" value="1" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_name1">Name:<span class="required"> *</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="text" id="si_contact_name1" name="si_contact_name" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_email1">E-Mail Address:<span class="required"> *</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="text" id="si_contact_email1" name="si_contact_email" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_subject1">Subject:<span class="required"> *</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0;" type="text" id="si_contact_subject1" name="si_contact_subject" value=""  size="40" />
        </div>

        <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_message1">Message:<span class="required"> *</span></label>
        </div>
        <div style="text-align:left;">
                <textarea style="text-align:left; margin:0;" id="si_contact_message1" name="si_contact_message"  cols="30" rows="10"></textarea>
        </div>

<div style="text-align:left; padding-top:5px;"> </div>
 <div style="width:250px; height:65px; padding-top:2px;">
    <img class="ctf-captcha" id="si_image_ctf1" style="border-style:none; margin:0; padding:0px; padding-right:5px; float:left;" src="http://www.askdbaonline.com/wp-content/plugins/si-contact-form/captcha/securimage_show.php?prefix=pnCaNShUQ9OTqMTU" width="175" height="60" alt="CAPTCHA Image" title="CAPTCHA Image" />
    <input id="si_code_ctf_1" type="hidden" name="si_code_ctf_1" value="pnCaNShUQ9OTqMTU" />
    <div id="si_refresh_ctf1">
      <a href="#" rel="nofollow" title="Refresh Image" onclick="si_contact_captcha_refresh('1','noaudio','/wp-content/plugins/si-contact-form/captcha','http://www.askdbaonline.com/wp-content/plugins/si-contact-form/captcha/securimage_show.php?prefix='); return false;">
      <img src="http://www.askdbaonline.com/wp-content/plugins/si-contact-form/captcha/images/refresh.png" width="22" height="20" alt="Refresh Image" style="border-style:none; margin:0; padding:0px; vertical-align:bottom;" onclick="this.blur();" /></a>
   </div>
   </div>

      <div style="text-align:left; padding-top:5px;">
                <label for="si_contact_captcha_code1">CAPTCHA Code:<span class="required"> *</span></label>
        </div>
        <div style="text-align:left;">
                <input style="text-align:left; margin:0; width:50px;" type="text" value="" id="si_contact_captcha_code1" name="si_contact_captcha_code"  size="6" />
       </div>


<div style="text-align:left; padding-top:2px;">
  <input type="hidden" name="si_contact_action" value="send" />
  <input type="hidden" name="si_contact_form_id" value="1" />
  <input type="submit" id="fsc-submit-1" style="cursor:pointer; margin:0;" value="Submit" /> 
</div>

</form>
</div>
<!-- Fast Secure Contact Form plugin 3.1.6 - end - FastSecureContactForm.com --></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=268</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Me</title>
		<link>http://www.askdbaonline.com/?p=266</link>
		<comments>http://www.askdbaonline.com/?p=266#comments</comments>
		<pubDate>Wed, 02 Jan 2013 06:26:15 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[About Me]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=266</guid>
		<description><![CDATA[&#160; Name Amit Prasad Chowrasia   (Nick Name) Mikey Email Address mikey@askdbaonline.com Specialization Profile Skills:&#160; Currently working for IT Company as a Senior Applications Engineer. Providing technical support to Local and Production databases in Oracle 10g/11g on various OS platforms like IBM-AIX, HPUX, Sun Solaris, RHEL etc. Expertise in planning,implementing &#38; managing High availability systems [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<table border="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="23%"><strong> Name</strong></td>
<td width="77%"><strong>Amit Prasad Chowrasia   (Nick Name) Mikey</strong></td>
</tr>
<tr>
<td><strong>Email   Address</strong></td>
<td><span style="text-decoration: underline;"><a href="mailto:mikey@askdbaonline.com">mikey@askdbaonline.com</a></span></td>
</tr>
<tr>
<td valign="top"><strong>Specialization   Profile</strong></td>
<td valign="top"><strong>Skills:</strong>&nbsp;</p>
<ul>
<li>Currently working for IT Company as a Senior Applications   Engineer.</li>
<li>Providing technical   support to Local and Production databases in Oracle 10g/11g on various OS   platforms like IBM-AIX, HPUX, Sun Solaris, RHEL etc.</li>
<li>Expertise in   planning,implementing &amp; managing High availability systems like Real   Application Cluster (RAC),Enterprise Manager Grid,Data Guard etc.</li>
<li>Experienced in dealing   with various database performance issues, backup &amp; recovery   issues,enterprise grid manager,DR setup and Oracle Application Express.</li>
</ul>
<p><strong>Certifications:</strong></p>
<ul>
<li><a href="http://education.oracle.com/education/otn/ocm-11g.html"> Oracle 11g DBA   Certified Master (OCM)</a></li>
<li><a href="http://education.oracle.com/education/otn/10g_OCM_17_Jun_11/achowrasia.htm"> Oracle 10g DBA   Certified Master (OCM)</a></li>
<li>Oracle 10g Oracle   Certified Professional (OCP)</li>
<li>Oracle 10g RAC expert</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=266</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installation &amp; Upgrade</title>
		<link>http://www.askdbaonline.com/?p=249</link>
		<comments>http://www.askdbaonline.com/?p=249#comments</comments>
		<pubDate>Wed, 02 Jan 2013 05:09:36 +0000</pubDate>
		<dc:creator>Mikey</dc:creator>
				<category><![CDATA[Installation/Upgrade]]></category>

		<guid isPermaLink="false">http://www.askdbaonline.com/?p=249</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<ul class="lcp_catlist"><li><a href="http://www.askdbaonline.com/?p=77" title="Uninstalling Oracle database 11g Manually from Windows ">Uninstalling Oracle database 11g Manually from Windows</a>   </li><li><a href="http://www.askdbaonline.com/?p=74" title="Uninstalling Oracle database 10g Manually from Windows">Uninstalling Oracle database 10g Manually from Windows</a>   </li><li><a href="http://www.askdbaonline.com/?p=388" title="Installation & Upgrade">Installation &#038; Upgrade</a>   </li></ul>
]]></content:encoded>
			<wfw:commentRss>http://www.askdbaonline.com/?feed=rss2&#038;p=249</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
