Search for use of a database Package.

Apex 3.2

I recently moved a function of database on one package to another.

I've changed as much as I could in the application code, but I might have missed something.

Is it possible in the apex to search the entire application, to find where I used this function.

I tried to use the search (top-right in the report generator) function, but it doesn't seem to work.

I know this because, as a test, I let one of my tabs (terms) referring to the old package and

the search function has returned it.

Any help appreciated

Gus

I posted a query, we used to do this in 3.x in a previous thread: Re: How do I know in which elements, pages one function/procedure,... will serve as a?

It covers most of the places where a SQL or PL/SQL object may be referenced in APEX 3.x. (I think it was then extended to cover also the SQL and PL/SQL conditions on components. I don't work there anymore so I don't have access to the latest version.)

Run it from the application of the analysis of a schema in SQL Developer or the APEX SQL Workshop.

Tags: Database

Similar Questions

  • Can RoboHelp9 search for information from another database outside himself

    Hi experts,

    I just got the task of studying the search function of the RoboHelp if she could meet our needs:

    We want to have a RoboHelp 9 to host the Center contact information, and we already have two or three other database exist for different departments that contact center agents could connect to search for information.

    the question is:

    1. is it possible, after RoboHelp 9 created and configured, agents can search and retrieve information not only reside in RoboHelp but is also in other databases?

    2 is it possible that the public internet users could search for and retrieve information located in RoboHelp and other databases (allowing us to go)?

    Thank you very much in advance,

    Fran

    Not sure you mean by your last paragraph - you can check the blog post described in the help article - http://iconlogic.blogs.com/weblog/2011/02/adobe-robohelp-9-external-content-search.html#tp

    It is pretty cool (I don't use it myself in my projects because many of our customers are small internet); you could also add URLS to the search pages from external sites (such as a knowledge base) and let users make their own additional research.

  • In the context menu, I want to always search for using Google dot CA, not dot COM

    I already edited "keyword. URL"about: config that has failed to display the context menu when you highlight a term to search for and use the" Google search for...»

    This works for typing the search term directly in the URL address bar, but not research in the context menu.

    I have already selected Google. This example uses always dot com for the resulting search page that opens, I wanted to have it open with google dot ca.

    I just discovered this module of MyCroft Project

    Course to the bottom of this page, number 5, is the Google.ca search bar . Click on the previous link to add this engine to the FireFox search engines list (on the menu drop-down) went around, so I guess I solved my problem. See menu attached to capture. I hope this helps someone else, as it took me a while to find. It was not found in the standard modules, you can find the usual Mozilla several pages of Add-ons

  • search for a matching value database

    An existing database stores the results of a test like col 1 "Serial number" col 2 date etc.

    There is now an obligation of search on the serial number and to display the results associated with it (lines).

    I have the set of database tools and have begun using the vi SQL to retrieve the serial number from several Ref recordset. I'm at the point where I now need select the line corresponding to this Ref number but I was wondering if it would be better to read in the database in a table and then make a search on the serial number text search pass, get the table row where matches occur and then display the lines , or is this road very long-winded and should stick with the SQL vi?

    Thank you

    Jack

    The query SELECT * FROM tablename WHERE Serial_number = "0002" would return the entire row for each occurrence of serial number 0002. If you wanted only to pass the results, the query is SELECT * FROM tablename WHERE Serial_number = '0002' AND Status = 'Pass '.

    Do not use the column names with spaces in them!

    I've seen many references to SQL online, and there are books available. I don't have that I could recommend, however. I learned using SQL Server and a SQL expert in our IT Department

  • Search for reviews in the database objects

    Hello

    I want to search a view allows to call "view_xyz" in my database and now I want to search my entire database where I used this point of view.
    In fact, I want to do what I'm going to change the name of this point of view, so I'm looking for where ever it is used...
    Any suggestions how do slove this problem...

    Thank you!!

    Thanks Jens.

    Good to know.

    Kind regards.

    LOULOU.

  • Help-ColdFusion - allowing a user search for records in a database by entering a startand end date - (CREATEODBCDATE)

    I want to allow a user to enter a beginning date and to set the period they want to find records of members who have joined some end dates. Funny, it is... I got half of the working time. For example I have 4 folders between 26/10/2005 and 01/08/2006. When I enter 01/01/2005 as startDate and endDate 31/08/2006, I get 4 records. However, if I change the endDate to 09/01/2006 I get all records in the database! ??? Why is this? I can't get my head around it!

    Here is my code:
    First the code for the form for the user to input search criteria on:

    < html >
    < body >
    < action = "FORM memberJDateSearch.cfm" method = "post" > "

    < P > start date: < input type = "text" name = "startDate" >
    < br > End Date: < input type = "text" name = "endDate" >
    < input type is 'reset' value is 'Clear' >
    < input type = "submit" value = "Submit" >
    < / MAKE >

    < / body >
    < / html >

    Pretty simple. Now, the code of the page process and display:

    < html >
    < body >


    < cfquery "memberJDateSearch" datasource = name = access "jpkelle2" >
    SELECT *.
    Members
    WHERE ((joinDate BETWEEN #CreateODBCDate (startDate) # AND #CreateODBCDate (endDate) #))

    < / cfquery >

    < table border = 1 bgcolor = "beige" cellpadding = '3' cellspacing = "0" >
    < b >
    < /Th > < th > Member ID
    Name < th > < /th >
    Sex < th > < /th >
    < th > Birth Date < /th >
    Address < th > < /th >
    < th > Email < /th >
    Date < th > joined < /th >
    < /tr >




    < CFOUTPUT Query = "memberJDateSearch" >

    < b >
    < td > < center > #memberID # < Center > < table >
    < td width = "15" > #forename # #initial # #surname # < table >
    < td > #sex # < table >
    < td width = "10%" > #disp('#dob#') # < table >
    < td > #address #, #town #, #county #, #postCode # < table >
    < td > #email # < table >
    < td width = "10%" > #disp('#joinDate#') # < table >
    < /tr >




    < / CFOUTPUT >

    < /table >

    < hr > < p > end of the list of members. < /p >

    < / body >
    < / html >


    any ideas? Please help me.

    Try formatting your dates first (before the call to CreateODBCDate). I just tried this on my test page and it worked correctly. I removed calls DateFormat, now dates in your format, and it didn't work. See if something like the following will help you:




    SELECT *.
    Members
    WHERE ((joinDate BETWEEN #CreateODBCDate (startDate) # AND #CreateODBCDate (endDate) #))

  • the search for 'v' block Explorer

    When I try to search for using the letter "V" as the first letter, or being the only letter used for the search, windows crashes and a window appear saying that windows Explorer has stopped working. then the holder windows flashes and as if it restarts the windows as I just entered it after starting upwards.

    It doesn't matter if I start with the letter 'V' or write another letter, then 'V' and then earase the letter. Once the 'V' is only the Explorer accidents.

    The Explorer does not really crushed! He just said. and I have to do the following to find a file that begins with 'V': I-iv-viv-> vi > >...

    What is the problem and how can I solve this problem?

    Hello

    Windows Search does not work or research are slower
    http://support.Microsoft.com/GP/windows_search

    Troubleshooting Windows Vista search & indexing errors
    http://www.WinVistaClub.com/T24.html

    Reconstruction of the Index in Windows Vista
    http://www.howtogeek.com/HOWTO/Windows-Vista/rebuilding-the-search-index-in-Windows-Vista/
    How to enable or disable the search Index in Vista
    http://www.Vistax64.com/tutorials/69564-index-enable-disable.html
    Improve Windows searches using the index: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/improve-Windows-searches-using-the-index-frequently-asked-questions

    ================================

    Tips for finding files
    http://Windows.Microsoft.com/en-us/Windows-Vista/tips-for-finding-files

    How to use advanced search in Vista Options
    http://www.Vistax64.com/tutorials/75451-advanced-search.html

    How to restore the page button on the Start Menu after installing Vista SP1
    http://www.Vistax64.com/tutorials/145787-Search-start-menu-button-restore-after-SP1.html

    How to restore the context Menu item search after installing Vista SP1
    http://www.Vistax64.com/tutorials/134065-search-context-menu-item-restore-after-Vista-SP1.html

    How to create a shortcut on the desktop search in Vista
    http://www.Vistax64.com/tutorials/126499-search-desktop-shortcut.html

    ----------------------------------------------------------

    Win Key F opens advanced search

    Searching in Windows Vista, part 1
    http://Windows.Microsoft.com/en-us/Windows-Vista/searching-in-Windows-Vista-part-1-secrets-of-the-search-box

    Part 2
    http://Windows.Microsoft.com/en-us/Windows-Vista/searching-in-Windows-Vista-part-2-Start-menu-and-control-panel-search-tips

    Part 3
    http://Windows.Microsoft.com/en-us/Windows-Vista/searching-in-Windows-Vista-part-3-using-advanced-search-for-those-hard-to-find-files

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Search for information using Multi-SCORM Packager

    The title pretty much everything said.  I'm looking for a good reference on how to use Multi-SCORM Packager.

    Thank you.

    Jay

    How to package multiple SCOs using Adobe Multi-SCORM Packager

  • Search for a specific column to a large database entry

    So our program manager approached me today looking for the combination of the specific table/column and its referential integrity that contains several entries in the column with the value 'AMSA.

    Our database has 4000 + tables so I'll try to track down one by one to which table has these entries, but does anyone know a quick search for this tool?

    Hello

    Will you please check the following and whether it is useful and important, wort can be run in your target database.

    With the following query, you would be able to get the "select" statements to find in each table. column, at the entrance of the AMSA.

    WITH CANDIDATE_TABLES
    AS
    (SELECT OWNER, TABLE_NAME, COLUMN_NAME, DATA_TYPE, DATA_LENGTH
    FROM DBA_TAB_COLUMNS
    WHERE OWNER IN ('OWNER1') /*  <<<<<<<<<< PUT ALL SCHEMAS, COMMA SEPARATED >>>>>>>>   */
    AND (DATA_TYPE LIKE '%CHAR%' AND DATA_LENGTH > 3) /* because AMSA has more than 3 chars*/
    AND TABLE_NAME NOT LIKE 'BIN$%$0'
    AND (OWNER,TABLE_NAME) NOT IN (SELECT OWNER,TABLE_NAME FROM DBA_TABLES WHERE TEMPORARY='Y' UNION SELECT OWNER,TABLE_NAME FROM DBA_EXTERNAL_TABLES)
    )
    SELECT 'SELECT /*+ PARALLEL(4) */ '||''''||OWNER||'|'||TABLE_NAME||'|'||COLUMN_NAME||''''||' AS OWNER_TABLE_COLUMN'||
    ' FROM '||OWNER||'.'||TABLE_NAME||' WHERE INSTR(UPPER('||COLUMN_NAME||'),'||''''||'AMSA'||''''||',1) > 0 AND ROWNUM < 2 UNION ALL' STMT
    FROM CANDIDATE_TABLES C
    ;
    

    The query above returns phrases such as:

    SELECT /*+ PARALLEL(4) */ 'OWNER1|TABLE1|COLUMN1' AS OWNER_TABLE_COLUMN FROM OWNER1.TABLE1 WHERE INSTR(UPPER(COLUMN1),'AMSA',1) > 0 AND ROWNUM < 2 UNION ALL
    SELECT /*+ PARALLEL(4) */ 'OWNER1|TABLE1|COLUMN2' AS OWNER_TABLE_COLUMN FROM OWNER1.TABLE1 WHERE INSTR(UPPER(COLUMN2),'AMSA',1) > 0 AND ROWNUM < 2 UNION ALL  <<>>
    

    Note: Remove the last "UNION ALL"

    When the final query is complete, the final result is as follows (a reel in a file):

    OWNER1|TABLE1|COLUMN1
    OWNER1|TABLE1|COLUMN2
    ....
    ....
    OWNERX|TABLEX|COLUMNX
    

    Ensure that phrases using in parallel and could be dangerous for a transactional database. First, do a little test.

    Spool the output to a file.

    Kind regards

    Juan M

  • Need help with search for mdb using DW in ASP.

    Hello

    I'm trying to put in place a db on a Web site search tool using mdb and dw in ASP. have THEY put in place. Tested OK. Have used ms help pages (printed some) and the DW 8 missing manual to:

    Configure and test a connection string to a database and it is fine.

    Set up to search with a single parameter and it tests OK.

    Configure the results page and it tests OK too.

    I can display the search page and the results page by using the toolbar search engine address and local host by IIS installation and this is very good.

    Unfortunately, when I test the search page and use a proper search for the db password, the results page displays very well with the titles of the table, but no data. I am highly dependent on the ease of DW and I'm not much on the code.

    I tried a lot of different things, but there are so many possibilities! I tried GET and POST. I think that the problem is either in the original report send the form data to the server, the mdb data collection or data display in the final table, although it's conjecture. It covers almost all areas. Also I don't know if "repeat" in the table may have something to do with it.

    If anyone can help me with some general ideas on how I can be able to go forward. I was at this point for about a week.

    Thank you very much in anticipation

    OK, you're text field is named "textfield", but the query string you are testing for is called "search". They must be named the same.

    " size="30">

    rsSearch__MMColParam = Request.QueryString ("search")

    I don't know why you are populating the form field with a value of query string. The value does not exist because there is no field named "search". And the sending of the form (EEG) is what creates the query string that uses the results page.

    Rename the textfield object in your 'Search' form and it should work.

  • whenever I type in the google box to search for each letter i firefox type which application I would like to use to open this file, this is so embarrassing, how to stop this?

    whenever I type in the google box to search for each letter i firefox type which application I would like to use to open this file, this is so embarrassing, how to stop this?

    You are welcome

    Can you tell us which extension caused your problem?

  • I have a new time capsule airport. How to limit the search for who can use the time capsule backup process?

    I have a new time capsule airport. How to limit the search for who can use the time capsule backup process?

    Set a password to disk... disk tab in the utility... and just give to those you want to use the TC...

  • How can I use a different search for FlexRIO i/o modules path?

    I want to use an i/o module that is outside the tree of LabVIEW, but it seems that LabVIEW only searches the shared/flexrio/IO modules, and I can't understand how to create symbolic links in windows.

    Is there a variable I can put it somewhere to include other directories to search for modules e/s?

    Olof

    Hello, Olaf,

    There are two locations on your computer in Windows that are searched for files of supported FlexRIO adapt module.  The first is the Program Files directory, you indicated in your message. This directory contains the support files for the NOR made adaptation modules.  However, there is another directory, which can be used for the location of all the modules not - NEITHER adapter manufactured.  For Windows XP, this location is: C:\Documents and Settings\All Users\Documents\National Instruments\FlexRIO\IO Modules.  If you try to install support for a manufactured non - adaptation module, please make sure that you have installed all the files in the module adapter support on this issue.

    If you would like more information regarding a custom adapter module development, please send an email to support to the addresses listed in your Module Development Kit manual.  This e-mail address will give you direct access to the NI FlexRIO R & D team for management as shown here.  If you want to discuss adding the ability to search other directories for adapter module support (except the two mentioned above), please send an email to the email address of support MDK.

  • What can I use to search for a Microsoft has agreed to AGP Pro graphics card to make a visible improvement on my computer screen?

    I have an ASUS computer (actually it's a DIY chassis and motherboard ASUS with CD/DVD player and it is a real improvement over what I used, but I want to upgrade a NVidia 6200 AGPto graphics card of PRO for an improvement in Visual acuity and a cleaner profile.) Most computer retail online places like Comp-USA sell all these PCI cards and same NEW EGG does not list Pro AGP card. So while I'm looking I thought why not find a "Microsoft approved" AGP card?

    Hello

    Step 1: You may need to search the drivers updated through windows update.

    See: http://www.update.microsoft.com/microsoftupdate/v6/vistadefault.aspx?ln=en-us

    Step 2: otherwise, you may need to search for drivers by using your favorite search engine.

    DISCLAIMER of THIRD PARTY SOFTWARE: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

  • How can I use windows search to search for pdf files containing a specific word?

    I have a folder with several pdf files. When I use windows search for a word that I know exists in one of the files, I get no results. It does not work when I use the content: either.

    How can I use windows search to search for pdf files containing a specific word?

    Do I need to install something to activate search within .pdf?

    If you use Win7 32 bit, the iFilter is bundled with Acrobat Reader 9. On Win7 64-bit, you will need to install it separately.

    http://www.Adobe.com/support/downloads/detail.jsp?ftpID=4025

    Peter

Maybe you are looking for

  • Skype emails in Hebrew...?

    Hello I created a french account a long time ago. However, since I was in Israel in may 2014, all the emails I get from Skype are now in Hebrew... Can you help me fix this? Thank you

  • Installer msi Skype 7.0.0.102

    I would like to have a link to download the 7.0.0.102.msi installer. Thank you and best regards, Roy

  • to repair or recover the sistem and sistem restore tools

    Hello im Carlos and I have problems whit sistem restore because sistem tools is missing what can I do to fix

  • Windows 7 start button

    On my PC the window of my button Windows 7 start keeps on popping up without be invited at irregular but frequent intervals.  How can I stop this please?

  • Print driver for NEC SuperScript 1400 for Windows 7

    Anyone know how I could get a print driver for a laser printer from NEC SuperScript 1400 for Windows 7?  NEC no longer supports it and the printer fine but incompatible with our new computer system.  As it sits, it is an anchor point.  Any help is ap