Missing table comments

Hi,
During the definition of metadata i usually find table and column comments very usefull in an Oracle schema. However, my experience is that deploying a table definition does not add comments on the table even if a COMMENTS DDL script is produced during the validate/generate phase of deployment.
Is this a bug or am i missing somethiing ?
Tnaks in advance,
/bo

Hey Bo,
Just tried it on columns, and indeed we generate it but seem to ignore this when deploying... I guess that qualifies it as a bug. I will log that.
BTW, I'm using 9.2.0.3.
JP

Similar Messages

  • Missing Tables and Indexes greyed out in DBACOCKPIT

    Hi All,
    I use Solution Manager 7.01 with MS SQL Server 2008 DB.
    I want to monitor with DBACOCKPIT a MS SQL Server 2005 DataBase of a SAP BPC 5.1.
    I connected the DB but in DBACOCKPIT some functionality are greyed out.
    I want to use in Diagnostics section the "MISSING TABLES AND INDEXES" function but this command is greyed out.
    Is it possible to use this function?
    Please, help me!
    Regards,
    Alessandro

    Hi,
    Gray color means that screen is disabled for any reason (authorization, SQL Server release, monitoring remote, etc).
    I believe, those items cannot be monitored unless these limitations are sorted out.
    Please refer to the Document "The SAP DBA Cockpit for Microsoft SQL Server" in SDN.
    You can get the status about the restriction in the bottom of dbacockpit screen.
    Thanks,
    Jagan
    Edited by: jagadheeshan govindasamy on Sep 16, 2009 1:03 PM

  • Missing Tables and Indexes in 3.5

    Hi,
    when i am executing Tcode DB02 then under Missing Tables and Indexes i find 35 Indexes as not created.
    can anybody tell me what does that signify. is this a issue if so how to fix it.
    Indexes not created
    ADCP-I04
    ADCP-I03
    ADCP-I02
    ADCP-I01
    ADCPS-I01
    ADCPS-I02
    ADCPS-I03
    ADCPS-I04
    ADRC-I14
    ADRC-I11
    ADRC-I05
    ADRC-I02
    ADRC-G
    ADRP-I01
    ADRP-I02
    ADRP-I03
    ADRP-I04
    ADRP-I07
    ADRP-I08
    ADRP-I09
    ADRV-I01
    BUT000-PER
    CDHDR-001
    CDHDR-002
    CRMD_ORDERADM_I-PKI
    CRMD_ORDERADM_I-DES
    ISSUE_RELATION-001
    NAST-ADQ
    RMPS_T_RESUB-RAG
    RMPS_T_RESUB-RCU
    SSPICSPRHD-S02
    SSPICSTRHEAD-S01
    SSPICSTRPL-FLD
    STXH-TDN
    SWBRULECOM-RSY
    Rakesh

    Hi Rakesh,
    First thing this is not an issue but an information that says that these indexes are not be created in the System.
    This option Indexes not created is an SAP table maintained from Dev to Prod just to indicate that these indexes cannot be created.
    That's the reason why u have a green mark beside them and this will make clear for you that this is not an issue.
    Hope it helps!!!!
    Thanks & Regards,
    Neelesh Jain.

  • DB02 = Missing Tables and Indexes = Unknown objects in ABAP Dictionary = DB views

    Hi SAP Gurus,
    on our SAP NetWeaver 7.x BW (based on AIX/Oracle) I find via transaction DB02 (path = Diagnostics => Missing Tables and Indexes) under "Unknown objects in ABAP Dictionary" under DB views a BW object /BI0/.....
    When I make a double click on the object, I am getting the popup window "Display not possible for this object":
    How can I identify the object and clarify with the BW application expert, if needed, how to resolve this object?
    I searched already via RSA1 for the object, but I wasn't able to find anything so far ...
    Thanks for your help and ideas.
    Best regards
    Carlos

    Hello Carlos
    The database view in question is a temporary database object created during a query execution.
    Please read this SAP note 449891 - Temporary database objects in BW 3.x to understand what that view is all about and impact if those views are removed.
    The SAP notes 449891 and 1139396 suggests to run the report SAP_DROP_TMPTABLES to drop these temporary objects. Whether the objects are still required or not is a question to be put across to the BW team. If the temporary objects are removed when they are used by a query, then the query will fail.
    Have a nice day
    RB

  • Exporting column and table comments

    I need to be able to create an external "data dictionary" to show to database users. I am currently exporting to a reporting schema, and then writing SQL against the reporting schema to get table, column, datatype, etc... information. I also need to be able to get the column and table comments that I entered into data modeler. I can't find those anywhere in the reporting schema. Are they included in the reporting schema? If not, how do I export those comments from data modeler?
    Thanks,
    Jonathan

    That's perfect. Thanks!
    For anyone interested, here is my "Data dictionary" select statement from the exported reporting schema:
    select table_name, sequence as seq, column_name, cast(ccom.text as varchar2(4000)) as description,
    native_type as column_type,
    case when native_type='NUMBER' then t_precision when native_type='DATE' then null else t_size end column_length,
    cast(cnote.text as varchar2(4000)) as valid_values,
    mandatory as required,
    case when native_type='DATE' then 'DATE' else native_type||'('||case when native_type='NUMBER' then t_precision else t_size end||')' end column_spec
    from dmrs_columns, (select * from dmrs_large_text where type='Comments') ccom, (select * from dmrs_large_text where type='Note') cnote
    where dmrs_columns.ovid = ccom.ovid (+)
    and dmrs_columns.object_id = cnote.ovid (+)
    order by table_name, sequence

  • Missing tables in a full=y expdp

    Hello !
    There are missing tables in an expdp dump of a database we use in a test environnement.
    I don't know why ...
    The datafile seems not to be corrupted. The table is listed in a tool like TOAD, and is listed in the catalog view DBA_TABLES.
    But the expdp logs doesn't list this table while listing other tables from the same user.
    If i try to expdp only a table of these (a missing table in the dumpfile), i get a 39166 Object not found error.
    The Oracle Database version is 10.2.0.4.0 and the command line we use is :
    expdp "'SYSTEM/manager@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<ip_address>)(PORT=<port>))(CONNECT_DATA=(SID=<oracle_sid>)))'" SCHEMAS=OWNER DIRECTORY=DIR_DP DUMPFILE=dumpfile.dmp FULL=y
    What did i miss ?
    On a structure-like database on a second test environnement the tables are expdp regularly ...
    Thank's for your answers !
    Steve.

    966918 wrote:
    Hello !
    There are missing tables in an expdp dump of a database we use in a test environnement.
    I don't know why ...
    The datafile seems not to be corrupted. The table is listed in a tool like TOAD, and is listed in the catalog view DBA_TABLES.
    But the expdp logs doesn't list this table while listing other tables from the same user.
    If i try to expdp only a table of these (a missing table in the dumpfile), i get a 39166 Object not found error.
    which schema owns the "missing" object?

  • Missing table K9RDEV3000001

    Hi, I posted this last night, many of you may not have seen it! Please assist.
    Hello experts, how are you? I have a program that is not working as a result of a missing table <b>K9RDEV3000001</b>, could anyone help with the possible location or definition on the table, or structure.
    Thank you
    Tatenda Chaibva
    null

    This looks like one of the tables generated in CO module. I don't know much about CO but I've noticed that when u change come config in CO - create some rules I guess - the tables containing those rules are generated dynamically, when u change the rules such tables may be deleted and created with different name.

  • Missing table begin XSL context for: ?end if?

    I have 8 if clauses with grouping sub grouping data shown.
    when I try to validate my RTF file I am getting following error msg:
    [061112_073853972][][ERROR] [Line 3322.83] Missing table begin XSL context for: <?end if?>
    [061112_073854018][][ERROR] [Line 3624.134] Missing table begin XSL context for: <?end if?>
    [061112_073854050][][ERROR] [Line 3878.184] Missing table begin XSL context for: <?end if?>
    [061112_073854081][][ERROR] [Line 4203.183] Missing table begin XSL context for: <?end if?>
    [061112_073854112][][ERROR] [Line 4479.134] Missing table begin XSL context for: <?end if?>
    [061112_073854143][][ERROR] [Line 4870.182] Missing table begin XSL context for: <?end if?>
    [061112_073854190][][ERROR] [Line 5201.182] Missing table begin XSL context for: <?end if?>
    I have check each and every <?if:...?> clasue and it's corresponding <?end if?> clause

    Issue has be identified:
    It was a end of group statement after the structure of table.
    all of <?end for-each-group?> end tage should be in a table and only if (open and close) statement should group them.

  • Missing table T043S

    Dear
              Experts,
              Here I am posting outgoing payment with clearing t code F-07,
    it  gives the Error
    The entry (company code) missing table T043S,
    Please Give ur reply ASAP.
    with regards
    Sukeerthi

    Hello Sukeerthi ,
    This error comes only because of the tolerance group, when this is not updated then this will come
    so check the Tcode : OBA0 (put the company code and the tolerance group) - This is for G/L accounts
                                       OBA3(put the company code and the tolerance group) - This is for customer/vendor
                                       OBA4(put the company code amt per doc and amt per open item) - This is for FI tolerance group for users.
    I think this will definately help you.
    Regards
    Urmila S.

  • Transaction DB02 = Missing Tables and Indexes shows under Secondary indexes from package $tmp

    Hi SAP Gurus,
    I noticed on our SAP business warehouse (BW) system (NetWeaver 7.0 based on AIX/Oracle 11g) in transaction DB02 => Diagnostics => Missing Tables and Indexes under Secondary indexes, 26 indexes, in package $tmp:
    The indexes are defined, but they don't have been created on the database.
    When I try to create them via the database tool, I am getting the warning:
    Does the warning raise up, because they where defined in the $tmp package?
    I was looking in SAP notes for a solution for this "warning" concerning the /BIC/F-Indexes but I didn't found yet anything helpful ...
    Thanks for your help and ideas ...
    Best regards
    Carlos

    Hi Carlos,
    These are secondary indexes created during process chains in BI to improvise performance.
    You may refer below SCN blogs on creation of these indices in BI.
    Secondary Index - Improving DSO insert/read performance
    How to Create Secondary Index on DSO in SAP BW
    Hope this helps.
    Regards,
    Deepak Kori

  • Missing Tables and Indexes

    Hi all,
    we have checked "missing table and indexs" status with DBACOCKPIT and there it show 362 Indexes are not created.
    all are the standard table indexes.
    we have updated the indexes and statistics with BRCONNECT also.and its complited successfully.after this also "it show 362 Indexes are not created". we are using SOLARIS OS and oracle database.
    Can anybody help me out how to rebuilt the missing indexes .....plz mention the steps.
    Thanks,
    Rableen   khurana

    Hi,
    Refer to the note and lins on how to fix it
    Note 1320008 - DBA Cockpit: Selection in "Missing Tables and Indexes"
    http://wiki.sdn.sap.com/wiki/display/TechTSG/(DB)IndexReportedasMissing
    http://help.sap.com/saphelp_nwpi711/helpdata/en/33/5b277b8b0745b8b60e67ca04c77ebb/content.htm
    Thanks,
    Arjun

  • While posting f-53 i getting error missing table T043G

    Hi
    while posting F-53  i getting error "company code" is Missing table T043G.
    What can i do for this..  can u advise this.
    Thank u
    anil

    hi anil,
    you are not given the tolerance group for customers/vendors, give the tolerance group for the same and try it.
    also give the gl tolerance,
    try t.codes oba0, oba3
    pls award points.
    Raghav

  • Way to find Missing table Index in SAP ?

    Hi All,
    Is there any way to check missing tables index in SAP?
    and also DB size ? and reorganize the index and tables?
    Cheers
    Usman

    Hi Usman,
    Transaction <b>SE14, DB02</b> .. program to reorganize the index and tables .. <b>Report RSSDBREO </b>
    Db Size :<b>Tr.DB02</b> Perform DB Check and you will get the size.
    Or you can check on your database server sap data files systems. so you will know gross size of your DB.
    Thanks
    Saquib Khan
    Message was edited by: Saquib Khan

  • Export Missing table on 11GR2  ?

    I'm observing this mystery on our 11.2.0.1.0 system running under Solaris about mysterious missing tables that really exist on the database.
    Here is the log of my session trying to export an existing table and export cant seem to find it .
    -bash-3.00$ . oraenv
    ORACLE_SID = [oracle] ? HR90
    The Oracle base for ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome01 is /u01/app/oracle
    -bash-3.00$ sqlplus system
    SQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 9 11:35:43 2010
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    SQL> set lines 200
    SQL> column object_name format a30
    SQL> select object_name,owner,object_type
    2 from dba_objects
    3 where object_name = 'PSCLASSDEL' ;
    OBJECT_NAME OWNER OBJECT_TYPE
    PSCLASSDEL PUBLIC SYNONYM
    PSCLASSDEL SYSADM TABLE
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    -bash-3.00$
    exp sysadm tables=PSCLASSDEL file=PSCLASSDEL.dmp
    Export: Release 11.2.0.1.0 - Production on Thu Sep 9 11:41:51 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Password:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    EXP-00011: SYSADM.PSCLASSDEL does not exist
    Export terminated successfully with warnings.
    Even a full export of the schema does not include these "missing" table at all.
    Has anyone encounteed this on 11gR2
    Thanks.

    Thanks . This seems to be a new parameter in 11gR2 . It just got me by surprise that Oracle set it to true by default changing the old behaviour . Inserting records is really not an option but there are modules in the system that does check these table's existence after an import restore. I'm going to be using expdp to get these tabs back. Anyway all seems well . Thanks to all who responded.Have a great day .
    Edited by: jodsum on Sep 9, 2010 12:36 PM

  • Enhancement - Table Comments

    It would be nice to see the table comments somewhere.

    Select the context menu for the table, drill down on the Table sub menu and select Comment to add or read the comments for that table.
    Sue

