<?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>Dimas A Lasama &#187; Oracle DBA</title>
	<atom:link href="http://www.punyadimas.com/category/oracle-dba/feed" rel="self" type="application/rss+xml" />
	<link>http://www.punyadimas.com</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 19:23:32 +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>select dbms_metadata.get_ddl</title>
		<link>http://www.punyadimas.com/select-dbms_metadata-get_ddl.html</link>
		<comments>http://www.punyadimas.com/select-dbms_metadata-get_ddl.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 05:33:49 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=298</guid>
		<description><![CDATA[View script Create or Replace Create Table, CREATE OR REPLACE FORCE VIEW, PROCEDURE AND etc using SQLPLUS Using TABLE for view script table, Using View for View script view. Try another by your self SQL&#62; set lines 125 pages 1000 SQL&#62; set long 100000 SQL&#62; select dbms_metadata.get_ddl('TABLE','REGIONS','HR') from dual; DBMS_METADATA.GET_DDL('TABLE','REGIONS','HR') -------------------------------------------------------------------------------- CREATE TABLE "HR"."REGIONS" (   [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/select-dbms_metadata-get_ddl.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installation Oracle SqlDeveloper</title>
		<link>http://www.punyadimas.com/installation-oracle-sqldeveloper.html</link>
		<comments>http://www.punyadimas.com/installation-oracle-sqldeveloper.html#comments</comments>
		<pubDate>Thu, 18 Nov 2010 07:35:20 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=280</guid>
		<description><![CDATA[Using sqldeveloper for Ubuntu. Follow this step to install the Oracle sqldeveloper. 1. Download Open Jdk sudo apt-get install openjdk-6-jre 2. Download Oracle SqlDeveloper www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html Download for oracle 3. After All of done. 4. type sqldeveloper in terminal 5. edit /opt/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf 6. add this line SetJavaHome /usr/lib/jvm/java-6-openjdk 7. Comment the line #SetJavaHome ../../jdk 8. Type [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/installation-oracle-sqldeveloper.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installation Oracle 10g on Ubuntu</title>
		<link>http://www.punyadimas.com/instalasi-oracle-10g-on-ubuntu.html</link>
		<comments>http://www.punyadimas.com/instalasi-oracle-10g-on-ubuntu.html#comments</comments>
		<pubDate>Thu, 18 Nov 2010 05:38:51 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=271</guid>
		<description><![CDATA[Install Oracle 10G on Ubuntu is so Easy 1. Install the package sudo apt-get install build-essential libaio1 rpm lesstif2-dev alien 2. Create user and group for  oracle installation : * sudo groupadd oinstall * sudo groupadd dba * sudo groupadd nobody * sudo useradd -g oinstall -G dba,nobody -m oracle -s /bin/bash 3. Set Password [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/instalasi-oracle-10g-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashback query using SCN</title>
		<link>http://www.punyadimas.com/flashback-query-using-scn.html</link>
		<comments>http://www.punyadimas.com/flashback-query-using-scn.html#comments</comments>
		<pubDate>Thu, 11 Nov 2010 04:36:01 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=253</guid>
		<description><![CDATA[SQL&#62; show user; USER is “SCOTT” 1)  Here you must the know the SCN value to restore back the old data. The current SCN can be found using: SQL&#62; select dbms_flashback.get_system_change_number from dual; GET_SYSTEM_CHANGE_NUMBER ------------------------ 3297508 You can store this value in a table for future reference. 2)  You wrongly updated the salary of MILLER. [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/flashback-query-using-scn.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashback query using date</title>
		<link>http://www.punyadimas.com/flashback-query-using-data.html</link>
		<comments>http://www.punyadimas.com/flashback-query-using-data.html#comments</comments>
		<pubDate>Thu, 11 Nov 2010 04:33:50 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=250</guid>
		<description><![CDATA[SQL&#62; show user; USER is "SCOTT" 1) You have wrongly updated the salary of employee ALLEN using command: SQL&#62; update emp set sal=1800 where ename='ALLEN'; 1 row updated. SQL&#62; commit; Commit complete. SQL&#62; select ename, sal from emp where ename='ALLEN'; ENAME SAL ---------- ---------- ALLEN 1800 2) Now you have to restore it back to [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/flashback-query-using-data.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashback Table</title>
		<link>http://www.punyadimas.com/flashback-table.html</link>
		<comments>http://www.punyadimas.com/flashback-table.html#comments</comments>
		<pubDate>Thu, 11 Nov 2010 03:40:48 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=238</guid>
		<description><![CDATA[This bulletin illustrates the new Flashback Table feature provided with the 10g database. SQL&#62; Create table TESTFLASH (id number); SQL&#62; Insert into TESTFLASH values (1); SQL&#62; Insert into TESTFLASH values (2); SQL&#62; Insert into TESTFLASH values (3); SQL&#62; Insert into TESTFLASH values (4); SQL&#62; Insert into TESTFLASH values (5); SQL&#62; Commit; SQL&#62; select * from [...]]]></description>
		<wfw:commentRss>http://www.punyadimas.com/flashback-table.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Startup Oracle Database</title>
		<link>http://www.punyadimas.com/startup-oracle-database.html</link>
		<comments>http://www.punyadimas.com/startup-oracle-database.html#comments</comments>
		<pubDate>Sat, 21 Aug 2010 18:50:11 +0000</pubDate>
		<dc:creator>punyadimas</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://punyadimas.com/?p=225</guid>
		<description><![CDATA[1. Start TNS lsnrctl start 2. set OracleSID set ORCL 3. Start Service sc start OracleSERVICE$ORACLE_SID 4. Start Service using oradim oradim -startup -sid $ORACLE_SID 5. SQLPLUS "/ as sysdba" 6. startup]]></description>
		<wfw:commentRss>http://www.punyadimas.com/startup-oracle-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

