<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DBA-Village forum</title>
    <link>http://www.dba-village.com</link>
    <description>All threads of the DBA-Village forum</description>
    <language>en-us</language>
    <copyright>DBA-Village</copyright>
    <lastBuildDate>Sun, 07 Sep 2008 15:06:05 GMT</lastBuildDate>
    <image>
      <title>DBA-Village</title>
      <url>dvp_images.Display?AltA=DbavLogo</url>
      <link>http://www.dba-village.com</link>
      <width>50</width>
      <height>50</height>
      <description>The DBA-Village forum is a Oracle DBA technical forum</description>
    </image>
    <item>
      <title>Points for our contributors</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34474&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Points for our contributors&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hello all,
&lt;br&gt;
&lt;br&gt;Please make sure you give scores to our solution contributors in this forum.i am extremely sorry for having over looked such an issue coz it is a way of thanks giving and appreciation for the folks sharing their experience and expertise to give a solution is a very good cause.
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;Thanks everyone....belated appreciate but please accept this......
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;Thanks and Regards
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;M tech&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 07 Sep 2008 09:49:40 GMT</pubDate>
    </item>
    <item>
      <title>Recover not necessarily needed when take an offline-datafile online ?</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34473&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Recover not necessarily needed when take an offline-datafile online ?&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;During my test Datafile was taken offline and online 3 times , the first two need recover before it was taken online but the last not needed. It seems the result are not consistent among 3 times.
&lt;br&gt;How oracle decide whether a datafile needs recovery before taken online?
&lt;br&gt;
&lt;br&gt;SQL&gt; alter database datafile 17 offline;
&lt;br&gt;
&lt;br&gt;Database altered.
&lt;br&gt;
&lt;br&gt;SQL&gt; alter database datafile 17 online;
&lt;br&gt;alter database datafile 17 online
&lt;br&gt;*
&lt;br&gt;ERROR at line 1:
&lt;br&gt;ORA-01113: file 17 needs media recovery
&lt;br&gt;ORA-01110: data file 17: &apos;/chhora/tstest1_1.dbf&apos;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;SQL&gt; recover datafile 17;
&lt;br&gt;Media recovery complete.
&lt;br&gt;SQL&gt; alter database datafile 17 online;
&lt;br&gt;
&lt;br&gt;Database altered.
&lt;br&gt;
&lt;br&gt;SQL&gt; alter database datafile 17 offline;
&lt;br&gt;
&lt;br&gt;Database altered.
&lt;br&gt;
&lt;br&gt;SQL&gt; alter database datafile 17 online;
&lt;br&gt;alter database datafile 17 online
&lt;br&gt;*
&lt;br&gt;ERROR at line 1:
&lt;br&gt;ORA-01113: file 17 needs media recovery
&lt;br&gt;ORA-01110: data file 17: &apos;/chhora/tstest1_1.dbf&apos;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;SQL&gt; recover datafile 17;
&lt;br&gt;Media recovery complete.
&lt;br&gt;SQL&gt; alter database datafile 17 offline;
&lt;br&gt;
&lt;br&gt;Database altered.
&lt;br&gt;
&lt;br&gt;SQ...&lt;br/&gt;&lt;br/&gt;viduka mark&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 07 Sep 2008 09:27:40 GMT</pubDate>
    </item>
    <item>
      <title>Cross/Inner join vs Left / Right outer Join</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34472&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Cross/Inner join vs Left / Right outer Join&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;hi guys,