Maybe you are looking for

  • ROBODOG THE MOVIE !

    an unfinished " story " yet to be written as a script... and storyboarded etc ( not to mention revised a zillion times ). Its the nature of my several unfinished projects to be sorta... well... unfinished. this could be the first " ever " ...   " Mov

  • When taking a picture on an Iphone 5, why does the picture go back to the iphone 4 size?

    I was just wondering if the photo on an iPhone 5 was supposed to save as a smaller size like the size from and iPhone 4 or is there a way to change that?

  • Display adaptors in a note book questions

    Window 7  64 bit - ASUS Note Book I7- 2670QM  2.20 GHZ 8 Cores , 8 GB Ram ... Can some one help me please with sorting out my note book which I am hoping might work with Premiere Pro CC2014.x(latest) I appear to have two display adapters enabled in D

  • Field control in shopping cart screen

    Hi All, My requirement is that approvers or delegates should not be able to delete attachments from shopping cart. I did take a look at BBP_UI_CONTROL_BADI but then that doesn't show any thing about field control in shopping cart (BUS 2121). The othe

  • Does AIR runtime supports Windows 7 64 bit?

    Hi, Since Windows 7 is around the corner and will have a 64 bit version also, I was wondering if AIR Runtime supports it or not? I am planning to release a AIR based app and want to make sure that it works on 64 bit Windows 7 also. Any news from AIR