<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-8117435327518281619</atom:id><lastBuildDate>Mon, 19 Oct 2009 06:31:23 +0000</lastBuildDate><title>Career (b)Log</title><description>Oracle explained by noob for noobs</description><link>http://droeli.com/career/</link><managingEditor>noreply@blogger.com (Dröli)</managingEditor><generator>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-237396940620851756</guid><pubDate>Fri, 16 Oct 2009 08:07:00 +0000</pubDate><atom:updated>2009-10-18T23:31:24.123-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>migration</category><category domain='http://www.blogger.com/atom/ns#'>impdp</category><category domain='http://www.blogger.com/atom/ns#'>datapump</category><category domain='http://www.blogger.com/atom/ns#'>create db</category><title>How to migrate a small oracle database from one host to another</title><description>&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt; This procedure works with 10g+ using Datapump. I am not sure, if the export/import utility supports Network Links. Also, this procedure can be used for a migration to a newer/older version (since we're importing the data and don't use a copy/duplicate)&lt;br /&gt;&lt;br /&gt;Preparation:&lt;br /&gt;Create Empty Database on new Host:&lt;br /&gt;- dbca&lt;br /&gt;- Custom&lt;br /&gt;- Select components according to &lt;span style="font-style: italic;"&gt;select comp_name from dba_registry;&lt;/span&gt;&lt;br /&gt;- Select charset according to&lt;span style="font-style: italic;"&gt;  select * from nls_database_parameters where parameter='NLS_CHARACTERSET';&lt;br /&gt;&lt;/span&gt;- Choose create script and deselect Create DB now&lt;br /&gt;- Create oratab entry&lt;br /&gt;- Goto admin/scritpts&lt;br /&gt;- Modify init.ora according to &lt;a href="http://droeli.com/DBA/init.ora_template10g.txt"&gt;10g Template&lt;/a&gt; or &lt;a href="http://droeli.com/DBA/init.ora_template11g.txt"&gt;11g Template&lt;/a&gt;&lt;br /&gt;- run ./SID.sh&lt;br /&gt;- Do a quick check if all objects are valid:&lt;span style="font-style: italic;"&gt; select count(*) from dba_objects where status='INVALID';&lt;/span&gt;&lt;br /&gt;- After DB creation, create the same tablespaces as in the source DB using:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;begin&lt;br /&gt;DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'PRETTY',true);&lt;br /&gt;DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SQLTERMINATOR',true);&lt;br /&gt;DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'STORAGE',false);&lt;br /&gt;end;&lt;br /&gt;/&lt;br /&gt;set long 100000 longchunksize 10000 pages 0&lt;br /&gt;set lines 200&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;select dbms_metadata.get_ddl('TABLESPACE',name) from v$tablespace where name not in ('SYSTEM','SYSAUX');&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;(Remove all existing tablespaces from the command list. Remove the datafile name (we're using OMF hell yeah!) put size to about 100M and turn autoextend on (that way, we will shrink unused space during the migration as well, how cool is that huh?))&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;- Create DB Link to source database: &lt;span style="font-style: italic;"&gt;create database link Migration connect to system identified by "password" using 'SID';&lt;/span&gt;&lt;br /&gt;- Test db link: &lt;span style="font-style: italic;"&gt;select host_name from v$instance@MIGRATION;&lt;/span&gt; (result clearly should be the host of the source system)&lt;br /&gt;- Create directory for datapump logfile. &lt;span style="font-style: italic;"&gt;create directory migration_log as '/path/to/log';&lt;/span&gt;&lt;br /&gt;- Put Database in Archivelog mode and activate Flashback. (&lt;span style="font-style: italic;"&gt;startup force mount; alter database archivelog; alter database flashback on; alter database open;&lt;/span&gt;)&lt;br /&gt;- Create Guaranteed Flashback Point (in case something goes wrong, we won't have to re-install the db) &lt;span style="font-style: italic;"&gt;create restore point before_mig guarantee flashback database;&lt;/span&gt;&lt;br /&gt;- Start the import: &lt;span style="font-style: italic;"&gt;impdp full=y network_link=MIGRATION directory=migration_log logfile=migration.log&lt;/span&gt; (use / as sysdba)&lt;br /&gt;- Check the logfile, for any errors other than ORA-31684 (Object already exists)&lt;br /&gt;- &lt;span style="font-style: italic;"&gt;drop restore point before_mig;&lt;/span&gt;&lt;br /&gt;- Remove Source DB from Grid Control (or any other monitoring)&lt;br /&gt;- Add new DB&lt;br /&gt;- Configure Backup&lt;br /&gt;- Inform everyone how hard you just worked!&lt;br /&gt;- Get a Beer&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-237396940620851756?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/10/how-to-migrate-small-oracle-database.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-8714276636564666770</guid><pubDate>Wed, 09 Sep 2009 14:26:00 +0000</pubDate><atom:updated>2009-09-09T07:29:00.597-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>rman</category><title>Register Database with RMAN catalog</title><description>&lt;pre&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;rman target / catalog username/password@MYDB&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;RMAN&gt; register database;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;/pre&gt;Might come in handy :P&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.tiplib.com/56/register-database-rman-recovery-catalog"&gt;via dbmotive.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-8714276636564666770?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/09/register-database-with-rman-catalog.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-2591539907348121405</guid><pubDate>Wed, 12 Aug 2009 08:06:00 +0000</pubDate><atom:updated>2009-08-12T01:11:02.196-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>restore</category><category domain='http://www.blogger.com/atom/ns#'>recover</category><category domain='http://www.blogger.com/atom/ns#'>rman</category><category domain='http://www.blogger.com/atom/ns#'>incomplete</category><category domain='http://www.blogger.com/atom/ns#'>set until time</category><title>Incomplete Restore</title><description>First time I actually did this:&lt;br /&gt;&lt;br /&gt;A dev DB was faulty and the Developers asked me to restore it to one week before (05.08.2009 - 20:00)&lt;br /&gt;&lt;br /&gt;Action plan:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;- startup force mount&lt;br /&gt;- Delete datafiles via asmcmd&lt;br /&gt;- rman target /&lt;br /&gt;- run {&lt;br /&gt;     set until time "to_date('2009-08-05:20:00:00','YYYY-MM-DD:hh24:mi:ss')";&lt;br /&gt;     restore database;&lt;br /&gt;     recover database;&lt;br /&gt; }&lt;/blockquote&gt;Easy =)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-2591539907348121405?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/08/incomplete-restore.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-2116029498541872259</guid><pubDate>Mon, 10 Aug 2009 13:19:00 +0000</pubDate><atom:updated>2009-08-10T06:22:24.701-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>impdp</category><category domain='http://www.blogger.com/atom/ns#'>ORA-31696</category><title>OERR: ORA-31696 unable to export/import %s using client specified %s method</title><description>During a full import of a DB with Datapump, I got an ORA-31696 for a table.&lt;br /&gt;&lt;br /&gt;Woraround for this error is simply to import it afterwards with tables=owner.table_name and table_exists_action=replace (since the table is created but no data is imported)&lt;br /&gt;&lt;br /&gt;via &lt;a href="http://www.lazydba.com/oracle/0__160321.html"&gt;Lazydba&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-2116029498541872259?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/08/oerr-ora-31696-unable-to-exportimport-s.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-826625537584248823</guid><pubDate>Fri, 31 Jul 2009 12:02:00 +0000</pubDate><atom:updated>2009-07-31T05:06:54.241-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>ORA-12514</category><category domain='http://www.blogger.com/atom/ns#'>tnsping</category><category domain='http://www.blogger.com/atom/ns#'>local_listener</category><title>TNSping resolves but SQLplus gives ORA-12514</title><description>After creating a new DB on 11g, configuring it in listener.ora and entering it into LDAP, tnsping worked but I wasn't able to make a connection.&lt;br /&gt;&lt;br /&gt;The problem was, that the DB didn't register with the listener automatically. Setting the local_listener parameter solved the problem&lt;br /&gt;&lt;br /&gt;alter system set local_listener='host_listenername';&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-826625537584248823?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/07/tnsping-resolves-but-sqlplus-gives-ora.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-6295682479803677136</guid><pubDate>Mon, 22 Jun 2009 08:30:00 +0000</pubDate><atom:updated>2009-06-22T01:35:21.964-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>corrupt</category><category domain='http://www.blogger.com/atom/ns#'>Ora-01578</category><title>ORA-01578 ORACLE data block corrupted</title><description>In case this happens, Metalink provides a super-duper statement, that will show you the name and type of the corrupt segment:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;SELECT  segment_name ,  segment_type ,  owner , tablespace_name&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;FROM  sys.dba_extents&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;WHERE  file_id = &amp;amp;bad_file_id&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:courier;"&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;AND  &amp;amp;bad_block_id BETWEEN block_id and block_id + blocks -1&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;To fix it, I used toad to recreate the tables/indexes that were corrupt.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-6295682479803677136?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/06/ora-01578-oracle-data-block-corrupted.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-6324960373956252523</guid><pubDate>Wed, 03 Jun 2009 17:44:00 +0000</pubDate><atom:updated>2009-06-03T10:56:55.686-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Import</category><category domain='http://www.blogger.com/atom/ns#'>archival error</category><category domain='http://www.blogger.com/atom/ns#'>imp</category><category domain='http://www.blogger.com/atom/ns#'>exp</category><category domain='http://www.blogger.com/atom/ns#'>rman</category><category domain='http://www.blogger.com/atom/ns#'>export</category><category domain='http://www.blogger.com/atom/ns#'>archive logs</category><title>Some import/export notes</title><description>&lt;ul&gt;&lt;li&gt;Always use direct=y when using exp/imp (much faster since it basically copies blocks from the db to the dumpfile)&lt;/li&gt;&lt;li&gt;Disable archive log mode before an import of a large database and do a backup afterwards. It's not really state of the art to delete archive logs when you get an ORA-19809: limit exceeded for recovery files (altough you could just back them up &lt;.&lt;)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When moving data from a &lt;=9i to 10g+ database, only do a schema import. Those old standard users could cause the import to just abort.&lt;/li&gt;&lt;/ul&gt;Just a few things I remember from some frustrating few hours of exp/importing a 40 gig database -.-&lt;br /&gt;&lt;br /&gt;Btw: Just in case you don't know how to disable archive log mode:&lt;br /&gt;&lt;blockquote style="font-style: italic;"&gt;shutdown immediate;&lt;br /&gt;startup mount;&lt;br /&gt;alter database noarchivelog;&lt;br /&gt;alter database open;&lt;br /&gt;archive log list;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-6324960373956252523?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/06/some-importexport-notes.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-632896442512038072</guid><pubDate>Fri, 15 May 2009 12:28:00 +0000</pubDate><atom:updated>2009-05-15T05:33:43.281-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>expdp</category><category domain='http://www.blogger.com/atom/ns#'>duplicate</category><category domain='http://www.blogger.com/atom/ns#'>schema</category><category domain='http://www.blogger.com/atom/ns#'>impdp</category><category domain='http://www.blogger.com/atom/ns#'>datapump</category><title>Duplicate/Move/Import/Rename Schema</title><description>I was asked to copy two schemas from two databases into another.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Problem:&lt;/span&gt; The copies would have different names and use other Tablespaces&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt; Export via Datapump (expdp schema=schema_name [...]) and import with remap_schema and remap_tablespace parameter:&lt;br /&gt;&lt;br /&gt;impdp schemas=schema_name remap_schema=schema_name:new_schema_name remap_tablespace=tablespace_name:new_tablespace_name [...]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-632896442512038072?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/05/duplicatemoveimportrename-schema.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-3058353672612151173</guid><pubDate>Fri, 08 May 2009 09:30:00 +0000</pubDate><atom:updated>2009-05-13T04:56:42.924-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Oracle 10g</category><category domain='http://www.blogger.com/atom/ns#'>Schedule</category><category domain='http://www.blogger.com/atom/ns#'>Job</category><category domain='http://www.blogger.com/atom/ns#'>Program</category><title>Create Job: Oracle 10g</title><description>Today I researched something, our Apprentice asked.&lt;br /&gt;&lt;br /&gt;To create an automatic job in Oracle 10g we will use the DBMS_SCHEDULER package.&lt;br /&gt;&lt;br /&gt;First you create a program, that holds the activity you wish to perform&lt;br /&gt;&lt;blockquote&gt;SQL&gt; BEGIN&lt;br /&gt;2 SYS.DBMS_SCHEDULER.CREATE_PROGRAM&lt;br /&gt;3  (&lt;br /&gt;4        program_name         =&gt; 'SYS.TEST_JOB_PROG',&lt;br /&gt;5        program_type         =&gt; 'PLSQL_BLOCK',&lt;br /&gt;6        program_action       =&gt; 'begin&lt;br /&gt;7             update test_job_table set LOHN=LOHN+100 where name=''Heinz''; -- Zwei single quotes!&lt;br /&gt;8             end;'&lt;br /&gt;9        number_of_arguments  =&gt; 0,&lt;br /&gt;10       enabled              =&gt; TRUE,&lt;br /&gt;11       comments             =&gt; 'Test increase of table value',&lt;br /&gt;12      );&lt;br /&gt;13      /&lt;br /&gt;&lt;br /&gt;PL/SQL procedure successfully completed.&lt;/blockquote&gt;Then you create the schedule:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;SQL&gt; begin&lt;br /&gt;2  dbms_scheduler.create_schedule(&lt;br /&gt;3  repeat_interval =&gt; 'FREQ=HOURLY;BYMINUTE=5,10,15,20,25,30,35,40,45,50,55,0', -- &lt;a href="http://www.praetoriate.com/10g_273.htm"&gt;Erläuterungen&lt;/a&gt;&lt;br /&gt;4  schedule_name =&gt; '"test_job_sched"');&lt;br /&gt;5  end;&lt;br /&gt;6  /&lt;br /&gt;&lt;br /&gt;PL/SQL procedure successfully completed.&lt;/blockquote&gt;In the end you put connect the program with the schedule in a job&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;SQL&gt; begin&lt;br /&gt;2  dbms_scheduler.create_job(&lt;br /&gt;3  job_name=&gt; '"test_job_job"',&lt;br /&gt;4   program_name=&gt;'test_job_prog',&lt;br /&gt;5  schedule_name=&gt;'"test_job_sched"',&lt;br /&gt;6  job_class=&gt;'DEFAULT_JOB_CLASS',&lt;br /&gt;7  auto_drop=&gt;FALSE,&lt;br /&gt;8  enabled=&gt;TRUE);&lt;br /&gt;9   end;&lt;br /&gt;10  /&lt;br /&gt;&lt;br /&gt;PL/SQL procedure successfully completed.&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;a href="http://blogs.artinsoft.net/mrojas/archive/2006/11/22/1253.aspx"&gt;&lt;span style="text-decoration: underline;"&gt;Source&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-3058353672612151173?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/05/create-job-oracle-10g.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-5058370281648693023</guid><pubDate>Mon, 04 May 2009 11:30:00 +0000</pubDate><atom:updated>2009-05-04T04:32:45.573-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>ora-12505</category><category domain='http://www.blogger.com/atom/ns#'>local_listener</category><category domain='http://www.blogger.com/atom/ns#'>listener</category><title>Listener service problem</title><description>Dynamic listener was not able to register a service for a database that had the local_listener parameter set to another server in the spfile. Resulting in a ORA-12505 when trying to log on remotely. Unsetting the parameter solved the problem.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-5058370281648693023?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/05/listener-service-problem.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-8908971430397927232</guid><pubDate>Mon, 04 May 2009 09:11:00 +0000</pubDate><atom:updated>2009-05-04T02:21:31.656-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>10.2.0.4</category><category domain='http://www.blogger.com/atom/ns#'>Refresh</category><category domain='http://www.blogger.com/atom/ns#'>ORA-01130</category><title>Refreshes</title><description>Refreshed two Test Databases from Production. Prod is 10.2.0.4, test were 10.2.0.3.&lt;br /&gt;&lt;br /&gt;Notes:&lt;br /&gt;- Target &amp;amp; Destination DB must be same version&lt;br /&gt;- Don't forget to set the compatible parameter to the right version if you changed it.&lt;br /&gt;- Set the source host (NB_ORA_CLIENT=source_host), i.e. where the backup was taken, in the .rcv file in when you define the backup channel.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-8908971430397927232?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/05/refreshes.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-3035076516853955077</guid><pubDate>Mon, 16 Mar 2009 10:34:00 +0000</pubDate><atom:updated>2009-03-16T03:36:41.709-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>10.2.0.4</category><category domain='http://www.blogger.com/atom/ns#'>Cluster</category><category domain='http://www.blogger.com/atom/ns#'>Grid Control</category><category domain='http://www.blogger.com/atom/ns#'>Agent</category><title>Cluster Agent Installation</title><description>Installed Grid Control Management Agent on a Cluster Node via OUI and configured it in Grid Control.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-3035076516853955077?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/03/cluster-agent-installation.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-8211672298178174976</guid><pubDate>Wed, 11 Mar 2009 15:42:00 +0000</pubDate><atom:updated>2009-03-11T08:45:11.484-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>10.2.0.4</category><category domain='http://www.blogger.com/atom/ns#'>Cluster</category><category domain='http://www.blogger.com/atom/ns#'>Grid Control</category><category domain='http://www.blogger.com/atom/ns#'>Agent</category><title>GRID CONTROL: Applying multiple patches at once</title><description>Our consultant proposed to just install some (used in CS on every 10.2.0.4 agent installation) patches to try to solve the agent issue on a cluster node. (One Node sees all Dbs, other doesn't)&lt;br /&gt;&lt;br /&gt;Uses following Metalink Note to apply multiple patches at once:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:helvetica;"&gt;&lt;strong&gt;733925.1&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-8211672298178174976?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/03/grid-control-applying-multiple-patches.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-4652253099101873007</guid><pubDate>Wed, 11 Mar 2009 13:02:00 +0000</pubDate><atom:updated>2009-03-11T07:04:20.410-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>ORA-16038</category><category domain='http://www.blogger.com/atom/ns#'>Import</category><category domain='http://www.blogger.com/atom/ns#'>migration</category><category domain='http://www.blogger.com/atom/ns#'>export</category><category domain='http://www.blogger.com/atom/ns#'>db_recovery_file_dest_size</category><category domain='http://www.blogger.com/atom/ns#'>ORA-19815</category><category domain='http://www.blogger.com/atom/ns#'>character set</category><category domain='http://www.blogger.com/atom/ns#'>ORA-19809</category><category domain='http://www.blogger.com/atom/ns#'>oracle</category><title>MIGRATION: Test import of Database</title><description>Test import of intranet Database for migration with new Character set on Unix (Source Windows).&lt;br /&gt;&lt;br /&gt;FROMCHAR                       WE8MSWIN1252                                &lt;br /&gt;TOCHAR                         WE8ISO8859P15&lt;br /&gt;&lt;br /&gt;CSSCAN lists many lossy characters. Decided with developers to just try what happens.&lt;br /&gt;&lt;br /&gt;Errors:&lt;br /&gt;ORA-19815,  ORA-16038,  ORA-19809:&lt;br /&gt;db_recovery_file_dest_size (online changeable) was set to 4GB, which let the import get stuck when the archive logfiles filled that space up. Extended to 8 GB.&lt;br /&gt;Note to self: Disable archivelog mode if creating a new DB with import.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-4652253099101873007?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/03/migration-test-import-of-database.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-8117435327518281619.post-2262988846999827696</guid><pubDate>Wed, 11 Mar 2009 12:33:00 +0000</pubDate><atom:updated>2009-03-11T05:45:41.044-07:00</atom:updated><title>Blog created</title><description>Got the idea to this Blog from a wikihow "&lt;a href="http://www.wikihow.com/Keep-a-Career-Log"&gt;tutorial&lt;/a&gt;"...&lt;br /&gt;&lt;br /&gt;Since I'm always bad at remembering what I did the last day... I think that's a good Idea ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8117435327518281619-2262988846999827696?l=droeli.com%2Fcareer'/&gt;&lt;/div&gt;</description><link>http://droeli.com/career/2009/03/blog-created.html</link><author>noreply@blogger.com (Dröli)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item></channel></rss>