&lt;br&gt;i am reading a very very old book on sql named
&lt;br&gt;SQL fundamentals by J.Patrick
&lt;br&gt;
&lt;br&gt;It says that.. this is how a inner join is derived
&lt;br&gt;
&lt;br&gt;1) cross join of the tables ( cartesian product )
&lt;br&gt;2) evaluate the join condition
&lt;br&gt;e.g (a.id = b.id)
&lt;br&gt;3) keep only the rows that evaluate to true
&lt;br&gt;4) then you have your inner join table.
&lt;br&gt;
&lt;br&gt;It also mention that 
&lt;br&gt;&gt; Join condition always evaluates to unknown f any of the join condition columns contain a null.
&lt;br&gt;And the &lt;I&gt;Unknown&lt;/i&gt; evaluations are drop.
&lt;br&gt;
&lt;br&gt;E.G a.id = b.id
&lt;br&gt;
&lt;br&gt;Table a
&lt;br&gt;ID
&lt;br&gt;-------
&lt;br&gt;1
&lt;br&gt;2
&lt;br&gt;
&lt;br&gt;Table b
&lt;br&gt;ID
&lt;br&gt;-------
&lt;br&gt;1
&lt;br&gt;null
&lt;br&gt;
&lt;br&gt;then only 
&lt;br&gt;
&lt;br&gt;ID, ID1
&lt;br&gt;-------------
&lt;br&gt;1,1
&lt;br&gt;
&lt;br&gt;is shown.
&lt;br&gt;-------------------------------------------------
&lt;br&gt;
&lt;br&gt;Now it shown an example of an left outer join
&lt;br&gt;
&lt;br&gt;select * from table a, table b
&lt;br&gt;where a.id = b.id (+);
&lt;br&gt;
&lt;br&gt;result
&lt;br&gt;ID, ID1
&lt;br&gt;-------
&lt;br&gt;1,1
&lt;br&gt;2,NULL
&lt;br&gt;
&lt;br&gt;Now if i follow the rules of how it is
&lt;br&gt;
&lt;br&gt;1st) cross join / cartesia product is form 1st.
&lt;br&gt;
&lt;br&gt;ID,ID1
&lt;br&gt;-------
&lt;br&gt;1,1
&lt;br&gt;1,NULL
&lt;br&gt;2,1
&lt;br&gt;2,NULL
&lt;br&gt;
&lt;br&gt;2nd) evaluate the condition a.id = b.id (+)...&lt;br/&gt;&lt;br/&gt;sze jie koh&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 06 Sep 2008 17:39:24 GMT</pubDate>
    </item>
    <item>
      <title>yellowbar error in r12</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34471&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;yellowbar error in r12&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hello All
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;I face the issue on R12 Yello Bar error
&lt;br&gt;
&lt;br&gt;How can i resolve
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;regards
&lt;br&gt;
&lt;br&gt;Raghu
&lt;br&gt;
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;raghu diddi&lt;br&gt;(0 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 06 Sep 2008 04:24:30 GMT</pubDate>
    </item>
    <item>
      <title>dynamic_views</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34470&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;dynamic_views&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi all,
&lt;br&gt;
&lt;br&gt;I had small doubt in the below questions where i googled a lot on it, but still iam not clear of the concept. Can anyone help me out of this issue.
&lt;br&gt;
&lt;br&gt; Why cant static data dictionary views(USER_,ALL_, DBA_)be accessed in nomount and mount phase but it is accessed only in open phase? 
&lt;br&gt;
&lt;br&gt;Why only Dynamic performance views(v$) can be accessed when database is in nomount,mount and open phase? 
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;Am i with you guys
&lt;br&gt;
&lt;br&gt;Thanks in advance&lt;br/&gt;&lt;br/&gt;mujubur rahman&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 14:00:42 GMT</pubDate>
    </item>
    <item>
      <title>Backup optimization about read only datafile seems don&apos;t work like we expected</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34469&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Backup optimization about read only datafile seems don&apos;t work like we expected&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
&lt;br&gt;I set recovery window of 1 day and backup optimization on .
&lt;br&gt;RMAN&gt; show all;
&lt;br&gt;
&lt;br&gt;RMAN configuration parameters are:
&lt;br&gt;CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 1 DAYS;
&lt;br&gt;CONFIGURE BACKUP OPTIMIZATION ON;
&lt;br&gt;CONFIGURE DEFAULT DEVICE TYPE TO DISK;
&lt;br&gt;CONFIGURE CONTROLFILE AUTOBACKUP OFF;
&lt;br&gt;CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO &apos;/rmanbck/ctl/ctl%F&apos;;
&lt;br&gt;CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
&lt;br&gt;CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
&lt;br&gt;CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
&lt;br&gt;CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT   &apos;/rmanbck/wdb/chhora%s_%t&apos; PARMS  &apos;BLKSIZE=131072&apos;;
&lt;br&gt;CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT   &apos;/rmanbck/wdb/chhora%s_%t&apos; PARMS  &apos;BLKSIZE=131072&apos;;
&lt;br&gt;CONFIGURE MAXSETSIZE TO UNLIMITED;
&lt;br&gt;CONFIGURE SNAPSHOT CONTROLFILE NAME TO &apos;/oracle/app/oracle/product/9.2.0/dbs/snapcf_chhora.f&apos;; # default
&lt;br&gt;
&lt;br&gt;Datafile 13 was made read only before whole DB backup:
&lt;br&gt;SQL&gt;select file#,checkpoint_time,status,enabled from v$datafile where fi...&lt;br/&gt;&lt;br/&gt;viduka mark&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 13:43:24 GMT</pubDate>
    </item>
    <item>
      <title>Get sqltype of a statement</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34468&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Get sqltype of a statement&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
&lt;br&gt;Hi all.
&lt;br&gt;
&lt;br&gt;Do you know if there&apos;s a function that returns the &quot;sqltype&quot; of a statement ? 
&lt;br&gt;
&lt;br&gt;For example, something like  DBMS_SQL.parse(cur, text,...) 
&lt;br&gt;
&lt;br&gt;I need to parse some statements before I execute them.
&lt;br&gt;
&lt;br&gt;Thank you.
&lt;br&gt;EBer
&lt;br&gt;
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;E. Ber&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 13:23:56 GMT</pubDate>
    </item>
    <item>
      <title>Tables</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34467&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Tables&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi all,
&lt;br&gt;
&lt;br&gt;Just i want the view where i can get only the user which has been created by the sysuser and the tables which has been create by the created user and the tablespace which has that tables.
&lt;br&gt;
&lt;br&gt;I think my question is understandable.
&lt;br&gt;
&lt;br&gt;Please help me.
&lt;br&gt;
&lt;br&gt;Thanks in advance&lt;br/&gt;&lt;br/&gt;mujubur rahman&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 13:23:04 GMT</pubDate>
    </item>
    <item>
      <title>SQL*Loader issue: merge two data fields into one table column</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34466&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;SQL*Loader issue: merge two data fields into one table column&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hello,
&lt;br&gt;
&lt;br&gt;I have data to load, and TWO of the fields of the data have to be grouped into a SINGLE column of the table...
&lt;br&gt;Data to load is like:&lt;pre&gt;20080818,ASP,NR,73.25,USD
&lt;br&gt;20080819,XYZ,ABC,12345.6,EUR
&lt;br&gt;
&lt;br&gt;DDL of table:
&lt;br&gt;CREATE TABLE mytable( dte DATE, txt VARCHAR2(10), nb NUMBER, cur VARCHAR2(4) );
&lt;br&gt;
&lt;br&gt;expected result:
&lt;br&gt;SELECT * FROM mytable;
&lt;br&gt;DTE       TXT       MNT      CUR
&lt;br&gt;--------- --------- -------- ---
&lt;br&gt;18-AUG-08 ASP(NR)      73.25 USD
&lt;br&gt;19-AUG-09 XYZ(ABC)   12345.6 EUR
&lt;br&gt;i.e.: &quot;txt&quot; must be &quot;field2 ( field3 )&quot;
&lt;br&gt;
&lt;br&gt;Trial that does not work:
&lt;br&gt;LOAD DATA
&lt;br&gt;INFILE *
&lt;br&gt;INTO TABLE mytable
&lt;br&gt;FIELDS TERMINATED BY &apos;,&apos; OPTIONALLY ENCLOSED BY &apos;&quot;&apos;
&lt;br&gt;( &quot;DTE&quot;  DATE &quot;YYYYMMDD&quot;
&lt;br&gt;, &quot;TXT&quot;  CHAR &quot;:&quot;\TXT\&quot; || &apos;(&apos; || :\&quot;X\&quot; || &apos;)&apos;&quot;
&lt;br&gt;, &quot;X&quot;    FILLER
&lt;br&gt;, &quot;NB&quot;   CHAR
&lt;br&gt;, &quot;CUR&quot;  CHAR
&lt;br&gt;)
&lt;br&gt;BEGINDATA
&lt;br&gt;20080818,ASP,NR,73.25,USD
&lt;br&gt;20080819,XYZ,ABC,12345.6,EUR
&lt;br&gt;
&lt;br&gt;(reason is that a &quot;filler&quot; field cannot be used as a bind variable)
&lt;br&gt;
&lt;br&gt;Trial that works but the input file has to be modified (insertion of double quotes
&lt;br&gt;between the two components...&lt;br/&gt;&lt;br/&gt;Bruno Vroman&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 12:52:32 GMT</pubDate>
    </item>
    <item>
      <title>Rman</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34465&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Rman&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi all,
&lt;br&gt;
&lt;br&gt;I connected as Root user and i gave
&lt;br&gt;
&lt;br&gt;Export ORACLE_SID=TEST
&lt;br&gt;rman target /
&lt;br&gt;
&lt;br&gt;But iam unable to connect to the rman prompt.
&lt;br&gt;
&lt;br&gt;What is the reason for it.
&lt;br&gt;
&lt;br&gt;Am i missing out anything in it.
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;mujubur rahman&lt;br&gt;(2 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 11:23:47 GMT</pubDate>
    </item>
    <item>
      <title>DBverify</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34464&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;DBverify&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi all,
&lt;br&gt;
&lt;br&gt;I know that DB verify is used to find out the corrupted datafile for the backup what we have been take.
&lt;br&gt;
&lt;br&gt;But when i run the DB verify utility in the command prompt.
&lt;br&gt;
&lt;br&gt;dbv file=path blocksize=8192;
&lt;br&gt;
&lt;br&gt;8192 is the standard block size
&lt;br&gt;
&lt;br&gt;iam getting this error.
&lt;br&gt;
&lt;br&gt;LRM-00001: &apos;8192&apos; is not a legal integeer for &apos;blocksize&apos;.
&lt;br&gt;
&lt;br&gt;what could be the reason for this.&lt;br/&gt;&lt;br/&gt;mujubur rahman&lt;br&gt;(6 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 09:24:45 GMT</pubDate>
    </item>
    <item>
      <title>Script which gives me time taking by processes </title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34463&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Script which gives me time taking by processes &lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi frds,
&lt;br&gt;can someone gives me a sample shell script which read the log files of different processes and give me the time taking to execute a particular process and there are abt 78 process i have ,right i am doing this manually it eat my lot of time, i want to  automated this task as per  i required.&lt;br/&gt;&lt;br/&gt;pankaj naik&lt;br&gt;(2 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 09:16:13 GMT</pubDate>
    </item>
    <item>
      <title>Print_Table function</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34462&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Print_Table function&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi
&lt;br&gt;
&lt;br&gt;I saw in some docs that there is a print_table function to get the list of the tables data em a column format from SQL*Plus.
&lt;br&gt;
&lt;br&gt;Does anyone uses this function? Where i can get it?
&lt;br&gt;
&lt;br&gt;Thanks&lt;br/&gt;&lt;br/&gt;marquesa  &lt;br&gt;(2 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 09:12:10 GMT</pubDate>
    </item>
    <item>
      <title>sql ,loader</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34461&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;sql ,loader&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;i have one table where i have one field kb_gl number(8,2).i m try to load data in that field.
&lt;br&gt;
&lt;br&gt;can any one tell me what syntax i should be follow.&lt;br/&gt;&lt;br/&gt;javed akhtar&lt;br&gt;(4 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 06:34:12 GMT</pubDate>
    </item>
    <item>
      <title>Oracle Error: ORA-00600</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34460&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Oracle Error: ORA-00600&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi
&lt;br&gt;
&lt;br&gt;I am getting the following error when i am trying to join with Table and a file in Abinitio.
&lt;br&gt;
&lt;br&gt;ABINITIO(DB10031):  Oracle Error: ORA-00600: internal error code, arguments: [kpofdr-long], [], [], [], [], [], [], []
&lt;br&gt;ABINITIO(DB10031):  SQL: select contact_key,bill_accnt_key,pr_contact_for_bac_flg,relationship_type,deleted_flg,ts_last_upd from contact_bac_rel where bill_accnt_key=:loc
&lt;br&gt;ABINITIO(DB10031):  Parse Error Offset: 0
&lt;br&gt;ABINITIO(DB10034):  ORA-00600: internal error code, arguments: [kpofdr-long], [], [], [], [], [], [], []
&lt;br&gt;
&lt;br&gt;After sometime when i rerun the graph the above is not appearing.
&lt;br&gt;
&lt;br&gt;Please give me exact cause for this kind of errors.
&lt;br&gt;
&lt;br&gt;Regards
&lt;br&gt;Dilip&lt;br/&gt;&lt;br/&gt;Dilip Panda&lt;br&gt;(6 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 06:16:38 GMT</pubDate>
    </item>
    <item>
      <title>What DBA gorup do in Unix for oracle installation?</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34459&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;What DBA gorup do in Unix for oracle installation?&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi,
&lt;br&gt;
&lt;br&gt;Can anybody explain me, why dba group is created in order to install oracle?
&lt;br&gt;
&lt;br&gt;Regards
&lt;br&gt;
&lt;br&gt;Prasanta&lt;br/&gt;&lt;br/&gt;Prasanta Sahu&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 05 Sep 2008 05:42:30 GMT</pubDate>
    </item>
    <item>
      <title>Inserting into table if it doest not exists (any ways to do it in SQL )</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34458&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Inserting into table if it doest not exists (any ways to do it in SQL )&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;hi guys,
&lt;br&gt;
&lt;br&gt;i have a table of users with their respective subscription
&lt;br&gt;
&lt;br&gt;Create table test
&lt;br&gt;(users varchar2(10), service(varchar2(10));
&lt;br&gt;
&lt;br&gt;Alter table test add primary key(users,service);
&lt;br&gt;------------------------------------------------
&lt;br&gt;A user can have many services.
&lt;br&gt;
&lt;br&gt;Now i need to do a check among the users in the table if  they are missing a particular service.
&lt;br&gt;
&lt;br&gt;If they are missing that service, do a insert into the table.
&lt;br&gt;
&lt;br&gt;This is how i do it in plsql
&lt;br&gt;
&lt;br&gt;Declare
&lt;br&gt;cursor testing is select distinct user_id from test;
&lt;br&gt;Begin
&lt;br&gt;for testing_Rec in test loop
&lt;br&gt; begin
&lt;br&gt;   select service into
&lt;br&gt;   v_service 
&lt;br&gt;   from test
&lt;br&gt;   where user_id = testting_Rec.user_id
&lt;br&gt;   and service = &apos;ServiceA&apos;;
&lt;br&gt; EXCEPTION
&lt;br&gt; When no_Data_found then
&lt;br&gt;   insert into test values (testing_Rec.user_id, &apos;SERVICEA&apos;);
&lt;br&gt; end;
&lt;br&gt;end loop;
&lt;br&gt;end;
&lt;br&gt;
&lt;br&gt;Is there anyway to do it in SQL alone ?
&lt;br&gt;
&lt;br&gt;Regards,
&lt;br&gt;Noob
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;sze jie koh&lt;br&gt;(5 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 17:54:04 GMT</pubDate>
    </item>
    <item>
      <title>Oracle 10 client always compatible with rdbms 9i</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34457&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Oracle 10 client always compatible with rdbms 9i&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;We are doing some investigation.
&lt;br&gt;
&lt;br&gt;I know that normally an Oracle 10 client on a pc is compatible with an Oracle Server 9i on Windowss or Unix.
&lt;br&gt;We have this running , but can we forsee problems ?
&lt;br&gt;
&lt;br&gt;Thus are there exceptions we should watch out for? For instance when using the realy thin 10.x client or otherwise.
&lt;br&gt;
&lt;br&gt;Any experiences or ideas welcome.
&lt;br&gt;
&lt;br&gt;Thanks,
&lt;br&gt;Frank&lt;br/&gt;&lt;br/&gt;Frank de Vries&lt;br&gt;(0 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 16:23:12 GMT</pubDate>
    </item>
    <item>
      <title>ORA-02270</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34456&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;ORA-02270&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hello,
&lt;br&gt;First table:
&lt;br&gt;CREATE TABLE EDJ_REU_REUNION (
&lt;br&gt;        REU_REUNION_ID int NOT NULL,
&lt;br&gt;        SIT_HIPPO_ID int,
&lt;br&gt;        ...
&lt;br&gt;);
&lt;br&gt;
&lt;br&gt;CREATE UNIQUE INDEX PK_EDJ_REU_REUNION
&lt;br&gt;ON EDJ_REU_REUNION
&lt;br&gt;(REU_REUNION_ID);
&lt;br&gt;
&lt;br&gt;A second table:
&lt;br&gt;CREATE TABLE EDJ_COU_COURSE (
&lt;br&gt;        COU_COURSE_ID int NOT NULL,
&lt;br&gt;        COU_NUMERO_COURSE int,
&lt;br&gt;        REU_REUNION_ID int
&lt;br&gt;)
&lt;br&gt;
&lt;br&gt;CREATE UNIQUE INDEX PK_EDJ_COU_COURSE
&lt;br&gt;ON EDJ_COU_COURSE
&lt;br&gt;(COU_COURSE_ID);
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;When i attempt to create a Foreign key:
&lt;br&gt;ALTER TABLE EDJ_COU_COURSE
&lt;br&gt;ADD CONSTRAINT FK1_EDJ_COU_COURSE FOREIGN KEY
&lt;br&gt;(
&lt;br&gt;REU_REUNION_ID
&lt;br&gt;)
&lt;br&gt;REFERENCES EDJ_REU_REUNION
&lt;br&gt;(
&lt;br&gt;REU_REUNION_ID
&lt;br&gt;);
&lt;br&gt;
&lt;br&gt;==&gt; ORA-02270 no matching unique or primary key for this column-list
&lt;br&gt;
&lt;br&gt;But it exist a unique index on EDJ_REU_REUNION.REU_REUNION_ID.
&lt;br&gt;
&lt;br&gt;Where is the error please?
&lt;br&gt;Thanks in advance.
&lt;br&gt;Armel&lt;br/&gt;&lt;br/&gt;KERVAREC ARMEL&lt;br&gt;(13 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 15:46:31 GMT</pubDate>
    </item>
    <item>
      <title>delete records from Huge table with a curson fastest method</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34455&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;delete records from Huge table with a curson fastest method&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;I need to delete 5 million data from 11million existing records.
&lt;br&gt;
&lt;br&gt;with a cursor i find it bit slow on test and before i do it on production i require a best fastest method.
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;regards
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;M tech&lt;br&gt;(5 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 10:10:35 GMT</pubDate>
    </item>
    <item>
      <title>sql loader error 350</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34454&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;sql loader error 350&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;i m loading very big amount of data bt one field i haved some decimal while i m loading the data it give error sql*loader 350 error.
&lt;br&gt;
&lt;br&gt;can any one tell me how can i load my decimal data.&lt;br/&gt;&lt;br/&gt;javed akhtar&lt;br&gt;(2 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 08:41:07 GMT</pubDate>
    </item>
    <item>
      <title>Loading of JPG files</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34453&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Loading of JPG files&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;HI 
&lt;br&gt;friends
&lt;br&gt;Kindly help me out the issue, as i&apos;m unable to load the data of JPG into oracle tables.
&lt;br&gt;i have tried 10 times but unable to find where the fault is?
&lt;br&gt;
&lt;br&gt;------------------
&lt;br&gt;Load data
&lt;br&gt;INFILE  * 
&lt;br&gt;INTO table prod_tbl
&lt;br&gt;Replace
&lt;br&gt;Fields terminated by  ‘,’
&lt;br&gt;(
&lt;br&gt; machine_id  integer(5),
&lt;br&gt; mach_name  char(30),
&lt;br&gt;mach_data LOBFILE (mach_name) TERMINATED BY EOF
&lt;br&gt;)
&lt;br&gt;BEGINDATA
&lt;br&gt;001, machine.jpg
&lt;br&gt;---------
&lt;br&gt;and getting an error--data not loaded.
&lt;br&gt;pls help me out.
&lt;br&gt;rgds
&lt;br&gt;anil&lt;br/&gt;&lt;br/&gt;ANIL KUMAR&lt;br&gt;(1 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 04 Sep 2008 07:46:30 GMT</pubDate>
    </item>
    <item>
      <title>ORA-02068 Error</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34452&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;ORA-02068 Error&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Dear DBAs,
&lt;br&gt;
&lt;br&gt;We are getting following ERROR while executing a SELECT statement:
&lt;br&gt;
&lt;br&gt;ORA-02068: following severe error from REPORT_LINK
&lt;br&gt;ORA-00600: internal error code, arguments: [kpofdr-long], [], [], [], [], [], [], []
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;But sometimes the same SELECT statement fetches data without this error. The stament fetches from multiple tables over a DB link called REPORT_LINK.
&lt;br&gt;
&lt;br&gt;What is the reason.&lt;br/&gt;&lt;br/&gt;Suvankar Das&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 22:02:05 GMT</pubDate>
    </item>
    <item>
      <title>datatype change</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34451&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;datatype change&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;i create a table and insert millions of rows into that table but by mistake one field i assign varchar tyep now i want to convert that datatype in to number type. is that possible.
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;javed akhtar&lt;br&gt;(5 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 10:17:37 GMT</pubDate>
    </item>
    <item>
      <title>ORA-01031: insufficient privileges</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34450&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;ORA-01031: insufficient privileges&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi All,
&lt;br&gt;I have done export of one schema to other schema usign sys users.
&lt;br&gt;now i created on role. 
&lt;br&gt;i want to grant select on all the tables under schema which i imported.
&lt;br&gt;but when i try to grant select to role i am getting error
&lt;br&gt;ORA-01031: insufficient privileges
&lt;br&gt;
&lt;br&gt;please tell me why?&lt;br/&gt;&lt;br/&gt;daniesh shaikh&lt;br&gt;(10 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 07:36:03 GMT</pubDate>
    </item>
    <item>
      <title>Datafile has problem</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34449&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Datafile has problem&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi
&lt;br&gt;
&lt;br&gt;We have a db in RAC and no archive mode. Problem started when we added new mount points and added new datafiles to a  tablespace.
&lt;br&gt;
&lt;br&gt;We are getting internal error ora 600 for 1 datafile in that tablespace on new mount points in alert log.
&lt;br&gt;
&lt;br&gt;We have removed all segments from datafile and now there are no objects in that datafile.
&lt;br&gt;
&lt;br&gt;SQL&gt; select * from dba_free_space where file_id=34;
&lt;br&gt;ERROR:
&lt;br&gt;ORA-00600: internal error code, arguments: [kcfrbd_3], [34], [3199993], [1], [1280000], [3200000], [], []
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;no rows selected
&lt;br&gt;
&lt;br&gt;SQL&gt; select segment_name,segment_type ,owner from dba_extents where file_id=34;
&lt;br&gt;
&lt;br&gt;no rows selected
&lt;br&gt;
&lt;br&gt;Now as in 10g but the command to remove file from tablespace fails
&lt;br&gt;
&lt;br&gt;SQL&gt; alter tablespace flm_data drop datafile &apos;/u08/oradata/CARMENT/flm_data26.dbf&apos;;
&lt;br&gt;alter tablespace flm_data drop datafile &apos;/u08/oradata/CARMENT/flm_data26.dbf&apos;
&lt;br&gt;*
&lt;br&gt;ERROR at line 1:
&lt;br&gt;ORA-03262: the file is non-empty
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;SQL&gt; alter database datafile &apos;/u08/oradata/CARMENT/flm_data26.dbf&apos; offline;
&lt;br&gt;alter database d...&lt;br/&gt;&lt;br/&gt;Sumit Sachdeva&lt;br&gt;(9 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 06:59:52 GMT</pubDate>
    </item>
    <item>
      <title>DBMS_JOBS not broken but not running</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34448&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;DBMS_JOBS not broken but not running&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;hi ,
&lt;br&gt;
&lt;br&gt;if i have 0 job queue processes,
&lt;br&gt;will my jobs in user_jobs be shown as broken ?
&lt;br&gt;
&lt;br&gt;as currently it is not broken, but current date is already over the next_Date value meaning the job is not ranned but not broken.
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;regards,
&lt;br&gt;- noob&lt;br/&gt;&lt;br/&gt;sze jie koh&lt;br&gt;(2 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 05:25:11 GMT</pubDate>
    </item>
    <item>
      <title>informatica sessions is running very slow</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34447&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;informatica sessions is running very slow&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi All,
&lt;br&gt;the user complains that the informatica sessions is running very slow. first time i have come across informatica sessions which is under workflow.the user wants me analyze whether the problem is from database side.
&lt;br&gt;could you please help me on this?&lt;br/&gt;&lt;br/&gt;daniesh shaikh&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 01:41:16 GMT</pubDate>
    </item>
    <item>
      <title>IMP-0009 and IMP-00028 error</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34446&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;IMP-0009 and IMP-00028 error&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;I&apos;m trying to import a dump file and I have the errors &quot;IMP-00009: abnormal end of export file&quot; and &quot;IMP-00028: partial import of previous table rolled back&quot;. 
&lt;br&gt;The export file was made on Oracle 9.2.0.7.0 and I tried to import on Oracle 9.2.0.1.0. We got this file from our client. Is this error due to bad transfer or is it due to the Oracle patch version? 
&lt;br&gt;
&lt;br&gt;Regards&lt;br/&gt;&lt;br/&gt;avichal mishra&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 03 Sep 2008 00:53:28 GMT</pubDate>
    </item>
    <item>
      <title>Data Guard in a laptop</title>
      <link>http://www.dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=34445&amp;DestinationA=RSS</link>
      <description>&lt;div style=&quot;letter-spacing:0; font-family:Courier New;&quot;&gt;&lt;b&gt;Data Guard in a laptop&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Hi,
&lt;br&gt;
&lt;br&gt;I would like to try out implementing data guard in a laptop.
&lt;br&gt;
&lt;br&gt;I can create 2 databases, 1 as primary and the another one as physical standby.
&lt;br&gt;
&lt;br&gt;Let us say, i create the primary as db1,
&lt;br&gt;the physical standby as db2 with the db_unique_name=db1,
&lt;br&gt;can i build up dataguard in a single laptop?
&lt;br&gt;
&lt;br&gt;Have anyone done this?
&lt;br&gt;
&lt;br&gt;Please share your experience.
&lt;br&gt;
&lt;br&gt;Thanks
&lt;br&gt;Murali
&lt;br&gt;
&lt;br&gt;&lt;br/&gt;&lt;br/&gt;MURALIDHARAN VENKATRAMAN&lt;br&gt;(3 replies)&lt;hr size=&quot;1&quot;/&gt;&lt;br&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 02 Sep 2008 18:47:53 GMT</pubDate>
    </item>
  </channel>
</rss>
