What are all the tables for when you  create a queue?

I'm just getting started with Advanced Queuing on 9i db.
When I create a queue table, I noticed that server other
tables are created at the same time, with the following appended to the original table name: H, I, NR, S, _T
Some of them are also indexed. I figured out that the _S
version is for the subscribers, what are the others?
Thanks,
Tim

I'm just getting started with Advanced Queuing on 9i db.
When I create a queue table, I noticed that server other
tables are created at the same time, with the following appended to the original table name: H, I, NR, S, _T
Some of them are also indexed. I figured out that the _S
version is for the subscribers, what are the others?
Thanks,
Tim

Similar Messages

  • What are all the tables used for this report:

    hi
    what are all the tables used for this report:
    report:
    •     <b>Stock Report, which will give opening balance, receipt, issue, and closing balance for any given Duration for any material.</b>
    thanks in advance

    Tables: MSEG, MKPF, MARD.
    FOR REFERENCE SEE TRANSACTION : MB5B.
    Message was edited by: Sharath kumar R

  • What are all the tables updates..

    Hello experts,
         Do we have any option provided by SAP to find , what are all the tables get updates when we run a transaction (ex: VA01)..
    Thanks & Regards,
    Prakash Reddy .S

    >
    Naveen Inuganti wrote:
    But please dont under estimate my answer as it deffenately meets all the angles of that question.
    The problem is with you answer, that it requires lots of manual work and that will bring lots of possible errors as well (and in case of transactions like VA01, "lots of" has to be understood as "LOTS OF")
    >
    Naveen Inuganti wrote:
    Ex: If you not having authorization or correct inputs or Dont know the screen sequences for VA01, then how can you people can analize it from ST05?
    St05 will only give you a list of DB tables, you don't have to be aware of screen sequences (I believe 99% of developers are not). And if you don't have authorizations, than you have to ask for it
    (My original concern was, if someone searches SCN and finds this thread will think the most points were given to the best answer, but the point assignment was changed meanwhile.)

  • How to fetch what are all the tables used in this TR no and Package name of

    Hi Friends,
    I have input of Transport Request no (E070-TRKORR).
    How to fetch what are all the tables used in this TR no and Package name of this Table.

    HI,
    FYI
    SELECT E071OBJECT_NAME, E070MDEVCLASS
    FROM E071, E070M
    WHERE TRKORR = YOU REQUEST NO.

  • What are all the tables used? experts help me

    hi
    what r all the tables used for this report.
    <b>Delivery Performance Report - to compare the customer delivery schedules with the deliveries created in SAP to determine whether they are early, on-time, or late. This measurement is done by comparing the customer request date against the goods issue date from the delivery</b>
    please any one help me
    thanks in advance

    hi.
    If you know standard transaction or program for purchase order or for any function . you can know the affected tables by that transaction or program USING TRANSACTION
    'SE49'.
    I am working on 4.6c it does exist in this version.
    if does not exist on ur version
    then other way to find affected tables by  a transaction or program is--
    first find the development class for that transaction (like Va01) then goto se80 and enter that development class .it will show all the tables affected .
    steps to find Development class for example (Va01).
    press F1 to any field then click on tech. info
    (ii) double click on program name(SAPMV45B).
    (iii) click on object directory entry in GOTO menu.
    (iv) from here u will get Development class (VA).
    now in se80 u will get all the databasec tables under the node object entry.
    hope this will help.
    Regards .
    vikas

  • What are all the tables used?

    hai,
    what r all the tables used for this report .
    <b>Created an interactive report in which sales orders were listed against different customers within the range selected. Selection of multiple sales orders were allowed for which checkboxes are provided.</b>
    Any help will be much appreciated.
    thanks

    hi
    Sales order related tables are:
    hi ashok,
    u can use from the following tables:
    VBAK -Header data(sales document).
    VBAP -Item data(sales document).
    VBUK -Header Status.
    VBAK -Item status.
    VBEE -Sales requirements (individual records)
    VBFA - Sales document flow
    Customer data related tables-
    KNA1- Customer master
    KNVV-Customer master sales data.
    KNVP-Customer master partner functions.
    Reward points if helpful.
    Naveen

  • What are all the patches for Sun C++ 5.8

    Hi
    Will you Let me know all the Patches for CC: Sun C++ 5.8 2005/10/13 on Solaris 5.8 Sparc
    Please provide the URL
    Regards
    Revathi R

    Initial releases of Studio are free, but patches require an Oracle support contract.
    You can get information about patches and support at My Oracle Support (MOS):
    http://support.oracle.com/

  • What are all the tables used for this report ? please reply

    hai
    i have practcing reports,
    so any one give me the name of the tables used for the below report
    <b>Created report for invoice details, shipping details and partner function.</b>
    thanks in advance.
    by
    ashok

    Hi Ashok,
      I am sending you the code which will display tables present in SAP with the description and jump to datadic or SE16 by selecting plus F2 or F8.
    REPORT ZZBGS044 MESSAGE-ID Z1 LINE-COUNT 65 LINE-SIZE 132
                    NO STANDARD PAGE HEADING.
    Description: This program list all tables in        regards to the   *
                 selection criteria.                                     *
    Customizing: You need not to make any customizing to use this program*
    Change of    You only have to check that tables, functions and       *
    release:     includes till exists. Bedst just to check and run the   *
                 program.                                                *
    Programmer:  Benny G. Sørensen                                       *
    Date:        July 1995                                               *
    SAP R/3      2.2F                                                    *
    Corrections----
    Date        Userid     Correction                                    *
    xx-xx-xxxx  xxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
    TABLES: DD02V                "SAP tables view
    DATA: BEGIN OF DYNTAB OCCURS 2000.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF DYNTAB.
    DATA: BEGIN OF TABLES OCCURS 100.
            INCLUDE STRUCTURE DD02V.
    DATA: END OF TABLES.
    DATA: L        TYPE I,
          REPL(30) TYPE C VALUE '????????????????????????????'.
    FIELD-SYMBOLS:
    PARAMETERS:
    TABLE(30) TYPE C,
    TITLE(74) TYPE C LOWER CASE DEFAULT ' ',
    DOWNLOAD(1) TYPE C DEFAULT ' ',
    FILENAME(65) TYPE C DEFAULT 'c:SAPDOC?',
    EXCEPT(30) TYPE C DEFAULT ' '.
    START-OF-SELECTION.
    IF TABLE = ''.
    TABLE = '*' .
    ENDIF.
    IF TITLE = ''.
    TITLE = '*' .
    ENDIF.
    TRANSLATE TABLE USING '*%'.
    TRANSLATE TITLE USING '*%'.
    CONDENSE EXCEPT NO-GAPS.
    L = STRLEN( EXCEPT ).
    IF L > 0.
    ASSIGN REPL(L) TO
    ENDIF.
    SELECT * FROM DD02V INTO TABLES
    WHERE DDLANGUAGE = SY-LANGU
    AND TABNAME LIKE TABLE
    AND DDTEXT LIKE TITLE.
    HIDE DD02V-TABNAME.
    IF EXCEPT NE ''.
    REPLACE EXCEPT LENGTH L WITH
    INTO TABLES-TABNAME.
    ENDIF.
    TRANSLATE TABLE USING '% '.
    CONDENSE TABLE NO-GAPS.
    IF TABLES-TABNAME CS TABLE.
    WRITE:/ TABLES-TABNAME, ' ', TABLES-DDTEXT.
    APPEND TABLES.
    ENDIF.
    ENDSELECT.
    IF DOWNLOAD NE ''.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    FILENAME = FILENAME
    FILETYPE = 'WK1' "ASC, WK1, DBF, DAT, bin
    TABLES
    DATA_TAB = TABLES.
    ENDIF.
    AT LINE-SELECTION.
    SET PARAMETER ID 'DOB' FIELD SY-LISEL(30) .
    CALL TRANSACTION 'SE12' AND SKIP FIRST SCREEN.
    AT PF8.
    CHECK SY-LISEL <>
      SET PARAMETER ID 'DTB' FIELD SY-LISEL(10) .
      REFRESH  DYNTAB.
      PERFORM DYNPRO USING:
         'X'  'SAPMSTAZ'     '0100'        "Selection screen
        ,' '  'DD02V-TABNAME'  SY-LISEL(10).
      CALL TRANSACTION 'SE16' USING DYNTAB MODE 'A' .
    FORM DYNPRO USING DYNBEGIN NAME VALUE.
      IF DYNBEGIN = 'X'.
        CLEAR DYNTAB.
        MOVE :  NAME TO DYNTAB-PROGRAM,
                VALUE TO DYNTAB-DYNPRO,
                DYNBEGIN TO DYNTAB-DYNBEGIN.
        APPEND DYNTAB.
      ELSE.
        CLEAR DYNTAB.
        MOVE:  NAME TO DYNTAB-FNAM,
               VALUE TO DYNTAB-FVAL.
        APPEND DYNTAB.
      ENDIF.
    ENDFORM.
    Regards,
    Azaz Ali.

  • Screensavers, what are all the options for?

    I recently got and 2nd generation apple tv. I'm a little bit confused about the Screensavers list available under settings > Screen Saver > screen savers. I man there is a lists of Screensavers there: random, flip-up, floating, holiday mobile and so on. I though that these were different effects for showing the pictures; however I have selected some of them and the Screensaver is always the same, all the pictures slowly flying bottom up. So, can someone explain what are these for?
    Thanks!

    Yeah, I have tried that. For everyone to know, my screensaver settings are as follows:
    Start after: 2 minutes
    Show during music: Yes
    Photos: my library
    Screensavers: any, I have tried them all
    After selecting any of them I have tried both, previewing and waiting until it shows, the result is always the same; photos flying slowly from the bottom to the top.

  • What are all the buttons for on my x201?

    I recently purchased an x201 Tablet multitouch (2 fingers and pen), and I absolutely love it.  I was wondering if anyone can point me to where I can find a users guide for my new toy.  Specifically, the fn combo actions.  I purchased it refurbished and I think that I may have mobile broadband, but I'm not able to tell.  Any suggestions on how to find that out?  Thanks in advance!
    Solved!
    Go to Solution.

    Here's the manuals for your system.The hardware and maintenance manual will show you where everything is. You should have a simm card slot on your machine. You'll need to know the complete model number that's on the bottom of your laptop in order to find out whether you have broadband or not.
     http://www-307.ibm.com/pc/support/site.wss/product.do?subcategoryind=0&familyind=512259&brandind=10&...
    T430u, x301, x200T, x61T, x61, x32, x41T, x40, U160, ThinkPad Tablet 1838-22R, Z500 touch, Yoga Tab 2 Windows 8.1, Yoga Tablet 3 Pro
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    If someone helped you today, pay it forward. Help Someone Else!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • What are all the settings for getting mean ,St.deviation & CP & CPK value

    Dear All.
    What settings i need to do for getting mean , standard deviation , CP & CPK values in standard reports of QM.
    like MCVD.
    Rgds,
    Mani

    Hi Kevin,
    Set the length of 0MATERIAL and change conversion to alpha:
    Re: Error Installing 0MATERIAL from Business Content
    Best regards,
    Eugene

  • What are all the files need to be created for Simple Web service

    Hi All,
    Please let me know the required files need to be coded for exposing any method as web service in the application.
    Thanks,
    Siva

    Go through [Getting Started with JAX-WS Web Services|http://www.netbeans.org/kb/docs/websvc/jax-ws.html].

  • What are all the subjobs that get called for when a load is scheduled.

    Can any one please tell me - "when I schedule a load to my Infocube or ODS or other data target, what are all the sub jobs/requests that get called for? Like if I go and see in Tcode SM37, I see several jobs running. Any input is greatly rewarded. Thankyou!!!!

    Hi,
    Adding to what is mentioned above, if its scheduled if its a BW datamart load scheduled in background you can see that in  SM37 job log (give BIrequest name) (In source system if load is from R/3) and it should give you the details about the request.
    SM66 > Get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. (In source system if load is from R/3 or in BW if its a datamart load). See if its accessing/updating some tables or is not doing anything at all.
    Also try SM50/SM51 to find that job.
    Try RSMO from the Infopackage monitor.
    Thanks,
    JItuK

  • What are the table filled when you select ABAP?

    What are the table filled when you select ABAP?

    Hi mate,
    You need to make your question clearer.  Tell us what your requirements are and we can help you more.
    Some hints:
    You can read data from InfoProviders (e.g. InfoCubes, DSOs etc) using function module RSDRI_INFOPROV_READ.
    Hope this helps.

  • Iphotos Package Contents: What are all these folders for? Is it too large to back up in the cloud?

    Dear experts,  I am quite a newbie when it comes to understanding the Mac filing system, as I originally came from the PC world.  There's lots of things I dont understand in the iMac file viewer and how to organise and backup my photos is an important issue for me.
    I know that if I want to look at the original photo files on my iMac, I can right-click on users/myname/pictures and select "Show Package Contents".
    Question 1 - What are all these folders for?
    Please can someone explain what is the difference between all the folders I see?  Some of them seem to be exact duplicates of the others e.g. Masters, Modified and Originals all seem to have the same content.  So here is a list of folders that I see.  What is in them?, or what is their purpose?
    Data
    Data.noindex
    Modified
    Originals
    Apple TV Photo Cache
    Attachments
    Auto Import
    Backup
    Caches
    Contents
    Database
    iLifeShared
    iPod Photo Cache
    Masters
    Previews
    ProjectCache
    Thumbnails
    Question 2 - Which photo folder should I back-up?
    If I want to keep a physical backup of my photos, which of the above folders should I copy to an external hard drive?  (I use Get Backup to automatically  copy all important new or changed files to an external drive)
    Question 3 - Using the cloud: What is the best way to backup my large photo library in the cloud safely? 
    I would like to have some kind of safe backup in the cloud for my photos.  However the size of the iphoto library is huge at 165GB.  Even the Masters folder is huge.  It is 130GB.  Is it possible to back up files of this size in the cloud?  I have a couple of services called photo streaming and Dropbox, but they don't seem to be able to handle this kind of size.  Photo streaming only works with 1000 photos (as far as I can tell), and my Dropbox probably has a limit too.  I guess it's about 5GB.  I am already using about 3GB of my Dropbox space for other files.  I would consider both paid and free solutions.
    Many thanks to all the experts for your help!

    know that if I want to look at the original photo files on my iMac, I can right-click on users/myname/pictures and select "Show Package Contents".
    Don't do that. That's like opening the hood of your car and trying to figure out what all the different bits and peices are and which you can yank out and dispose of. Simply, there are no user-serviceable parts in here.
    So, your Question 2:
    You back up the iPhoto Library as a single unit.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store
    Your question 3:
    There is no good back up to the Cloud. There are a couple of reasons for this. One is that the datasets are so large and the cloud services shapre their download speeds. This means restoring can take days to complete. Then, and this is the big problem, the iPhoto Library needs to sit on a disk formatted Mac OS Extended (Journaled). Bluntly, no servers online are formatted appropriately, and if the Library is written to - by an incremental back up, for instance - there is a very high likelihood that the library will be corrupted.
    Your Question 1:
    The Library you're describing there sounds like one that has been updated a few times. Not everything you list there is a folder. Some will be aliases.
    The Data folders hold thumbnails.
    The Masters and Originals folders hold the files as imported from the camera
    The Previews hold the versions of the edited photos that are accessed via the Sharing mechanism.
    I think if you look losely that you'll notice that one of the Data folders and one of either the Masters or the Originals folders is actually an alias.
    Everything else is a database or cache file of some form. All are required for iPhoto to work.
    As an FYI:
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491

Maybe you are looking for