What is this extra column?

Hello I got a curious column in a table. It's Enterprise Oracle 10.2.0.3 on AIX. I found it when I used datapump to copy a schema from one db to another. Found it created this 'extra' column. I looked at the source db and found this:
1 select name, property, segcol#, col#
2 from sys.col$
3 where obj# = 374103
4* order by col#
SQL> /
NAME PROPERTY SEGCOL# COL#
SYS_C00098_10072711:34:19$ 1081376 98 0
REGISTERID 0 1 1
RECORDTYPE 0 2 2
COMPCD 0 3 3
DIVCD 0 4 4
STORECD 0 5 5
REGFILEIND 0 6 6
SHIPTOGEOCODE 0 7 7
SQL> desc "VERTEX"."REGPRERETURNSTBL"
Name Null? Type
REGISTERID VARCHAR2(25)
RECORDTYPE NUMBER(3)
COMPCD VARCHAR2(5)
DIVCD VARCHAR2(5)
STORECD VARCHAR2(10)
REGFILEIND NUMBER(38)
SHIPTOGEOCODE NUMBER(9)
1 select dbms_metadata.get_ddl('TABLE', 'REGPRERETURNSTBL', 'VERTEX')
2* from dual
SQL> /
DBMS_METADATA.GET_DDL('TABLE','REGPRERETURNSTBL','VERTEX')
CREATE TABLE "VERTEX"."REGPRERETURNSTBL"
( "SYS_C00098_10072711:34:19$" VARCHAR2(255),
"REGISTERID" VARCHAR2(25),
"RECORDTYPE" NUMBER(3,0),
"COMPCD" VARCHAR2(5),
"DIVCD" VARCHAR2(5),
"STORECD" VARCHAR2(10),
"REGFILEIND" NUMBER(*,0),
"SHIPTOGEOCODE" NUMBER(9,0),
I could just re-create the table, but curious if anyone know what that column is and possibly how it got there. Anyone know what property 1081376 means?
TIA

The name of the column make me think about a unused column. Try to drop unused columns as following :
SQL> create table mytable (c1 number, c2 number);
Table created.
SQL> select object_id from user_objects where object_name='MYTABLE';
OBJECT_ID
    171709
SQL> select name, property, segcol#, col# from sys.col$ where obj#=171709;
NAME                             PROPERTY    SEGCOL#       COL#
C1                                      0          1          1
C2                                      0          2          2
SQL> alter table mytable set unused(c1);
Table altered.
SQL> select name, property, segcol#, col# from sys.col$ where obj#=171709;
NAME                             PROPERTY    SEGCOL#       COL#
SYS_C00001_11012817:30:41$          32800          1          0
C2                                      0          2          1
SQL> alter table mytable drop unused columns;
Table altered.
SQL> select name, property, segcol#, col# from sys.col$ where obj#=171709;
NAME                             PROPERTY    SEGCOL#       COL#
C2                                      0          1          1However, regarding DBMS_METADATA.GET_DDL, I cannot reproduce your case (I have no 10.2.0.3 db, only 10.2.0.4), it could be a bug on your patchset level.
Nicolas.

Similar Messages

  • What is this extra peice

    What is this extra peice that kind of looks like a dock and comes with every iPod? What is it, and how does it work? What product can you use it on?

    It's a dock adapter for use with the Universal Dock.

  • What is this extra cable that comes with MBP?

    I just got my MBP today and it came with two AC cables. One is the magsafe whcih is what i;m already using, but it also came with another cord. this one is a lot thicker and it is 3-prong. what is this for? i can't find a slot on the magsafe of the MBP that apparently fits it. thanks

    hey, i think that it is the extension for the magsafe adapter, if you grab the part of the magsafe where it plugs into the wall you should be able to slide it off with a little force, you can then slide the extension on and it will be much longer. hope that helps!

  • What's this extra bit above the receiver?

    Sorry, didn't know what else to call it other than a "bit."
    Upgraded to a 4S recently, and noticed it has an extra... well... "bit" above the receiver. My only concern is that my Zagg shield, though clear, covers it. Is it some type of sensor? It's not mentioned in the manual.
    Thanks in advance.

    Ahhhh... I see. My previous iPhone 4 was black, so it was there all-along and I just never saw it. The new 4S is white, which makes it obvious.
    Thanks.

  • What is this extra socket on Nokia 5030

    Hi
    Just bought a Nokia 5030. It's new and there isn't much information about it on the internet. I have seen a socket situated between the headset connector and the charger connector. It looks like a tiny small USB or something alike. I'd like to connect to it and see what comes out, and if I can input anything (music etc... I know there's only 8MB... but still). Where can I get the cable ? Or how can I make it ? I'm curious about electronic in general, and would be happy to dig into the device.
    Thanks in advance for reply
    Bastien

    Al right... Best anwer ever...
    Come on ! you can make it better ! Try again please !
    Just give away a little bit of finformation for us folks to play around. I'm sure it wont do no arm to Nokia industrial secrets.
    Regards
    Bastien

  • In the lower right corner of the window there is a column of little white boxes with "9.8" over it what is this and how do I get rid of it?

    In the lower right corner of the window there is a column of little white boxes. Right over the column is "9.8". What is this and how do I get rid of it?

    Please provide a screen shot of that issue.
    https://support.mozilla.com/en-US/kb/Adding+screenshots

  • What does this error means? "Line 20 column 57: character content of element "language" invalid; must be a string with length equal to 3 (actual length was 7) at XPath /package/book/metadata/languages/language" "

    Hi there.
    I am about to publish a book in English and Chinese.
    What does this error means?
    Line 20 column 57: character content of element "language" invalid; must be a string with length equal to 3 (actual length was 7) at XPath /package/book/metadata/languages/language"
    And where is line 20, column 57?
    Thanks folks!

    Go into iTunes Producer and select from the dropdown, don't type.
    cs
    iBooks Author Guide

  • Extra column in Crosstab report

    Hi Experts,
    We are designing a cross tab report (using CR 2008) and got stuck at one point. If we want to add an extra column in cross tab, what is the way to insert the same?
    Currently our cross tab is designed using 3 elements: Country, Month and Sales. We would like to add an extra column u201Clast year salesu201D before Month data. This element is present in database.
    Any help / suggestions would be appreciated.
    Regards,
    Chinmay

    Right click Cross tab - -> Cross tab expert
    Drag field into columns and the position with up/down arrows
    Ian

  • Using SAP Tokens & showing extra columns to choose

    I have a Crystal Report where I have a SAP token parameter to select a budget scenario to run the report based on.
    My token is selecting the 3 columns I need to display inorder to select the correct scenario - AbsID, Name & FinancYear.
    Budget@Select AbsID, Name,FinancYear  from OBGS order by 3
    When I preview in SAP my drop down box only gives me AbsID and name - which is of course a list diplaying "Main Budget" repeated for the number of financial year I have in the database.
    As these Main Budgets can (and have) been created in any order, it is impossible toexpect the users to select the correct budget from the displayed data.
    As there is no direct join from OBGS to OFPR on financial year, I can't work out how to either display the additional column in the choose from list, or filter my selection statement so it will only give scenarios that relate to the financial year for the period I have selected
    Any sensible suggestions welomed!

    Hi Julie,
    Remember that combo box controls in SAP can only display two values, a code and description, or in the case of report tokens the first two columns you specify in the token query. Seeing as you need the third column to distinguish between the first two sets of values a combo box is no use to you on it's own.
    The following is off the top of my head and untested but what about either replacing the combo box with a CFL that shows as many columns as you need (and by nice coincidence the first column in that table is the value you want selected, AbsID), OR, created two report parameters the first displays the Financial Year and the second displays the AbsID and Name values for the selected FinYr?
    Remember I'm writing this free hand so you'll need to test to make sure it's ok.
    Replace Cbo with CFL
    Budget@Select * From OBGS order by 3
    This should display a CFL where you can add any extra columns needed from the form settings.
    Two Cbo Parameters
    FinYr@ SELECT F_RefDate FROM OFPR
    Budget@Select AbsID, Name from OBGS WHERE FinancYear = ('FinYr@') order by 3
    So you can reference one parameter name inside another to limit the results displayed by the second parameter.
    One of the above or some variation should get you what you need.
    Regards,
    Andrew.

  • Extra columns in report by pl/sql

    Hi,
    In my application (about wheater data) I need a report with an undefined number of columns. E.g. a user wants data about temperature and wind. Another user may want to see temperature, wind, humidity en may-be more.
    I've build a collection with the result of the chosen parameters. After a submit I try to fill in a report according to the following PL/SQL-block:
    declare
    q varchar2(4000);
    cursor c1 is
    select c001 from htmldb_collections
    where collection_name = 'ROEL'
    order by c001
    begin
    q := ' select datum, tijd_code';
    q := q||', sum(decode(kanaal,15,gemiddelde,0)) as gem_15';
    q := q||', sum(decode(kanaal,33,gemiddelde,0)) as gem_33';
    for cc1 in c1
    loop
    q := q||', sum(decode(kanaal,'|| cc1.c001||', gemiddelde,0)) as gem_'||cc1.c001;
    end loop;          
    q := q||' from meteo_data where 1=1 ';
    q := q||' and datum between nvl(:p1_startdatum,''01-jan-03'') and nvl(:p1_einddatum,''31-dec-99'')';
    q := q||' and tijd_code = 3';
    q := q||' group by datum, tijd_code';
    htp.p(q);
    return (q);
    end;
    When I make no selections (collection empty) then everything works correct.
    But when I do make some choices, then a "report error: ORA-01403: no data found" is displayed.
    I think this has to do with the extra columns that are defined in the FOR-Loop.
    What am I doing wrong??
    And can someone help me to solve this problem??
    Thanks in advance,
    Roel

    Something wrong ??
    I posted this message 4 september 2004
    Roel

  • Extra columns in ALV report

    Hi there,
    I added a column to an existing alv report which uses method 'set_table_for_first_display' to display the output.
    The method is called via:
    grid1              TYPE REF TO cl_gui_alv_grid,
        CALL METHOD grid1->set_table_for_first_display
              EXPORTING
                        i_structure_name     = 'MAT_DATA'
                        is_layout            = lt_layout
                        is_variant           = lt_variant
                        i_default            = lt_default
                        i_save               = 'A'
                        it_toolbar_excluding = lt_exclude[]
               CHANGING it_outtab            = mat_data[]
                        it_fieldcatalog      = w_fieldcat[]
             EXCEPTIONS
                        program_error        = 1.
    The extra columns are in the field catalog and mat_data.
    The lt_variant-report field has the report name in it.
    When I run the report the new column does NOT appear.
    I cleared out the lt_variant-report value and now the new column DOES appear.
    Any idea why this is happening?
    Is there some way I can leave the report name in there and see the new columns?
    Thanks.

    thanks.
    no_out is initial.
    But, in this case, I am not passing any variant.
    It works if I don't pass the report name in the
    is_variant-report
    field.The columns will not display if I pass the report name.

  • R12 Payment Process Request Status Report adding extra columns to XML data.

    In 11i, we had modified the Preliminary Payment Report to include extra columns ( invoice distributions). In r12 , that report is obsolete and Oracle introduced a new report "Payment Process Request Status Report". This request uses BI Publisher to generate the final report output. I am unable to modify the template since the XML output of the report does not
    contain the invoice distribution account data. We need to know how can we modify the XML data to include the extra columns.
    For Funds Disbursement Process ( Payment Instruction File) , Oracle provides IBY_FD_EXTRACT_EXT_PUB extensibility package to construct custom XML element structure that can be added to the payment XML extract generated by Oracle Payments. Do we have something similar for this report ? Are there any other options available ?
    Thanks

    Hi
    The same package "IBY_FD_EXTRACT_EXT_PUB" works for payment process request status report also. Please add the logic to get the distribution data in this package and you will see the new XML tags in this report also.
    Hope this helps.
    Vinit

  • Deleting an extra column in the resultset of genericsearch page

    Hello E-Commerce Experts,
    we have a requirement where we need to delete a column in the resultset of the quicksearch trasactions in the genericsearch page.
    In order to hide this column we placed a condition in the action class from where we are getting the contents in the column.
    Now, we are unable to see the contents in the column but we are getting an empty column.
    As the genericsearch page gets genereted dynamically,we are unable to place any condition on that extra column.
    Can anyone suggest how to prevent this column from appearing on the screen. Do we need to set any parameters or anything.
    Thanks and regards,
    venkatesh Saini.

    Hi Venkatesh,
    You do not need to modify Action class for just hiding Trash column.
    Put below lines of code as I have suggested in *genericsearch.jsp* file you will able to hide *Trash* column without modifying Action class.
    You need to do 2 things to achieve your goal.
    First remove Header cell for Trash column and then remove trash icon cell from each row.
    First Search *<%-- // +++++++++++++++ RESULT LIST START +++++++++++++ --%>* comment.
    1) First Hide cell from Header Row.
    <% if ( ! "hidden".equals(listheader.getType())) { %>
         <% if ( listheader.getWriteUnderProperty() == null  ||  listheader.getWriteUnderProperty().length() <= 0  || baseui.isAccessible) { %>
              <% if ( ! firstPty) { %>
                 </th>
              <% }
                  firstPty = false;
              %>
         <%  //Custom Line
              if (!(ui.writeResultListHeader(listheader) == "" || ui.writeResultListHeader(listheader) == null)){  //Custom line
         %>  //custom Line
          <th scope="col" <%=ui.getTabIndex(true)%>>
                   <%=ui.writeResultListHeader(listheader)%>
         <% }%>     //Custom Line
    <% } else { %>
         <br /><%=ui.writeResultListHeader(listheader)%>
    <% } %>
    <% } %>
    2) Now Remove Trash cell from row. Below code with close <TD> tag properly
    <% if ( (! isWriteUnderProperty)) { %>
       <% if((iconPath == null) || (iconPath == "")){%> // Custom line
         <td <%=ui.writeResultTitlePerTD(rowfields)%> <%=ui.getTabIndex(true)%> <%=(iconPath !=null && iconPath.length() > 0 ? "style=\"text-align: center\"": "")%>>
      <% } else {%> // Custom Line
          </td>
      <%}%> //Custom Line
    <% } else { %>
          <br />
    <% } %>
    3) Now hide Cell with Trash icon.
    <% if (iconPath != null && iconPath.length() > 0) { %>
      <% if((iconPath == null) || (iconPath == "")){%> //Custom Line 
    < imge src="<%=iconPath%>"  alt="<%=outField.getString("ICONTITLE")%>"  border="<%=outField.getString("ICONBORDER")%>" width="<%=outField.getString("ICONWIDTH")%>" height="<%=outField.getString("ICONHIGHT")%>" />
      <% } %> //Custom Line
    <% } else { %>
         <%=ui.writeResultlistValue(rowfields , fieldValue)%>
    <% } %>
    I have written //Custom Line where I have added it in standard code.
    I have tested on my local and working fine.
    Let me know if you face any problem.
    eCommerce Developer

  • What are the extra 13 paritions? root user security concerns?

    I [was] running Yosemite 10.10.3 on a Late 2014 iMac Fusion Drive SSD and HDD
    This might be a bit confusing, and I need assistance from someone who really knows what they're talking about here.
    When messing around trying to secure my system, I enabled the root user to view certain files, and accidentally did not disable it when I was finished. After this, I unknowingly ran my computer for probably a month as the administrator with the root user enabled, and made number of downloads in the process (which used the same password as root). After recently realizing this, I noticed in my activity monitor that some of my downloaded application were running as root user, not as administrator, as I thought they should be, and I also found malware after running ClamXav.
    Because of all this and my compromised root, I wanted to ensure there was no third party code was deeply embedded in my drive, so I backed my important data, and actually proceeded to (very carefully) separate my fusion drive using 'diskutil' commands, wiping and reformatting everything but the base system. Then, I booted into safe mode to check the "diskutil cs list" and "diskutil list" through the terminal, and was surprised to still find 17 partitions in total, including those in my Logical Volume Group. Command "diskutil cs list" reveals partitions /dev/disk0 as my SSD, /dev/disk1 as my HDD with .efi and recovery,  and /dev/disk2 as the apple base system, and ALSO /dev/disk3 as my HDD again (which is an unusual addition to what I have seen as typical LVG diskutil cs list outputs, though I assume it is just be related to booting from recovery mode with no OS on my disk any longer)
    Command "diskutil list" reveals these disks (/dev/disk0-3), along with small partitions, dev/disk4, /dev/disk5....all the way up to /dev/disk16. All these unknown disk partitions 4-16 range from 0-4mb in size. One of my main questions is simply what all of these extra partitions are.... are they just required hidden partitions only visible through the recovery mode boot?
    Even if so, is there a possibility that my actions explained in the first paragraph have compromised the integrity of ANY of the disks on my drive(s)? I do not want any installs to have access to my root, or to have embedded anything into my core system, regardless of whether they are malicious or not. I did not do a full zero secure wipe, as I figured that would be overkill and wear on my drives,  but am also curious if it is even possible that the base system or other core components could have been injected with any 3rd part code. I know I may seem overly paranoid but I want to ensure that my system does not have any security holes from the start, before I go about re-installing all my software again, some of which opens up security holes, but I am required to have it for my work.
    I want to note that I have already downloaded a new OS through internet recovery mode onto my reconfigured fusion drive, and do not see these extra partitions when I am logged in as a user, however they still appear in recovery mode, re-affirming my assumption that they are simply hidden partitions only seen through the recovery boot menu. I still have not loaded any of my data however, and regardless of whether or not the extra /dev/disk partitions I noticed are simply hidden apple boot partitions, any advice on whether I should zero-pass wipe any drives and reinstall the OS again to absolutely ensure there are not security holes after having my root user compromised would be greatly appreciated. I could even resort to a full dban and use a snow leapord install disc I still have, but do not want to put extra wear on my drive it there is no chance these core drives were compromised. Sorry for not posting a picture of my terminal output as well; I was unable to setup an ssh connection to do a screen shot from the recovery partition. And thank you ahead of time to anyone who takes the time to read this and give me any advice.

    These are photo screen shots with the UUID's covered, showing the output of "diskutil cs list" and "diskutil list".
    I need to note that I have since re-separated the fusion drive in and then did a secure erase 1 pass of zeros over the HDD thinking that would solve the problem after realizing that these were not apple boot components, but I checked the output of "diskutil cs list" and "diskutil list" again and they were all embedded in there just as before. In response to someone elses comments I have made multiple encrypted .dmg files, but I thought I have only made around 4 or 5 EVER, not all these other ones, and was unaware that they stay embedded in your drive as partitions even after reformatting it. I also see that part of disk one and part of disk three are still fused together as a LVG, which makes this even more confusing. I cannot understand how all these partitions ended up like this, I did not intentionally add a SINGLE partition to my drive, and never separated the fusion drive until just the other day when I noticed all these extra partitions that couldn't be deleted. I'm beginning to the think the only solution is to do a one pass DBAN over both the drives, and then, (hopefully) I will be able to re-attached them in a fusion drive (which I have been able to do once now), and use an old snow leopard install disk to upgrade back to my Yosemite. Is that my best bet, and are there any risks involved with even doing that? If anyone has any other recommendations on a a simpler, safer way to delete all this extra stuff, and just get myself back to the core components so I can re-fuse my fusion drive and download as fresh OS, I would be beyond grateful.

  • I've recently received an error message from Time Machine that my Macbook Pro's sparsebundle is in use.  What is this and what can I do about it?

    I've recently received an error message from Time Machine that my Macbook Pro's sparsebundle is in use.  What is this and what can I do about it?

    This is asked at least 5-6 times a day here.
    Look at the right hand column.. more like this.
    It is a bug in Mountain Lion.
    Read C12 http://pondini.org/TM/Troubleshooting.html
    But the fast solution.. unplug the TC.. count to 10.. plug it back in.

Maybe you are looking for

  • DYNP_VALUES_UPDATE to update table control cell

    How can I update a cell (e.g. in line n) value in a table control using the function DYNP_VALUES_UPDATE? Can someone give me an example? Thanks in advance. Adhimas S.

  • Error in using XA and Non-XA datasource at same time

    I think this case may be a little complicated: there are two actual databases, for example, A is for service/biz, and B is for data archiving. system run the archiving service once a day, we decided to use JTA to ensure that no records would be lost

  • IPhoto library won't complete upgrade

    I recently upgraded to iPhoto 9.3 and when I opened the program, it said that my iPhoto library (1.47GB) needed to be upgraded as well. The blue bar says step 9 of 9 100% complete, but it won't go away and the white spinning icon thing keeps spinning

  • BBM Error Message "uncaught exception:java.lang.NullPointerException. After Update to OS.983

    My BBM is not working after i have updated to the .983 OS recommended by Blackberry update service. I have tried unistalling it and is not there to be able to do it, but also is not available to be install either. Anyone has an answer/Solution. Thank

  • External command like SM69 in CE 7.2

    Hello, in CE 7.2 is there any possibilities to setup an external command (script unix) like I'd can on a ABAP system with SM69 transaction? thank you very much