<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-894258364944283055</id><updated>2011-11-27T16:56:52.177-08:00</updated><title type='text'>Karma DBA</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-3853861295715926192</id><published>2009-04-17T04:59:00.000-07:00</published><updated>2009-04-17T05:04:37.654-07:00</updated><title type='text'>Calculate the size of the RMAN backup</title><content type='html'>Yesterday I went to see the backup team to see the ways we can reduce the cost of the backup ( recession time ...cost cutting ;) &lt;br /&gt;&lt;br /&gt;I was told by backup team that oracle is taking lot of resources w.r.t tape ..thus they asked me to find out for each database what is the size of the backup ..&lt;br /&gt;&lt;br /&gt;It is very difficult to get the size of the rman backup's directly but following SQL will help u to get the approx size in TB about the rman backup sets in tape . This is valid only for 9i ..It may work in 10G also but not checked and tested !!!&lt;br /&gt;&lt;br /&gt;select sum(blocks*block_size)/1024/1024/1024/1024    from rc_backup_datafile ;&lt;br /&gt;&lt;br /&gt;select sum(blocks*block_size)/1024/1024/1024/1024    from RC_BACKUP_REDOLOG ;&lt;br /&gt;&lt;br /&gt;Above SQL's have to be run in sqlplus in RMAN catalog database ..&lt;br /&gt;&lt;br /&gt;Hope this helps to determine the cost of tape's&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-3853861295715926192?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/3853861295715926192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/3853861295715926192'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2009/04/calculate-size-of-rman-backup.html' title='Calculate the size of the RMAN backup'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-2551861661537214506</id><published>2009-04-16T04:40:00.001-07:00</published><updated>2009-04-16T04:50:38.107-07:00</updated><title type='text'>How to Block TOAD session in Production Database</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As the TOAD usuage increases , There are issues with performance of the database . We have seen that TOAD users are one of the reasons for causing performance issue. Users , I mean developers, Login to Production database using TOAD and fire N number of Queries . If the Query uses Parallelism , Then Parallel processes are linked to the users . Thus when a process requires a parallel process , Oracle is not able to allocate the necessary parallel processes as requested .. thus performance issue . Also we have seen TOAD users can use locking issue which may impact the overnight batch issues&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thus , I was asked to see how to restrict the TOAD access to the Production databases . There are two ways to do this :&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Not to allow TOAD session&lt;/li&gt;&lt;br /&gt;&lt;li&gt;To kill the TOAD session after some interval &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;p&gt;I think first option is the best option ....&lt;/p&gt;&lt;br /&gt;&lt;p&gt;To do this , We have to write a simple trigger ....&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;CREATE OR REPLACE TRIGGER block_toad&lt;br /&gt;AFTER LOGON&lt;br /&gt;ON DATABASE&lt;br /&gt;DECLARE&lt;br /&gt;--Declare a cursor to find out the program&lt;br /&gt;--the user is connecting with.&lt;br /&gt;CURSOR user_prog IS&lt;br /&gt;SELECT program FROM v$session&lt;br /&gt;WHERE audsid=sys_context('USERENV','SESSIONID');&lt;br /&gt;--Assign the cursor to a PL/SQL record.&lt;br /&gt;user_rec user_prog%ROWTYPE;&lt;br /&gt;BEGIN&lt;br /&gt;OPEN user_prog;&lt;br /&gt;FETCH user_prog INTO user_rec;&lt;br /&gt;IF user_rec.program IN ('TOAD.exe')&lt;br /&gt;THEN&lt;br /&gt;RAISE_APPLICATION_ERROR(-20001, 'You are not allowed to login with TOAD');&lt;br /&gt;END IF;&lt;br /&gt;CLOSE user_prog;&lt;br /&gt;END;&lt;br /&gt;/&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Similar process can be used to block other tools ...&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Hope this helps DBA to manage the TOAD access to Production databases ;) &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-2551861661537214506?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/2551861661537214506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=2551861661537214506' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/2551861661537214506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/2551861661537214506'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2009/04/how-to-block-toad-session-in-production.html' title='How to Block TOAD session in Production Database'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-7895246944092345166</id><published>2007-11-13T05:31:00.000-08:00</published><updated>2007-11-13T05:43:11.332-08:00</updated><title type='text'>Oracle Database 11G : New Features for DBA</title><content type='html'>In Next few days , I am going to start writing on Oracle new database version 11G . Following topics will be covered and most of the topics will be related to DBA's.&lt;br /&gt;&lt;br /&gt;Some of topics coverered will be :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Oracle 11G : Installation and Upgrade Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : Storage Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : Intelligent Infrastructure Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : Performance Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : Partitioning and Storage-Related Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : RMAN Enhancements&lt;/li&gt;&lt;li&gt;Oracle 11G : Flashback and Logminer &lt;/li&gt;&lt;li&gt;Oracle 11G : Diagnosability Enhancements &lt;/li&gt;&lt;li&gt;Oracle 11G : Database Replay &lt;/li&gt;&lt;li&gt;Oracle 11G : Data Recovery Advisor &lt;/li&gt;&lt;li&gt;Oracle 11G : Security New Features &lt;/li&gt;&lt;li&gt;Oracle 11G : Oracle SecureFiles &lt;/li&gt;&lt;li&gt;Oracle 11G : SQL Performance Analyzer &lt;/li&gt;&lt;li&gt;Oracle 11G : SQL Plan Management &lt;/li&gt;&lt;li&gt;Oracle 11G : Automatic SQL Tuning &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Do visit soon for updates !!!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-7895246944092345166?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/7895246944092345166/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=7895246944092345166' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7895246944092345166'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7895246944092345166'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/11/oracle-database-11g-new-features-for.html' title='Oracle Database 11G : New Features for DBA'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-2399105998237867508</id><published>2007-11-06T06:49:00.000-08:00</published><updated>2007-11-06T06:59:10.113-08:00</updated><title type='text'>Oracle Software : 32 Bit or 64 Bit</title><content type='html'>I was with a client who had asked me to install oracle on linux 64 bit . It was quite a small task and as a Oracle Consultant it is very easy but the problem I had that ClientDBA had copied the software from CD to server and left and none knew whether the software was 32 bit or 64 bit :(&lt;br /&gt;&lt;br /&gt;I could have made my life easy by downloading the correct software from OTN and transfer it to server but again the problem was with the network as it was remote installation .&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to find whether the software is 32 bit or 64bit :&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to Disk3/stage/Components/oracle.options.odm/9.2.0.4.0/1/DataFiles/ in the installation kit.&lt;/li&gt;&lt;/ul&gt;% cd &lt;path_to_kit&gt;Disk3/stage/Components/oracle.options.odm/9.2.0.4.0/1/datafiles&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Copy lib.1.1.jar file in a new directory, outside the installation kit&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;% cp lib.1.1.jar $TMP&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Unzip the file&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;% unzip lib.1.1.jar &lt;/p&gt;&lt;ul&gt;&lt;li&gt;execute "file" command for dmndm.o&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;% file dmndm.o&lt;/p&gt;&lt;p&gt;This is a file specific to DataMining. If this file is 32 bit, then your software is 32bit. If the file is 64bit, then the software is 64bit&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-2399105998237867508?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/2399105998237867508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=2399105998237867508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/2399105998237867508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/2399105998237867508'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/11/oracle-software-32-bit-or-64-bit.html' title='Oracle Software : 32 Bit or 64 Bit'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-7443781039106469508</id><published>2007-10-02T02:21:00.000-07:00</published><updated>2007-10-02T03:00:39.554-07:00</updated><title type='text'>How to Load file from one Character Set to EBS in UTF8</title><content type='html'>It a very common to load file (data) from one character set to another character set.&lt;br /&gt;&lt;br /&gt;Here I will give u an example:&lt;br /&gt;&lt;br /&gt;We have created a csv file from a database which has got following NLS properties:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;NLS_LANG=American_America.WE8ISO8859P1&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Now we have to load the file in EBS using concurrent manager and the NLS details of the EBS are as follows&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;NLS_LANG=American_America.UTF8&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;If the source file has got some special characters (Western European characters), you will find that complete file is not loaded in EBS as the file generated is not in UTF8 character set.&lt;br /&gt;&lt;br /&gt;Errors u may get are&lt;br /&gt;&lt;br /&gt;&lt;em&gt;Record 144: Rejected - Error on table "GL"."GL_INTERFACE", column REFERENCE10.&lt;br /&gt;Multibyte character error.&lt;br /&gt;Record 145: Rejected - Error on table "GL"."GL_INTERFACE", column REFERENCE10.&lt;br /&gt;Multibyte character error.&lt;br /&gt;&lt;/em&gt;&lt;br /&gt;Table "GL"."GL_INTERFACE":&lt;br /&gt;11968 Rows successfully loaded.&lt;br /&gt;2 Rows not loaded due to data errors.&lt;br /&gt;0 Rows not loaded because all WHEN clauses were failed.&lt;br /&gt;0 Rows not loaded because all fields were null.&lt;br /&gt;&lt;br /&gt;To resolve this issue, we have to do the following:&lt;br /&gt;&lt;br /&gt;After the file is created and transferred to EBS server, it has to be converted to UTF8 character set before loading in EBS.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to convert the Character set of a file&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;adncnv &lt;source&gt;&lt;source&gt;&lt;dest&gt;&lt;dest&gt;&lt;br /&gt;&lt;br /&gt;e.g. to convert a file from WE8ISO8859P1 to UTF8:&lt;br /&gt;&lt;br /&gt;$AD_TOP/bin/adncnv AP_loaddata1_f_we8.dat WE8ISO8859P1 AP_loaddata1_f.dat UTF8&lt;br /&gt;&lt;br /&gt;(this converts the AP_loaddata1_f_we8.dat file from Western European character set to UTF8 character set ).&lt;br /&gt;&lt;br /&gt;You should then copy the resulting file to the directory from where you intend to run the sql*loader utility.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-size:78%;"&gt;More details can be found in Metalink Note 135691.1&lt;/span&gt;&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-7443781039106469508?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/7443781039106469508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=7443781039106469508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7443781039106469508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7443781039106469508'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/10/how-to-load-file-from-one-character-set.html' title='How to Load file from one Character Set to EBS in UTF8'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-7384081049109198022</id><published>2007-10-02T02:01:00.000-07:00</published><updated>2007-10-02T02:14:23.044-07:00</updated><title type='text'>Discoverer Issue after Upgrade to 11.5.10.2</title><content type='html'>Recently we upgraded our EBS from 11.5.9 to 11.5.10.2 and found that whenever user clicks on Discoverer plus from the application, it  always point to discoverer viewer which was  not correct.&lt;br /&gt;&lt;br /&gt;Reason for this issue is:&lt;br /&gt;&lt;br /&gt;There is a profile option called &lt;strong&gt;ICX: Discoverer use Viewer&lt;/strong&gt; which is set to &lt;strong&gt;YES&lt;/strong&gt; by default. Hence Discoverer Viewer is always started even if discoverer plus is requested.&lt;br /&gt;&lt;br /&gt;Hence we need to change the value of &lt;strong&gt;ICX: Discoverer use Viewer&lt;/strong&gt; profile option to &lt;strong&gt;NO&lt;/strong&gt; and bounce Apache for users to discover plus from EBS Application&lt;br /&gt;&lt;br /&gt;Hope this helps&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-7384081049109198022?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/7384081049109198022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=7384081049109198022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7384081049109198022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7384081049109198022'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/10/discoverer-issue-after-upgrade-to.html' title='Discoverer Issue after Upgrade to 11.5.10.2'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-4032679964599092655</id><published>2007-04-16T01:30:00.000-07:00</published><updated>2007-04-16T01:38:38.737-07:00</updated><title type='text'>Oracle Expert Program</title><content type='html'>Oracle Education has recently started new concept known "Oracle Expert" in certification which I think is very good as this will help us going for specialization within Oracle.&lt;br /&gt;&lt;br /&gt;There are many streams which DBA's or Oracle Apps DBA can go for :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Oracle Database 10g: Managing Oracle on Linux Certified Expert&lt;/li&gt;&lt;li&gt;Oracle Database 10g: Real Applications Clusters Administrator Certified Expert&lt;/li&gt;&lt;li&gt;Oracle 11i Workflow Certified Expert&lt;/li&gt;&lt;li&gt;Oracle 11i System Administrator Certified Expert&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The first two will be released soon in Beta version but the later ones ( For Oracle Apps DBA) have been released in Production.&lt;/p&gt;&lt;p&gt;For details , Visit Oracle Certification website:&lt;/p&gt;&lt;p&gt;&lt;a href="http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=145"&gt;http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=145&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-4032679964599092655?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/4032679964599092655/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=4032679964599092655' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/4032679964599092655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/4032679964599092655'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/04/oracle-expert-program.html' title='Oracle Expert Program'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-8138583846597298872</id><published>2007-04-02T03:38:00.000-07:00</published><updated>2007-04-02T03:42:58.164-07:00</updated><title type='text'>Cloning of Oracle Application</title><content type='html'>&lt;p&gt;This is one of the most usual tasks given to Apps DBA and from my past exp., DBA's spend more than 70% of time in Cloning.&lt;br /&gt;&lt;br /&gt;Cloning Oracle Apps 11i is done through a tool given by Oracle known as RAPID CLONE and it is very easy to use but it does not do all the bits....&lt;br /&gt;&lt;br /&gt;When u clone the env, there is a ref of the source env in the database in FND_NODES tables , thus after clone if u visit the OAM page , u will see both source nodes and target nodes . Also u will be some concurrent managers which have got ref to source nodes.&lt;br /&gt;&lt;br /&gt;If u want to get rid of the source nodes , Do the following :Follow the Rapid clone document (Metalink note : 230672.1)&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Prepare the Source System ( Pre Clone Steps )&lt;/li&gt;&lt;li&gt;Copy the Source System to the Target System&lt;/li&gt;&lt;li&gt;Configure the Target System&lt;br /&gt;o Configure the target system database server&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;o &lt;/span&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;After the database is created ,connect as apps and execute the following&lt;br /&gt;EXEC FND_CONC_CLONE.SETUP_CLEAN;&lt;br /&gt;Commit;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;o Above cmd will clean the FND_NODES table and does something more than that i.e. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;c lear the concurrent manager tables etc.&lt;br /&gt;o Run the autoconfig.sh again on the database tier&lt;br /&gt;&lt;br /&gt;And there after follow the doc Metalink note: 230672.1&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-8138583846597298872?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/8138583846597298872/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=8138583846597298872' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/8138583846597298872'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/8138583846597298872'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/04/cloning-of-oracle-application.html' title='Cloning of Oracle Application'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-7801815776095697054</id><published>2007-04-01T03:49:00.000-07:00</published><updated>2007-04-01T03:54:21.645-07:00</updated><title type='text'>Oracle 11i Applications Technology Certification Update</title><content type='html'>Good news from Oracle for Oracle Apps DBA regrading certification .&lt;br /&gt;&lt;br /&gt;Now it is easy to get certification for Oracle Apps DBA if u have 10G OCP or 9i OCP .&lt;br /&gt;&lt;br /&gt;After careful review from the beta exams and DBA/customer feedback , the exams 1Z1-231 Implement Oracle Workflow 11i and 1Z1-232 Oracle 11i System Administration have been reapportioned so that the resulting credentials better fit their corresponding job roles.&lt;br /&gt;&lt;br /&gt;Now if u have 9i or 10G OCP , u have to appear for one Apps exams to get OCP for Oracle 11i Applications Database Administrator Certified Professional ..&lt;br /&gt;&lt;br /&gt;For more details , Please visit Oracle website&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.oracle.com/global/us/education/certification/appsdba.html"&gt;http://www.oracle.com/global/us/education/certification/appsdba.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-7801815776095697054?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/7801815776095697054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=7801815776095697054' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7801815776095697054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/7801815776095697054'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/04/oracle-11i-applications-technology.html' title='Oracle 11i Applications Technology Certification Update'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-5419816770640758749</id><published>2007-03-30T02:29:00.000-07:00</published><updated>2007-03-30T13:52:00.037-07:00</updated><title type='text'>How to find the Oracle Developer version ...</title><content type='html'>It is a very common question to find out the version of the Oracle Developer installed with Oracle Apps .What version , how to find out the version number and how to upgrade it.&lt;br /&gt;&lt;br /&gt;This is required if u are planning to upgrade the oracle application database from 9i to 10G. One step is to upgrade the developer version&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;To find out the developer version ...Set the Apps env and use the following command :&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Run $ORACLE_HOME/bin/f60gen help=y to display various component versions&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to upgrade the Oracle Developer version ?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Follow Oracle Metalink note : 125767.1 : Upgrading Developer 6i with Oracle Applications 11i&lt;br /&gt;&lt;br /&gt;Quite simple....takes around 30 mins ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-5419816770640758749?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/5419816770640758749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=5419816770640758749' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/5419816770640758749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/5419816770640758749'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/03/how-to-find-oracle-developer-version.html' title='How to find the Oracle Developer version ...'/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-1988222132632851251</id><published>2007-03-29T02:46:00.000-07:00</published><updated>2007-03-30T01:44:49.329-07:00</updated><title type='text'></title><content type='html'>&lt;span style="font-family:arial;"&gt;I dedicate this BLOG to the following :&lt;br /&gt;&lt;br /&gt;My mentor and my Guru &lt;span style="color:#330033;"&gt;&lt;em&gt;Sandeep Pandya&lt;/em&gt;&lt;/span&gt; for giving me directions in learning Oracle Application and gave full support during my learning curve as Oracle DBA and Oracle Apps DBA.&lt;br /&gt;While working with him , I learnt not only Oracle but other softskills like ITIL concepts , presentation skills.&lt;br /&gt;&lt;br /&gt;My wife Anshul for her support and patience, inspite lot of personal time I spent in Office working late...&lt;br /&gt;&lt;br /&gt;My kidsApoorv and Anvi ...&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-1988222132632851251?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/1988222132632851251/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=1988222132632851251' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/1988222132632851251'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/1988222132632851251'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/03/i-dedicate-this-blog-to-following-my.html' title=''/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-894258364944283055.post-135037270062470616</id><published>2007-03-29T02:40:00.000-07:00</published><updated>2007-03-30T01:43:17.402-07:00</updated><title type='text'></title><content type='html'>About me;&lt;br /&gt;&lt;br /&gt;Vivek is Director of Karma DBA and has over 10 years of experience as an Oracle DBA and 6 years as an Oracle Apps DBA managing a variety of database systems, DBA teams and infrastructure projects. Worked within pan-European organisations in various sectors including Telecoms, top-tier consultancy, retail/marketing and banking.&lt;br /&gt;&lt;br /&gt;About Karma DBA&lt;br /&gt;&lt;br /&gt;A UK based organisation offering consultancy and remote support services for Oracle Applications and Oracle Technology based systems. Our in-depth experience of managing Oracle technologies and projects will compliment your internal or partner resources to improve productivity, efficiency and reduce cost of ownership. Visit www.karma-dba.co.uk&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/894258364944283055-135037270062470616?l=karmadba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karmadba.blogspot.com/feeds/135037270062470616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=894258364944283055&amp;postID=135037270062470616' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/135037270062470616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/894258364944283055/posts/default/135037270062470616'/><link rel='alternate' type='text/html' href='http://karmadba.blogspot.com/2007/03/about-me-vivek-is-director-of-karma-dba.html' title=''/><author><name>Karma DBA BLOG</name><uri>http://www.blogger.com/profile/01580505300676464326</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
