<?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>Borndba</title>
	<atom:link href="http://www.borndba.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.borndba.com</link>
	<description></description>
	<lastBuildDate>Thu, 01 Mar 2012 06:46:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Compound trigger setting date column null in 11.1.0.7</title>
		<link>http://www.borndba.com/index.php/2012/03/compound-trigger-setting-date-column-null-in-11-1-0-7/</link>
		<comments>http://www.borndba.com/index.php/2012/03/compound-trigger-setting-date-column-null-in-11-1-0-7/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 06:23:34 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5573</guid>
		<description><![CDATA[11.1.0.7 has many bug with compound trigger. Another bug we noticed is compound trigger setting the date column to null. SQL&#62; drop table table1; Table dropped. SQL&#62; create table table1 2  (name varchar2(150), 3  assessment varchar2(150), 4  created_dt date, 5  updated_dt date); Table created. SQL&#62; insert into table1 values(&#8216;test&#8217;,'test1&#8242;,&#8217;01-dec-2011&#8242;,&#8217;01-dec-2011&#8242;); 1 row created. SQL&#62; insert into [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/03/compound-trigger-setting-date-column-null-in-11-1-0-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>export from db where sysaux needs recovery</title>
		<link>http://www.borndba.com/index.php/2012/02/export-from-db-where-sysaux-needs-recovery/</link>
		<comments>http://www.borndba.com/index.php/2012/02/export-from-db-where-sysaux-needs-recovery/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 06:47:06 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5571</guid>
		<description><![CDATA[Whenever sysaux goes to recovery state, you won&#8217;t be able to do the exp or expdp. You will get error like &#8216;not able to read/write sysaux&#8217; datafiles. If you don&#8217;t have the archivelog to recover the sysaux, then you can follow below steps to atleast get the exp work. expdp doesn&#8217;t work still. Shutdown immediate; [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/02/export-from-db-where-sysaux-needs-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>import slow</title>
		<link>http://www.borndba.com/index.php/2012/02/import-slow/</link>
		<comments>http://www.borndba.com/index.php/2012/02/import-slow/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 07:04:27 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5569</guid>
		<description><![CDATA[&#8220;SMON: parallel recovery restart with degree=0 (!=32)&#8221; We were doing imp on a table populating many millions of records. In the middle i have killed and restarted the import. The sequent import went slow, when checked noticed below event in v$session &#8220;wait for stopper event to be increased&#8221; This event is because of parallel rollback [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/02/import-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compound trigger messup in 11.1.0.7</title>
		<link>http://www.borndba.com/index.php/2012/02/compound-trigger-messup-in-11-1-0-7/</link>
		<comments>http://www.borndba.com/index.php/2012/02/compound-trigger-messup-in-11-1-0-7/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 07:02:17 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5568</guid>
		<description><![CDATA[CREATE TABLE TAB1 ( &#8220;TAB1_KEY&#8221; NUMBER, &#8220;NUMB1&#8243;     NUMBER, &#8220;ACTION_DT&#8221; DATE, &#8220;USER_ID&#8221;     VARCHAR2(60 BYTE), &#8220;ACTION&#8221;      VARCHAR2(1500 BYTE) ); CREATE TABLE TAB_HIST ( &#8220;ACTION_DT&#8221; DATE, &#8220;USER_ID&#8221;     VARCHAR2(60 BYTE), &#8220;ACTION&#8221;      VARCHAR2(1500 BYTE) ); &#8211; Compound Trigger create or replace TRIGGER TRG_TAB1_INSERT FOR INSERT ON TAB1 COMPOUND TRIGGER BEFORE STATEMENT IS BEGIN INSERT INTO TAB_HIST(ACTION_DT,USER_ID,action) VALUES(SYSDATE,&#8217;Trigger&#8217;,'START BEFORE STATEMENT&#8217;); &#8211;    [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/02/compound-trigger-messup-in-11-1-0-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11g packet size is more compared to 9i packet size</title>
		<link>http://www.borndba.com/index.php/2012/02/5565/</link>
		<comments>http://www.borndba.com/index.php/2012/02/5565/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 06:59:03 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Network]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5565</guid>
		<description><![CDATA[There is marginal spike in the data transfer over the network when we were testing for 11g migration. On investigation we figured out that 11g on some platform will be sending more data compared to 9i &#160; 9i DB with explicite 4K SDU SIZE : ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [03-DEC-2011 20:31:03:968] nspsend: 106 bytes to transport ⎝ most [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/02/5565/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>logfile retention using adrci</title>
		<link>http://www.borndba.com/index.php/2012/02/logfile-retention-using-adrci/</link>
		<comments>http://www.borndba.com/index.php/2012/02/logfile-retention-using-adrci/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 06:41:15 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5563</guid>
		<description><![CDATA[There will be cases where number of tracefiles generation will be huge in some of environments. In 11g instead of using log clearing script we can use the incident packing service (adrci) to control purging policy.  But default, itís 30 days for trace files and 1 years for rest of the files. $ adrci ADRCI: [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/02/logfile-retention-using-adrci/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>test blog posting via email</title>
		<link>http://www.borndba.com/index.php/2012/01/test-blog-from-email/</link>
		<comments>http://www.borndba.com/index.php/2012/01/test-blog-from-email/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 12:48:21 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Administration]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=5557</guid>
		<description><![CDATA[It&#8217;s convinent to post blog via email. After struggling for a while, got the plugin postie to do this functionalities. Which mean more posting from me going forward. convert this post to pdf.]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2012/01/test-blog-from-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrate oem report across environment using emcli</title>
		<link>http://www.borndba.com/index.php/2011/07/migrate-oem-report-across-environment-using-emcli/</link>
		<comments>http://www.borndba.com/index.php/2011/07/migrate-oem-report-across-environment-using-emcli/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 05:57:04 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Grid Control]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=907</guid>
		<description><![CDATA[Set the login info, otherwise you will give session expired error. ./emcli setup -url=https://source_hostname:7799/em -username=sysman ./emcli export_report -title="Database Size" -owner="SYSMAN" -output_file="db_size.xml" Report "Database Size", owned by "SYSMAN", has been exported from the repository. Exported reports may not contain all information from original report. Repository specific information such as targets, administrator access, and schedules are not [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2011/07/migrate-oem-report-across-environment-using-emcli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>export template across oms servers using emcli</title>
		<link>http://www.borndba.com/index.php/2011/07/export-template-across-oms-servers-using-emcli/</link>
		<comments>http://www.borndba.com/index.php/2011/07/export-template-across-oms-servers-using-emcli/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 05:37:19 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Grid Control]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=895</guid>
		<description><![CDATA[./emcli setup -url=https://source_hostname:7799/em -username=sysman If you don&#8217;t issue the above command, you will get error like session expired. get the name and target type from below query  SELECT TEMPLATE_NAME,TARGET_TYPE FROM sysman.MGMT_TEMPLATES ; ./emcli export_template -name="Common_Database_Template" -arget_type="oracle_database" -output_file=Common_Database_Template.out ./emcli export_template -name="Common_Sybase_Template" -target_type="sybase_ase" -output_file=Common_Sybase_Template.out ./emcli export_template -name="Common_Clusterdb_template" -target_type="rac_database" -output_file=Common_Clusterdb_template.out ./emcli export_template -name="Common_ASM_template" -target_type="osm_instance" -output_file=Common_ASM_template.out ./emcli export_template -name="Common_Agent_template" [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2011/07/export-template-across-oms-servers-using-emcli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permission denied:  make_sock: could not bind to address</title>
		<link>http://www.borndba.com/index.php/2011/06/permission-denied-make_sock-could-not-bind-to-address/</link>
		<comments>http://www.borndba.com/index.php/2011/06/permission-denied-make_sock-could-not-bind-to-address/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 05:10:24 +0000</pubDate>
		<dc:creator>Borndba</dc:creator>
				<category><![CDATA[Oracle Grid Control]]></category>

		<guid isPermaLink="false">http://www.borndba.com/?p=892</guid>
		<description><![CDATA[By mistake if you have used wrong port while configuring SLB, the oms will not come up. ./emctl secure oms -sysman_pwd xyz123 -reg_pwd abc123 -host hostname -secure_port 443 -slb_port 443 -slb_console_port 443 You will be getting below error while starting the oms. ./emctl start oms Oracle Enterprise Manager 11g Release 1 Grid Control  Copyright (c) [...]]]></description>
		<wfw:commentRss>http://www.borndba.com/index.php/2011/06/permission-denied-make_sock-could-not-bind-to-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

