Xi Questions IMP..

hi  All ,
I have some  questions regarding XI .  need help .
When the changes are replicated  in run time cache?
What conditional processing is being used in Stylesheet by XSLT programming.
Which interface objects is the highest-level representation of XML metadata?
What are different message monitoring status values and where do you see it? What is DLNG?
Where two places to perform Content based Routing?
Thanks

Where two places to perform Content based Routing?
<b>Receiver Determination AND iNTERFACE DETERMINATION</b>
What are different message monitoring status values and where do you see it? What is DLNG?
<b>We see them in Runtime workbench and DLNG means DELIVERING</b>
Which interface objects is the highest-level representation of XML metadata?
<b>Message Interfaces</b>(Not sure)

Similar Messages

  • Multicube question - imp

    hi all ,
    I have two basic cubes ( one with plan data , one with actual data ) which have just one common characteristic,i have built a multicube on top of these 2 cubes.
    a) What result will the query return when i use a non-common characteristic (i/e a characteristic which is present only in one of the basic cubes ) in the query selection ?
    b) What result will the query return when i use a common characteristic (i/e a characteristic which is present in both the basic cubes ) in the query selection ?
    all inputs welcome

    a) What result will the query return when i use a non-common characteristic (i/e a characteristic which is present only in one of the basic cubes ) in the query selection ?
    it will just the KF value of the char from the cube that it is present in.
    b) What result will the query return when i use a common characteristic (i/e a characteristic which is present in both the basic cubes ) in the query selection ?
    It will bring the KF value from both the cubes. So you would need to seperate the numbers by using 0VTYPE to distinguish the actual data and plan data or restrict the KF to appropriate cube to read the KF from actual cube or plan cube

  • Exp/imp procedures, functions and packages question

    Hi
    I've a 9i R2 version Oracle database. I would like to export procedures, functions and packages from a schema. How do I do that?
    Is there any script or command lines can provide?
    Thanks

    Hello user12259190.
    You can do an export of the user itself, excluding table data as inH:\>exp
    Export: Release 10.2.0.1.0 - Production on Tue Dec 22 11:22:52 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Username: db_user@db_sid
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Data Mining and Real Application Testing options
    Enter array fetch buffer size: 4096 >
    Export file: EXPDAT.DMP >
    (2)U(sers), or (3)T(ables): (2)U > 2
    Export grants (yes/no): yes > no
    Export table data (yes/no): yes > no
    Compress extents (yes/no): yes > no
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses UTF8 character set (possible charset conversion)
    Note: table data (rows) will not be exported
    Note: grants on tables/views/sequences/roles will not be exported
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user DB_USER
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user DB_USER
    About to export DB_USER's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export DB_USER's tables via Conventional Path ...
    . . exporting table  TABLE_NAMEs
    EXP-00091: Exporting questionable statistics.
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully with warnings.Unfortunately, you can't export just the objects you want to unless they are tables.
    Using import (imp) you can list the content of your packages, procedures, functions, views, etc. and perhaps that will give you what you need.
    Another choice would be to useSELECT * FROM user_source ORDER BY 2, 1, 3;to list the code.
    Hope this helps,
    Luke

  • Very very imp question plz......reply atleast one step

    <b>plz tell me the statements which will be burdon for the databaSe</b>..and to over come tha which statements we should use...fro example INSTEAD OF INNER JOINS WE USE FOR ALL ENTRIES TO UTILIZE DATABASE MUCH MORE EFFECIENTLY PLZ REPLY MY QUESTION WITH GREAT HEART THANK U

    Hi,
    Performance tuning for Data Selection Statement 
    For all entries
    The for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of 
    entries in the driver table is larger than rsdb/max_blocking_factor, several similar SQL statements are executed to limit the 
    length of the WHERE clause. 
    The plus
    •     Large amount of data 
    •     Mixing processing and reading of data 
    •     Fast internal reprocessing of data 
    •     Fast 
    The Minus
    •     Difficult to program/understand 
    •     Memory could be critical (use FREE or PACKAGE size) 
    Some steps that might make FOR ALL ENTRIES more efficient:
    •     Removing duplicates from the the driver table 
    •     Sorting the driver table 
    If possible, convert the data in the driver table to ranges so a BETWEEN statement is used instead of and OR statement:
    FOR ALL ENTRIES IN i_tab
      WHERE mykey >= i_tab-low and
            mykey <= i_tab-high.
    Nested selects
    The plus:
    •     Small amount of data 
    •     Mixing processing and reading of data 
    •     Easy to code - and understand 
    The minus:
    •     Large amount of data 
    •     when mixed processing isn’t needed 
    •     Performance killer no. 1
    Select using JOINS
    The plus
    •     Very large amount of data 
    •     Similar to Nested selects - when the accesses are planned by the programmer 
    •     In some cases the fastest 
    •     Not so memory critical 
    The minus
    •     Very difficult to program/understand 
    •     Mixing processing and reading of data not possible 
    Use the selection criteria
    SELECT * FROM SBOOK.                   
      CHECK: SBOOK-CARRID = 'LH' AND       
                      SBOOK-CONNID = '0400'.        
    ENDSELECT.                             
    SELECT * FROM SBOOK                     
      WHERE CARRID = 'LH' AND               
            CONNID = '0400'.                
    ENDSELECT.                              
    Use the aggregated functions
    C4A = '000'.              
    SELECT * FROM T100        
      WHERE SPRSL = 'D' AND   
            ARBGB = '00'.     
      CHECK: T100-MSGNR > C4A.
      C4A = T100-MSGNR.       
    ENDSELECT.                
    SELECT MAX( MSGNR ) FROM T100 INTO C4A 
    WHERE SPRSL = 'D' AND                
           ARBGB = '00'.                  
    Select with view
    SELECT * FROM DD01L                    
      WHERE DOMNAME LIKE 'CHAR%'           
            AND AS4LOCAL = 'A'.            
      SELECT SINGLE * FROM DD01T           
        WHERE   DOMNAME    = DD01L-DOMNAME 
            AND AS4LOCAL   = 'A'           
            AND AS4VERS    = DD01L-AS4VERS 
            AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    SELECT * FROM DD01V                    
    WHERE DOMNAME LIKE 'CHAR%'           
           AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    Select with index support
    SELECT * FROM T100            
    WHERE     ARBGB = '00'      
           AND MSGNR = '999'.    
    ENDSELECT.                    
    SELECT * FROM T002.             
      SELECT * FROM T100            
        WHERE     SPRSL = T002-SPRAS
              AND ARBGB = '00'      
              AND MSGNR = '999'.    
      ENDSELECT.                    
    ENDSELECT.                      
    Select … Into table
    REFRESH X006.                 
    SELECT * FROM T006 INTO X006. 
      APPEND X006.                
    ENDSELECT
    SELECT * FROM T006 INTO TABLE X006.
    Select with selection list
    SELECT * FROM DD01L              
      WHERE DOMNAME LIKE 'CHAR%'     
            AND AS4LOCAL = 'A'.      
    ENDSELECT
    SELECT DOMNAME FROM DD01L    
    INTO DD01L-DOMNAME         
    WHERE DOMNAME LIKE 'CHAR%' 
           AND AS4LOCAL = 'A'.  
    ENDSELECT
    Key access to multiple lines
    LOOP AT TAB.          
    CHECK TAB-K = KVAL. 
    ENDLOOP.              
    LOOP AT TAB WHERE K = KVAL.     
    ENDLOOP.                        
    Copying internal tables
    REFRESH TAB_DEST.              
    LOOP AT TAB_SRC INTO TAB_DEST. 
      APPEND TAB_DEST.             
    ENDLOOP.                       
    TAB_DEST[] = TAB_SRC[].
    Modifying a set of lines
    LOOP AT TAB.             
      IF TAB-FLAG IS INITIAL.
        TAB-FLAG = 'X'.      
      ENDIF.                 
      MODIFY TAB.            
    ENDLOOP.                 
    TAB-FLAG = 'X'.                  
    MODIFY TAB TRANSPORTING FLAG     
               WHERE FLAG IS INITIAL.
    Deleting a sequence of lines
    DO 101 TIMES.               
      DELETE TAB_DEST INDEX 450.
    ENDDO.                      
    DELETE TAB_DEST FROM 450 TO 550.
    Linear search vs. binary
    READ TABLE TAB WITH KEY K = 'X'.
    READ TABLE TAB WITH KEY K = 'X' BINARY SEARCH.
    Comparison of internal tables
    DESCRIBE TABLE: TAB1 LINES L1,      
                    TAB2 LINES L2.      
    IF L1 <> L2.                        
      TAB_DIFFERENT = 'X'.              
    ELSE.                               
      TAB_DIFFERENT = SPACE.            
      LOOP AT TAB1.                     
        READ TABLE TAB2 INDEX SY-TABIX. 
        IF TAB1 <> TAB2.                
          TAB_DIFFERENT = 'X'. EXIT.    
        ENDIF.                          
      ENDLOOP.                          
    ENDIF.                              
    IF TAB_DIFFERENT = SPACE.           
    ENDIF.                              
    IF TAB1[] = TAB2[].  
    ENDIF.               
    Modify selected components
    LOOP AT TAB.           
    TAB-DATE = SY-DATUM. 
    MODIFY TAB.          
    ENDLOOP.               
    WA-DATE = SY-DATUM.                    
    LOOP AT TAB.                           
    MODIFY TAB FROM WA TRANSPORTING DATE.
    ENDLOOP.                               
    Appending two internal tables
    LOOP AT TAB_SRC.              
      APPEND TAB_SRC TO TAB_DEST. 
    ENDLOOP
    APPEND LINES OF TAB_SRC TO TAB_DEST.
    Deleting a set of lines
    LOOP AT TAB_DEST WHERE K = KVAL. 
      DELETE TAB_DEST.               
    ENDLOOP
    DELETE TAB_DEST WHERE K = KVAL.
    Tools available in SAP to pin-point a performance problem
    The runtime analysis (SE30)
    SQL Trace (ST05)
    Tips and Tricks tool
    The performance database
    Optimizing the load of the database
    Using table buffering
    Using buffered tables improves the performance considerably. Note that in some cases a stament can not be used with a buffered table, so when using these staments the buffer will be bypassed. These staments are:
    •     Select DISTINCT 
    •     ORDER BY / GROUP BY / HAVING clause 
    •     Any WHERE clasuse that contains a subquery or IS NULL expression 
    •     JOIN s 
    •     A SELECT... FOR UPDATE 
    If you wnat to explicitly bypass the bufer, use the BYPASS BUFFER addition to the SELECT clause.
    Use the ABAP SORT Clause Instead of ORDER BY
    The ORDER BY clause is executed on the database server while the ABAP SORT statement is executed on the application server. The datbase server will usually be the bottleneck, so sometimes it is better to move thje sort from the datsbase server to the application server.
    If you are not sorting by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are sorting by another key, it could be better to use the ABAP SORT stament to sort the data in an internal table. Note however that for very large result sets it might not be a feasible solution and you would want to let the datbase server sort it.
    Avoid ther SELECT DISTINCT Statement
    As with the ORDER BY clause it could be better to avoid using SELECT DISTINCT, if some of the fields are not part of an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on an internal table, to delete duplciate rows.
    Regards,
    Kumar.

  • Oracle 9.2.0.6 imp question

    Hello,
    When we use Oracle 9.2.0.6 imp to import a series of dump files (exported also in Oracle 9.2.0.6), we just want to import some schemas, not all. So we used
    file= dmp1.dmp, dmp2.dmp, dmp3.dmp fromuser=a, b, c touser=a, b, c
    since users are spreading across those dump files.
    But it seems although imp didn't actually import those skipped schemas, it still spent time "simulating" the import at a very slow pace.
    Is this expected?
    Thanks!

    That's expected. Oracle will have to scan whole dump file to locate the tables and other objects. If you only need a small subset of your full database, better do user mode export.

  • Question for SQL Loader / IMP /EXPORT

    hi all,
    i just describe my example first : -
    TABLE A have five columns.
    a_column,b_column,c_column,d_column,e_column.
    and have 1000 records.
    i want to remove c_column & e_column and add f_column.
    on TABLE A. which method (SQL Loader or IMP/EXP) is good suggestion for export & import data before take above action.
    boris

    Export/Import is the most appropiate solution for the task that you want to carry out because SQL*Loader is designed to load data into the database from flat files.
    Regarding how to drop the two columns , you can do it
    directly if you are working in 9i setting both columns as
    unused after drop unused columns in the table.
    Complete reference for those utilities:
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96652.pdf
    Joel P�rez

  • 2 questions - exp/imp and coltype

    I have two questions - both unrelated : (Oracle 9.2.0.5 running on AIX 5.3)
    1. I did a schema export in database DB1 of a user USR1 that has a bunch of tables with data. Some of the tables are in tablespace TS1 whereas some are in TS2. Export is successful.
    Now, I want to use this .dmp file to import the objects into another oracle database DB2. Having created the user USR1 in DB2, I want to import all the objects into USR1. But DB2 has only one tablespace TS1.
    So, how do I successfully import all the objects into TS1 (even though some of them existed in TS2 of the source database ) ??
    2. Based on the data in a column of a table, I want to determine if the value contains alphabets or if it is numeric only. How do I do this ?
    For example
    SELECT ENAME FROM EMP;
    SCOTT
    BRIAN2
    MATHEWS
    GEORGE3
    5555
    I am looking for an output something like :
    SCOTT ALPHA
    BRAIN2 ALPHANUMERIC
    MATHEWS ALPHA
    GEORGE3 ALPHANUMERIC
    5555 NUMERIC

    Hi,
    1) No problem, the dump will be imported into default's target user
    2) Maybe this code below help you a little ...
    SQL> create table emp (ename varchar2(20));
    Table created.
    SQL> insert into emp values ('SCOTT');
    1 row created.
    SQL> insert into emp values ('BRIAN2');
    1 row created.
    SQL> insert into emp values ('MATHEWS');
    1 row created.
    SQL> insert into emp values ('GEORGE3');
    1 row created.
    SQL> insert into emp values ('5555');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> SELECT ENAME,NVL2(LENGTH(TRIM(TRANSLATE(ENAME,'+-.0123456789',' '))),'ALPHA','NUMERIC') FROM EMP;
    ENAME                NVL2(LE
    SCOTT                ALPHA
    BRIAN2               ALPHA
    MATHEWS              ALPHA
    GEORGE3              ALPHA
    5555                 NUMERIC
    SQL>Cheers

  • Simple and Imp question

    Hi, 
    I am working on Microsoft Office 2010 version, i am experiencing a problem. I am not able to insert a task a row or a task to my sheet. It looks inactive as a feature, and i do need to insert a row. Please advise ASPA. 
    Thank you. 
    Anna

    Hi;
    which EBS R12 package to download for minimal configration for just practice stuff?
    any starter guide for this installation on linux OEL 5.4 x86_64??Firstly, your Question is not stupied. Secondly you need to download all related package from e-delivery(Now only R12.1.1 donwload avaliable there), you dont need to download NLS media pack.
    For installation please check
    Oracle Applications Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Oracle Applications Documentation Resources, Release 12.1 Doc ID: 790942.1
    Also check installation guide at:
    For r12.1.1:
    http://download.oracle.com/docs/cd/B53825_01/current/html/docset.html
    Regard
    Helios

  • Another EXP/IMP question

    Moving data from 5 databases that are 9i over to 10g. If each datbase has 1 user with tables in associated schema what needs to be done on the 10g side as far as a user is concerned. The only way I've been able to exp / imp is cloning the sys account using toad then doing a dba/import from user sys to the duplicated account. What privilages are needed on the 10g side to imp that data without having to clone the sys account?
    thanks.

    CHarles is correct, if the export on the original machine is not a full export, anyone can import it. However, if it is a full export, then you must have the IMP_FULL_DATABASE priviledge. However, SYS and SYSTEM have the priviledge. Why don't you start imp as the sys or system user and do a user import into your new schema on the 10G system.

  • Question on IMP/EXP downward compatibility

    Hi,
    I want to know the possible ways of transferring a schema from Oracle 8.1.7 to Oracle 8.1.6....
    Thanks in advance.
    null

    while exp and imp from one OS to other u need to transfer the file in binary mode , and from one ver of oracle to other its advisable to have the exp from lower ver of oracle and need to be exported in higher version of oracle.
    But still if u need to have exp from higher version and need to be imported to lower version , u can do it by changing the header of dump file from higher version to the lower version of the DB. and u can also try by taking export with the value of compatible parameter in init file to the lowest version of DB u want to import.
    Rohit
    null

  • Hi bw guru's   FEW  IMP   QUESTIONS

    1)CAN ANY ONE GIVE ME THE STEP BY STEP IN BEX-ANALYSER REPORTING MATERIAL OR URLS.( FOR ALL THE PRACTICAL & REAL TIME)
    2) HOW MANY TYPES OF DATA MODELLING ARE THERE IN SAP-BW??
    ANY MATERIAL PLEASE UPDATE??
    3) EXTRACTIONS METHODOLOGY STEPS??
    THANKS A LOT
    KPK

    Hi dear,
    Maik's answer means: your questions are so general that nobody can answer properly as help.sap.com !!!
    Bye,
    ROberto
    Ah, since navigating through hierarchy (on the left side) of the help can be a bit difficult, use advanced search function, enter some key words..and voilà !!!
    Let us know if you need some more specific info...

  • Quick IMP question...

    Greetings all.
    Trying to run an import taking an export file from a schema and loading one table into a different schema where the same table exists, but need to overwrite the data.
    Kinda make sense?
    I am runnin
    imp user/password fromuser=a touser=b table=c file=export.dmp
    It barks becasuse user 'b' already has a table 'c', but I want to over write that table. Is there where I would use the DESTROY option?
    Thanks!

    Ignore=y, as per the documentation, prevents the barking.
    However, if the table has a primary key, it will continue to bark.
    Imp is a series of INSERT statements.
    You need to truncate the table prior to import.
    Destroy=y, as per the documentation, applies to tablespaces.
    Sybrand Bakker
    Senior Oracle DBA

  • URGENT IMP INDEX Question

    I have two index on table
    a)unique index1(a1,a2)
    b)index2(a1)
    Some one suggested to me that index2 is useless ...He mean there is no need for index2...(index1 will take care of it ..)
    Is it true ?
    Please reply

    The second index is definitely useless in case you have the first index.
    If you have several querries that are something like:
    select * from tab where a2=:vala2,
    then an index on tab (a2) would be useful.
    But, when you have a composite index (a1, a2), any qyery that has
    - where a1=:vala1 and a2=:vala2 or
    - where a1=:vala1 would
    use that composite index.
    A query that has only where a2=:vala2 would not use the (a1, a2) index.
    Whenever building indexes you should have in mind the most frequent querries you will have in your application, or you'll just use up more disk space and slow down the inserts, updates and deletes.
    Best of luck,
    BD.

  • SOME IMP QUESTION

    Hi all,
    1.What are common transport errors u faced while transporting?
    2.How to adjust user master records? If user master record doesn’t adjust what will you do?
    3. If a background job runs more than the time it should be completed normally then what actions will u take?
    4. How to schedule background jobs at OS level?
    5. How to add authorizations, how you will maintain profiles?
    6. Where will u find transport error logs?
    7. How to transport objects from Production to Development
    8. 37.     If a lock entry is holding more than 24 hours then what will you do? If another user wants to share that lock but the user using that lock haven’t released lock he went for holiday what will u do? This user wants lock ASAP then what will u do?
    9. What will you do if u got Update failure?

    Hi,
    Answers are as follows:
    1.What are common transport errors u faced while transporting?
    Dependency error is the most common thing. For example table entries have been transported first before the table being actually moved. Or the main program moving but its components like includes not getting moved.
    2. How to adjust user master records? If user master record doesn’t adjust what will you do?
    Can you please elaborate what do you mean exactly by this?
    3.  A background job runs more than the time it should be completed normally then what actions will u take?
    You can try to debug it using SM50. Could be a code issue. Check if job logs in SM3è show something unusual though normally any useful info in job logs will occur when job has either completed or cancelled.
    4. How to schedule background jobs at OS level?
    No idea.
    5. How to add authorizations, how you will maintain profiles?
    Profiles as such are not used in higher SAP releases. Instead we make use of roles./ Every role has a profile though.You can create roles through transaction PFCG where you can add transactions to the role and modulate the authorizations.
    6. Where will u find transport error logs?
    You can find them through SE01. also you can check transport log files in transport directory.
    7. How to transport objects from Production to Development.
    Make use of transport of copies type of request. First save chqnges in customizing/workbench request and then include the objects in a tranport of copies request. You can define target system/client.
    8. If a lock entry is holding more than 24 hours then what will you do? If another user wants to share that lock but the user using that lock haven’t released lock he went for holiday what will u do? This user wants lock ASAP then what will u do?
    If the user is there then check with him. Anyways after 24 hrs the user session will get terminated dependening on your profile parameter settingsd. So makes sense to delete locks through SM12.
    9.What will you do if u got Update failure?
    Please visit Update Termination   for this issue.
    Please award points for useful answers.
    Regards.
    Ruchit.

  • Sales order doc types to Roles - IMP question

    Dear Gurus :
    We have a requirement .We are revising users  who has authority  to do certain   SD transactions like  superviosr has access to all t codes related to sd. billing co ordinatior will have access to all billing docs and t codes.
    Requirement is :
      I have ot assing Sales order document types to roles. Any idea how to do it ?
    Full reward points will be given.
    Vanbills

    Dear van bills
    Through two options, you can achieve this
    - Basis team people can control authorization for specific user ids
    - Apply transaction / screen variant via shd0 so that you can decide which user can enter / alter datas.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Indesign Save and Save As Greyed out!!!!!

    Why oh why is this still happening - come on Adobe sort this out. Lost time and Revenue due to InDesign suddenly greying out Save and Save As, which means the only way you can save the document is by exporting as an IDML which then causes more proble

  • Can I disable image previews in Acrobat 9 Pro Organizer?

    I need to do something to speed up loading and scrolling through large collections in Organizer.  Great tool but desperately slow!!  Any suggestions?

  • Does globals.jsa exist in JDeveloper 10.1.3.3.0

    Hi Guys, I've built some old jsps using JDeveloper 10.1.2.1.0 (Build 1913) and want to bring them across using the JDeveloper 10.1.3.3.0. Because 'globals.jsa' was automatically generated by the JDeveloper 10.1.2.1.0 and when I tried to migrate the p

  • Any difference between Toslink & just a basic minijack to RCA splitter?

    If you plug an (Apple style) TOSLINK optical cable into an AirPort Express getting music from your iTunes library on an iMac and run that cable to an MCM 24Bit/96K D/A Toslink/Coax Digital Input to Line Level Output Converter) then the analog cable t

  • User Exit for line item query

    HI There, I'm not good at ABAP coding and need some help from experts. Working on Line Items Query and enhanced the 0FI_AP_4 to include fields from BSEG table, the fields are: GEBER - Funds FISTAL - Funds Center KOSTL - Cost Center GSBER - Business A