Which table/view holds Oracle procedure code?

On a course a while back, I remember being told one could query an Oracle table/view to list PL/SQL code against a procedure/package.
I cannot recall this table/view - any help please?
Thanks

Hi,
Also, please not that editing from dba_source directly can be a real pain, and ther new SQL Developer tools has a cool interface for editing PL/SQL source code:
http://www.oracle.com/technology/software/products/sql/index.html

Similar Messages

  • OTA/OLM 11.5.10 : which tables/views hold info for Ext, Int Training , Certifications.

    Hello,
    which tables/views stores information about .
    Internal Training history
    External Training History
    Certifications
    in R 11.5.10 ?
    I found the following tables
    OTA_NOTRNG_HISTORIES_V  -- supposedly stores external training history, is this the right one for external training ?
    OTA_CTRNG_HISTORIES_V  -- stores combined training history , how to pick 'Internal' history from this view , if this is the right one ?
    OTFV_COMBINED_TRAINING_HISTORY -- stores combined training history , how to pick 'Internal' history from this view , if this is the right one?
    could not find any table in 11.5.10 for certifications.
    Thanks

    FSKB     G/L Account Posting
    this transaction is not working

  • Which table/view has the schema details?

    Hi All,
    In which table/view I can view the different schemas present in the database? Should I sign-in as SYS or any user can read from that table?
    Please help...
    Thanks in advance...

    DBA_USERS will tell you the users that have been created in the database. Some or all of those users may have objects in their schemas, which you can see via DBA_OBJECTS.
    You don't need to be a DBA to query those views, but you do need appropriate privileges. Depending on your Oracle version, you'd need either the SELECT_CATALOG_ROLE role, the SELECT ANY DICTIONARY privilege, or a direct privilege grant on the particular views you're interested in.
    Justin

  • Which table/view storing the page information?

    Can someone tell me which table/view I can query to get the page name, id, and authorization scheme assigned to it?
    Thank you kindly
    Jean drouin

    desc flows_020100.wwv_flow_steps
    Name Null Type
    ID NOT NULL NUMBER
    FLOW_ID NOT NULL NUMBER
    TAB_SET VARCHAR2(255)
    NAME NOT NULL VARCHAR2(255)
    ALIAS VARCHAR2(255)
    PAGE_COMPONENT_MAP VARCHAR2(255)
    STEP_TITLE VARCHAR2(255)
    STEP_SUB_TITLE VARCHAR2(255)
    STEP_SUB_TITLE_TYPE VARCHAR2(30)
    FIRST_ITEM VARCHAR2(255)
    WELCOME_TEXT VARCHAR2(4000)
    BOX_WELCOME_TEXT VARCHAR2(4000)
    BOX_FOOTER_TEXT VARCHAR2(4000)
    FOOTER_TEXT VARCHAR2(4000)
    HELP_TEXT CLOB()
    STEP_TEMPLATE NUMBER
    BOX_IMAGE VARCHAR2(255)
    REQUIRED_ROLE VARCHAR2(255)
    REQUIRED_PATCH NUMBER
    HTML_PAGE_HEADER CLOB()
    HTML_PAGE_ONLOAD VARCHAR2(4000)
    ALLOW_DUPLICATE_SUBMISSIONS VARCHAR2(1)
    ON_DUP_SUBMISSION_GOTO_URL VARCHAR2(4000)
    PAGE_IS_PUBLIC_Y_N VARCHAR2(1)
    PROTECTION_LEVEL VARCHAR2(1)
    SECURITY_GROUP_ID NOT NULL NUMBER
    ERROR_NOTIFICATION_TEXT VARCHAR2(4000)
    ID2 NUMBER
    LAST_UPDATED_BY VARCHAR2(255)
    LAST_UPDATED_ON DATE
    GROUP_ID NUMBER
    PAGE_COMMENT VARCHAR2(4000)

  • Which table/view stores information on APEX user groups?

    Hi All,
    I need to list all the APEX users, their roles(i.e. IS_ADMIN or IS_DEVELOPER) and the user groups they belong to.
    Can some one kindly share the information on which tables/views will have all this information?
    I am aware of apex_workspace_users which tells me about the roles (i.e. IS_ADMIN or IS_DEVELOPER).
    Thanks in advance.
    Annie

    Thanks jari for your help.
    I did manage to get the information on user groups by using APEX_UTIL.get_groups_user_belongs_to function.
    However there are two issues in that:
    Firstly, the requirement is that i should be able to retrieve this details by executing queries in SQLPPlus and not APEX WS. However, executing APEX_UTIL.get_groups_user_belongs_to function in sqlplus returns no data. That means there are certain permission issues on the underlying tables.
    Secondly, the user groups are listed in a single row and I'd like the result in the multiple rows.

  • RSS Table View with Tab Bar Code Error

    I created an iphone app with a navigation controller that has a table view which displays an rss feed. My client wants it able to display multiple rss feeds through a tab bar. I have attempted several times and have messed up. If anyone could help me with this it would be greatly appreciated.

    Hi Guy, and welcome to the Dev Forum!
    I would recommend starting as follows:
    1) Start a new project with the Tab Bar Application template;
    2) Open MainWindow.xib and select Window->Document from the IB menu to make sure the xib window (the icon winow) is visible;
    3) Locate the "View Mode" switch in the upper-left corner of the xib window and make sure it's in the Center position to display a 2-column table showing the view hierarchy as a tree of small icons to the left;
    4) Expand the Tab Bar Controller branch, then delete (select and Edit->Delete) each of the two view controllers under the Tab Bar Controller. The only child of that controller should now be the Tab Bar;
    5) Open the Library window (Tools->Library), drag a Navigation Controller into the xib window and drop it when it's on top of the Tab Bar Controller icon;
    6) Repeat step 5 until you have as many nav controllers (one for each RSS feed) as you want (for this example, assume 4 RSS feeds);
    7) The Tab Bar Controller should now have 5 children: the Tab Bar plus the 4 nav controllers; if not, drag the nav controllers until each of their icons is shown indented under the Tab Bar Controller just as the Tab Bar is;
    8) Expand the first Navigation Controller branch, and expand it's Root View Controller; you should now see that root controller's Navigation Item;
    9) Select the nav item, open the Attributes Inspector (Cmd-1), and change the Title to "RSS 1 Root";
    10) Repeat 8-9 for the remaining 3 nav controller branches, so the root views will be labeled "RSS 2 Root", ... "RSS 4 Root" respectively;
    11) Save the xib, return to Xcode, and click "Build and Go". The project should build and run without any warnings or errors. If not, return to step 1 and try to see where things went wrong.
    Let us know if you need more help after you get the above skeleton app working. The next step will be to change the class of the "RSS 1 Root" controller to the class of the first table controller in your original project, and to add that controller's xib (you can delete FirstViewController.h/.m and SecondView.xib by selecting each in the Groups & Files tree of the Xcode project window and selecting Edit->Delete).
    Please avoid the temptation to merge the above steps into your original project. In my experience, moving each of your files into the new skeleton, and testing at each buildable stage will reduce the chances for error while making it easier to spot any incompatibilities in your old code. The process shouldn't involve touching any of your XML parse or table display code, but you may need to override some additional table view controller methods such as viewWillAppear:
    Btw, in case this hasn't been discussed yet, be aware you'll face a major decision soon: When tabbing to feed no. 2, what happens on the return to feed no. 1? If the user will return to the same detail view that was last displayed, you might need lots more memory and there will be lots more to go wrong. If the user will return to the home menu, the whole project will be much simpler. Estimate your effort accordingly.
    Also be prepared for your client to say something like this during beta: "Oh... one or two of the links in feed no. 3 might be a mp3 or mp4 next month. That won't be a problem, will it?".
    Hope that helps!
    \- Ray

  • Which table/view stores the Driver values for each project

    Hi,
    I want to report on projects and drivers and the rating (Extreme, Moderate, low etc.) that have been assigned to each project.  I cannot seem to local the correct table/view.  I found the driver table and analysis tables but not one that has
    a project and ratings.
    What is the table / view?
    Regards Andrew
    Andrew Payze

    Hi Andrew,
    That would be the MSP_Project_Impact_values in the published schema.
    Please note that querying this particular schema is not supported.
    Hope this helps
    Paul

  • DW Table View in Oracle

    Hi Every one,
    Em a student a doing a project of warehouse. Em facing lot of problem in owb n i needed ur help. i create a repository bcam3 through repository assistant. then i create table, external tables, dimension... of targer and import or create tables etc in source as well. i want to view all these table thruogh oracle sqlplus. when i log on through this repository (bcam3) it doesnt show all these tables,dim,ex table, files. Can you tell me. I shall be thank ful to you for this kind. Bye Bye God Bless You

    Good morning Tanvir,
    To elaborate a bit more on what Sergey has already told, OWB is nothing more than a repository of metadata, i.e. definitions of database objects.
    In order to create physical database objects from these definitions, you first have to create a runtime repository connection. When you have done this, you can start the so-called Deployment Manager, which is the tool that enables you to deploy objects to the database. Don't forget to register the Location of all modules you've created objects in, otherwise OWB does not know where to deploy to.
    I totally agree with Sergye that you first read the OWB10gR1 User Guide in order to understand what OWB exactly does.
    The basic information you need to deploy objects are to be found in "Part III Deploying and Executing"of the User Guide, especially Chapter 13 Deploying Target Systems.
    Good luck, Patrick

  • QM: Which table we get Inspection catalog codes by using MIC

    Hi,
    I am having Master Inspection Characterstic(MIC) and plant by using this I need to get Inspection catalog codes qualitative(ex:YES/NO).
    Please provide a link table or provide function modules for Inspection catalog codes
    Thanks,
    Mahahe

    Hi,
    Can you please explain me what you want to make ,maybe i will help you out...well to have Inspection catalog codes using MIC you can have table QPAC(Inspection catalog codes for selected sets).
    i hope this will solve your problem.

  • Which table/field holds the WF Administrator in SWDD?

    Hi all,
    we are in ECC 6.0.
    I have maintained the WF Admin is SWU3 and now we are developing other workflows and will be storing the WF Admin at the Workflow Level i.e. in SWDD; menu path Go To > Basic Data; tab Version-Dependent; tab Agents.
    I thought the data would be saved in SWD_HEADER, field WFI_ADMIN. It is simply not there...
    When I use function module SWD_WF_DEFINITION_ADMIN_GET, it returns the WF Admin defined in SWU3. I then debugged it and noticed that WFI_ADMIN is blank for my active Workflow version.
    Any ideas as to what I might have missed?
    Much thanks and regards,
    Cristiana

    use table VBUV (Sales Document: Incompletion Log)

  • Which tables for t.code FBWE?

    Hi All,
    Could anyone tell me which tables are recorded by t.code FBWE?
    Thanks
    Gandalf
    Edited by: Umberto Gandalf on Nov 14, 2008 10:34 PM

    Here is the List of Transparent Table updated by trxn code FBWE
    BKPF                           TRANSP         Accounting Document Header                                  
    BNKA                           TRANSP         Bank master record                                          
    BSAD                           TRANSP         Accounting: Secondary Index for Customers (Cleared Items)   
    BSIS                           TRANSP         Accounting: Secondary Index for G/L Accounts                
    CNTLSTRLIS                     TRANSP         Control stream list                                         
    FEBKEY                         TRANSP         ID administration                                           
    KNA1                           TRANSP         General Data in Customer Master                             
    KNB1                           TRANSP         Customer Master (Company Code)                              
    KNBK                           TRANSP         Customer Master (Bank Details)                              
    LFA1                           TRANSP         Vendor Master (General Section)                             
    LFB1                           TRANSP         Vendor Master (Company Code)                                
    REGUH                          TRANSP         Settlement data from payment program                        
    REGUT                          TRANSP         TemSe - Administration Data                                 
    REGUV                          TRANSP         Control records for the payment program                     
    RFDT                           TRANSP         Accounting Data (INDX Structure)                            
    RSDSQCAT                       TRANSP         Catalog of selection views                                  
    SADR                           TRANSP         Address Management: Company Data                            
    SKA1                           TRANSP         G/L Account Master (Chart of Accounts)                      
    SKAT                           TRANSP         G/L Account Master Record (Chart of Accounts: Description)  
    SKB1                           TRANSP         G/L account master (company code)                           
    T001                           TRANSP         Company Codes                                                                               
    T001G                          TRANSP         Company Code-Dependent Standard Texts                       
      T003                           TRANSP         Document Types                                              
      T005                           TRANSP         Countries                                                   
      T005S                          TRANSP         Taxes: Region (Province) Key                                
      T012                           TRANSP         House Banks                                                 
      T012A                          TRANSP         Allocation pmnt methods -> Bank trans.                      
      T012C                          TRANSP         Terms for bank transactions                                 
      T012K                          TRANSP         House Bank Accounts                                         
      T042E                          TRANSP         Company Code-Specific Specifications for Payment Methods    
      T042Z                          TRANSP         Payment Methods for Automatic Payment                       
      T045DTA                        TRANSP         DME file check table for bill of exchange presentation      
      T045F                          TRANSP         Bank selection for bill of exchange presentation            
      T045T                          TRANSP         User ID for bank transactions                               
      T055                           TRANSP         Field group fields (master data)                            
      T074U                          TRANSP         Special G/L Indicator Properties                            
      TBTCO                          TRANSP         Job Status Overview Table                                   
      TCURC                          TRANSP         Currency Codes                                              
      TFBWE                          TRANSP         Personal Customizing for Transaction FBWE                   
      TGSB                           TRANSP         Business Areas                                              
      TVDIR                          TRANSP         View Directory                                              
      USR01                          TRANSP         User master record (runtime data)

  • Crystal XI - Cannot see SQL Tables, View, Stored Procedures

    I have read a couple of similar posts but no answers.  I used to be able to see tables, view and stored procedures in Crystal XI, but suddenly I cannot.  I have spent days researching this, changing SQL security settings, checking options in Crystal, etc., etc., to no avail.  I really need an answer to this.  Does anyone know if I can call someone in support and give a credit card number for a one-time call? I don't have a support agreement.  Thank you in advance.

    Hi,
    In the data explorer, you can see the datasources such as oracle, sqlserver etc.. If you are using oracle then right click that one, you see options, a windowss opens you need to spectify the views, stored procedures etc..
    hope this helps

  • Which table holds the reserved stock

    Hi All,
    In report - MMBE there are two columns unrestricted stock and reserved stock. Can you kindly share how this reserved stock is calculated which table/field holds the reserved stock. If I run the MMBE report now if it is determining the reserved stock assuming it comes from RESB which holds reservations what field in RESB gives me the reserved stock and how many days or what logic does MMBE use to calculate the reserved stock.
    Thanks
    Karen

    hi KarenFarr  .. check out this tables
    Table MCHB ,  MSLB
    regards
    chinnaiya

  • Tables / views used by Forms

    Hello,
    I wanna know, is there any methos to find the tables and views used by a stand-alone application (e.g.Forms, reports). The idea is that i wanna "clean" the schema, in sense of there are VERY much unused tables, and i wanna know which tables/views are used and which not. I know, in case of stored procedures there exists 'Dependencies', but in this case?
    Thanks!

    Check this link i think this is doing the same thing u want http://www.amis.nl/files/technology/PracticalJDAPIpaper.doc
    * Example2:
    * This program loads the modules entered by the module names (or wildcard) at the 1st command line
    * parameter into the JDAPI Session and iterates over the blocks and items in the blocks, printing
    * all form-, block- and item names to the console.
    public class Example2  {
      public static void main(String[] args) {
        try {
          for (int i=0 ; i < args.length ; i++ ) {
            JdapiModule.openModule(args);
    invoke();
    finally {
    Jdapi.shutdown();
    private static void invoke() {
    for (JdapiIterator modules = Jdapi.getModules() ; modules.hasNext() ; ) {
    FormModule mod = (FormModule)(JdapiModule)modules.next();
    System.out.println("Form module = " + mod.getName());
    for (JdapiIterator blocks = mod.getBlocks() ; blocks.hasNext() ; ) {
    Block blk = (Block)blocks.next();
    System.out.println("\tBlock = " + blk.getName());
    for (JdapiIterator items = blk.getItems() ; items.hasNext() ; ) {
    Item itm = (Item)items.next();
    System.out.println("\t\tItem = " + itm.getName());
    Example 2 – Open one or more FMB files and traverse through all blocks and items
    Baig,
    [My Oracle Blog|http://baigsorcl.blogspot.com/]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Not showing tables, views, ... in vs2010

    Hi,
    I installed ODP.net + ODT (11i) for use with vs2010 & oracle 10.02.0010 (to be upgraded to oracle 11).
    The product installed just fine, I can connect to the database using ODP and ODBC.
    However, when connecting with ODP in vs2010 I can't see any tables, views or stored procedures (can't see anything really). When using ODBC, everything works: I see all the tables, views etc that are in the database, and I can query them.
    I also tried to execute a query using the ODP.net, and it gave me: ORA-00942: table or view does not exist.
    I did a search on the forums, but none of the solutions provided, changed anything for me.
    Does anyone have any ideas?
    Edited by: user13493229 on 18-mei-2011 11:05

    Hi,
    First of all, make sure you see "ODP.NET" in the connection dialog on Server Explorer.
    Next, check the "Filters" tab of the connection dialog. By default we block public synonyms and schema objects that you do not own.
    If you still can't see objects, then most likely your DBA has not given you enough privileges to use these tools.
    Try looking at the advice I gave in the following thread explaining how to turn on ODP.NET tracing. First look to see the SQL involved in the ORA-942.
    Then look at the other SQL we issue and see why you are not able to get any rows from it.
    vs2010 ORA-00942 table or view does not exist

Maybe you are looking for