Retrieve all source database object names from an application in APEX 4.0

Hello
I have completed an application developed in APEX 4.0 ( @Oracle 10g database ).
Now we need to migrate the scripts including all database objects that support the application from Schema A to Schema B.
Is there a report I can run to provide me the information like this :
Page number, Name of the database object used ( including table, view and sequence )
This would allow me to examine each database object used in Schema A and make sure the same object and data have been copied to Schema B without missing anything.
Thanks
Susanna

Hi,
On APEX 4.1 there is Database Object Dependencies Report
http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/bldr_app_rpt.htm#CEGGAICH
I'm not sure is this feature in APEX 4.0
Regards,
Jari
http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0

Similar Messages

  • Fm or metod that retrieve the lock object name from the table name

    HI ALL,
    there is FM or method that retrieve the lock object name from the table name ?
    Best regards
    Nina

    CALL FUNCTION 'ENQUEUE_REPORT'            
    EXPORTING                                
    gclient                     = sy-mandt   
    gname                       = 'RCTMV'         "Table Name
      GTARG                       = ' '       
      GUNAME                      = SY-UNAME  
    IMPORTING                                 
      number                      =           
      SUBRC                       =           
      TABLES                                  
        enq                         =  lt_seqg3
    EXCEPTIONS                               
       communication_failure       = 1        
       system_failure              = 2        
       OTHERS                      = 3

  • What is maximum  length of oracle database objects name

    Hi all,
    Can anyone tell me what is maximum length of oracle database objects name .
    I guess it is 30 ,correct me if i am wrong thank you.
    regards,
    P Prakash

    Some objects (like synonyms or java classes) can have longer names than 30 chars:
    SQL> create or replace synonym empempempempempempempempempempempempemp for emp
    Synonym created.though internally oracle will generate short names for such objects:
    SQL> select synonym_name from user_synonyms where synonym_name like '%EMPEMPEM%'
    SYNONYM_NAME                 
    /969ea190_EMPEMPEMPEMPEMPEMPEM
    1 row selected.and not always will the long name be actually usable:
    SQL> select * from empempempempempempempempempempempempemp
    Error at line 1
    ORA-00972: identifier is too long

  • Validation of database object names

    Hello. I need a function that can check whether a given string is a valid database object name. For example:
    IsValid('col1') -> Yes
    IsValid('col 1') -> No
    IsValid('1col') -> No
    Is there any build in the Oracle or does anyone have such an UDF?
    Thank is advance.

    You can use the wildly inappropriately named comma_to_table procedure. It checks the name and generates an exception if it is not valid.
    SQL> var s varchar2(30)
    SQL> exec :s := 'col1'
    PL/SQL procedure successfully completed.
    SQL> declare
      2    u dbms_utility.uncl_array;
      3    n pls_integer;
      4  begin
      5    dbms_utility.comma_to_table(:s,n,u);
      6    dbms_output.put_line ('Valid:   ' || :s);
      7  exception
      8    when others then
      9      dbms_output.put_line ('Invalid: ' || :s);
    10  end;
    11  /
    Valid:   col1
    PL/SQL procedure successfully completed.
    SQL> exec :s := '1col'
    PL/SQL procedure successfully completed.
    SQL> /
    Invalid: 1col
    PL/SQL procedure successfully completed.
    SQL> exec :s := 'test'
    PL/SQL procedure successfully completed.
    SQL> /
    Valid:   test
    PL/SQL procedure successfully completed.
    SQL> exec :s := 'test@'
    PL/SQL procedure successfully completed.
    SQL> /
    Invalid: test@
    PL/SQL procedure successfully completed.
    SQL>

  • How to get the List of Database Objects (Table/View) for a given APEX Page.

    Hi,
    I have an application and that consist of pages like page1,2,3,.....
    *1.* I want a report which can give me the list of all the Pages1,2,3,....
    I am using the following query to acheive this.... THIS IS FINE..
    select a.workspace, a.owner, a.application_name, b.page_id, b.page_name
      from apex_applications a,
           apex_application_pages b
    where a.workspace = b.workspace
       and a.application_id = b.application_id*2. Now, I want for each individual page*, the list all the database objects (tables/views), which that page is using.
    I am using ALL_DEPENDENCIES , but I am not getting the result.
    So, want to know if there any view/table, where I can get the Application Pages & there database object list...
    Thanks,
    Deepak

    Hari,
    Thanks for the response.
    The view APEX_APPLICATION_PAGE_DB_ITEMS will only give me the table name related to any Page Items defined to that page..It will not give me all the database objects..
    suppose we have a Page, having a report based on multiple tables and there is no Page items defined on that page, we will not have any value in this ....DB_ITEMS table. same thing if we have define some PL|SQL(using some table/view) in a Process, that will not be populated in .....DB_ITEMS table. I want some thing like all the database objects (table/views/function/procedure/.....) for a particular Page ID.
    Thanks,
    Deepak

  • Help finding OS-level database object names

    Hello all...
    I need to perform an online reorganization of some tables on my QAS system.
    However, some of the tables have more than 8 characters on SAP and I need to know what's the corresponding object name on the database library at OS level, so I can use the RGZPFM command.
    Could you please let me know how to find out the object's name?
    I can't find that information on SE14 or SE11...
    Thanks
    Antonio

    Hi Antonio,
    I always use the following SQL:
    SELECT SYSTEM_TABLE_NAME, TABLE_NAME 
      FROM r3t01data/systables           
      WHERE                              
        table_name like 'MAR%'           
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.com http://www.4soi.de http://www.easymarketplace.de

  • Fully qualified database object names

    Is there a method to determine the fully qualified name of a database object such as a table or procedure? At the moment I compute this from the catalog and schema identifiers but I am hoping there is a more direct way.
    Thanks,
    KP

    give an example for what u r looking for.
    which DB ?For example, a Sybase table named "table1" in a schema "dbo" in database "db1" has a fully qualified name of "db1.dbo.table1". I am trying to find a way to do this in a database-independent way. It's not as simple as concatenating the 3 elements together because you have to take into consideration the fact that the database may not use schemas or databases or both etc. I am hoping there is a method or a series of methods that return this information.
    KP

  • How to retrieve the fully qualified domain name from the IP Address?

    Hi,
    How can i retrieve the commplete host name along with the domain name (something like x.y.com) of a server?
    I tried using the InetAddress.getHostName(), getCanonicalHostName(), etc but it retrieves me only the host name (only x in x.y.com)
    Is there a way to solve ?
    Thanx and Regards
    Biju Nair

    getInetAddress() of Socket Class will return the remote IP address in a InetAddress object.
    Use the object with the getCanonicalHostName() of InetAddress class.
    I may be wrong though. Cheers!

  • Published UPK files change Object Names from "Options" to "Guiliani says De

    When we published our UPK files to our server, the Object Name of the captured object from whatever innocuous name such as "Options" or "Manufacturer" or "Driving Directions" to "Guiliana says Dems won't say 'Islamic Terrorist'" or in UPK ITSELF, even thought the screen is correct the Object Name in the developer UPK was changed to "Fred Thompson" which the developer did NOT do, and one object name was changed to Rasheed something, someone's name.
    When we demo our simulations, it looks like the training team does this, but we do not. It happens after the sims are uploaded to our server.
    What gives?

    Great resource John T.
    Thanks,
    Hunt

  • Database Object names

    just curious, since we all know objects names longer then 30 characters are never needed and even more, it is risky and bad to allow it, when oracle will change mysql object names and cut it to 30 characters ?
    Ikrischer

    Ikrischer wrote:
    Actually, we don't all know it. There was quite a lively discussion here some time back, started by someone who tried to make the case for going the other way .. change oracle to allow even longer object names. that was me, I tried to be ironic in this post since oracle company now got a dbms with obejct names longer then the magic and holy border of 30 characters.
    Then you need to get a life. Look at everything that is going on in the world and ask yourself where this non-problem rates on the scale. The first time you brought it up I chalked it up to an intellectual discussion, even if somewhat pointless and obtuse. To bring it up again tells more about you than it does about Oracle.
    Not in our lifetime the real question is, if mysql is working well with names longer then 30 characters, why oracle has a problem with it ?
    Ikrischer

  • How to get the SQL Primary and Mirrored Database Server Name from Witness Server

    Hello,
                    Can Someone help me with the way to get SQL Primary and Mirrored server name from Witness server?
    Any Powershell script/SQL Query..etc or share the alternative?
    Regards,
    Julie

    select principal_server_name,mirror_server_name,* from sys.database_mirroring_witnesses
    -Prashanth

  • Getting an Infocube name from Appset / Application ID

    Hi,
       I am working on BPC 7.0 NW version and trying to read infocube technical name from Appset id and application ID in the BADI. Can anyone help me on the same.
    Regards,
    meiy

    Hello,
    The best way to do this is to use the UJ class model.
    data:
        lo_model type ref to if_uj_model,
        lo_application type ref to if_uja_application_data,
        ls_app_info type uja_s_appl_info.
    cl_uj_model=>get_model( exporting i_appset_id = i_appset_id
                                               receiving ro_model = lo_model ).
    lo_application =  lo_model->get_appl_data( exporting i_application_id = i_appl_id ).
    call method lo_application->get_application_info
         exporting i_application_id = i_appl_id
         importing es_appl_info = ls_app_info.     
    Once you have ls_app_info simply reference the infocube property of that structure to determine the infocube name.
    Hope this helps.
    Cheers, Scott

  • How to view all tables and column names from a remote database

    Hey Guys,
    I have a database in a remote server. I have the db link and the schema name.. Now i want to view all the tables in the remote database with column names.. I dont have access to that database using sql developer.. But i can view some tables using the db link..Is there any way i can view all the tables with the column names?

    user10683742 wrote:
    Dont think i have DBA access..It gives the following error
    ORA-00942: table or view does not exist
    00942. 00000 - "table or view does not exist"You don't have to have 'dba' access, per se. You just have to have SELECT ALL TABLES privilege. when you use a db_link, you are connecting to the remote db with the user defined in the link, and .. on that db .. you will have the privileges of the user defined in the db link. Exactly as if you had used sqlplus to connect to that db with that user.

  • Retrieving Object Names from a WEBI report

    Hello,
    I have to couple of Webi reports assigned to an universe. Can anyone tell me if there is a option to get the different universe objects, which are used in each Webi report query via JSP. I couldn't find a helpful method in the BusinessObjects Enterprise Web Services API, which would prodive this function.
    Please provide steps to follow how could I get these used objects.
    Thanks in advance,
    David

    I found a solution for my problem:
    http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/e06b823c-cc66-2b10-2f94-8d3151c2b4a4

  • BPM object names from JDeveloper

    Hi All,
    I'm developing BPM 10.3.1.0 JSP pages in JDeveloper 11.1.1.2.0, rather than using the rather clunky presentation/screen flow designer.
    I'm editing the JSP tags in JDeveloper and am having to manually add in the attribute names of my BPM objects. This isn't great as it's slow and my typing isn't good thus causing some RTEs.
    Does anyone know how to either import the BPM Object into JDeveloper so it can be dragged and dropped from, say, the JDeveloper Component Palette (just like the JSP tags), or some other more ingeneous way of building the JSP page without having to remember the BPM object attributes and manually key them in?
    ...or am I consigned to the long-promised BPM 11g?
    I've hunted this forum and the docs but can't put my finger on this answer to this one.
    Many thanks in advance.
    Yours lazily,
    Phil.

    I found a solution for my problem:
    http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/e06b823c-cc66-2b10-2f94-8d3151c2b4a4

Maybe you are looking for