SQL query to find out the version of discoverer

Hello
As a developer, is there a query sql DB the dorsal (or script) that can be run on DB to find out the version of Oracle Discoverer installed?
The query will be different if the discoverer is used with the Oracle Applications (R12.1.3) compared to a Scout running on a plain stand alone Oracle database (Oracle applications not)?

Thank you
GG.

Hello gg

The VER_NAME and the VER_DESCRIPTION are usually never filled and can be ignnored.

The VER_RELEASE is the NLY version as you rightly summised. This version is 100% compatible with the discoverer 11g and if you already have it you can go from 10g to 11g without changing anything in the EUL

VER_MIN_CODE_VER is the minimum version of Oracle Discoverer which can be used with this EUL. In this case, 10.1.2.45.20 is 10g Release 2

VER_EUL_TIMESTAMP is the date and time, this version of the EUL was published by Oracle - again you can ignore it

Important fields are VER_RELEASE and VER_MIN_CODE_VER

Hope this helps
Best wishes
Michael

Tags: Business Intelligence

Similar Questions

  • How can I find out the version of java, oracle has?

    How can I find out the version of java, as oracle has built?

    I have tried with...

    SELECT identifiant_composant, ComputerName, version
    OF dba_registry;

    "But I get..' table does not exist'."

    Thenks in advance!

    11 GR 2 includes Java version 1.5, according to the above link

    HTH
    Srini

  • SQl query to find out time between the different lines of transactions

    (See both images from an attachment to get the clear picture of the data and understand the question correctly.)

    I have a set of data like this in one of my paintings. (This is a simple representation of the original data.)

    Reference table1.jpg

    Id        | Type               | Value | Start_date | End_date

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

    ZTR0098 | ALLOW | 0 | 1 JUN | 2 JUN |

    ZTR0098 | ADTAX | 0 | 1 JUN | 2 JUN |

    ZTR0098 | MXTAX | 0 | 1 JUN | 9 JUN |

    ZTR0098 | ALLOW | 4. 3 JUN | 15 JUN |

    ZTR0098 | ADTAX | 44.00 | 3 JUN | 17-JUNE |

    ZTR0098 | MXTAX | 2. 10 JUN | 17-JUNE |

    ZTR0098 | ALLOW | 5. 16-JUNE | 20 JUN |

    ZTR0098 | ADTAX | 55,34 | 18 JUN | 22 JUN |

    ZTR0098 | MXTAX | 1. 18 JUN | 25 JUN |

    ZTR0098 | MXTAX | 6. 26 JUN | 31 AUG |

    ZTR0098 | ADTAX | 20.09. 23 JUN | 23 JUL |

    ZTR0098 | ALLOW | 8. 21 JUN | 31 AUG |

    ZTR0098 | ADTAX | 45. 24 JUL | 31 AUG |

    each line has a type and a rasthaus id to it. ID belongs to other parent tables. the value of each type is given, and the validity of each value is followed by a field start_date and end_date.

    All values start from 1 - JUN and expires on 31 - AUG. Now my requirement is to obtain a report that gives three columns for three different types (ALLOW, ADTAX and MXTAX) with combination of unique values in the effective time interval. Let me put the result below.

    Reference table2.jpg

    Id         | ALLOW | ADTAX | MXTAX |  Start_date | End_date

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

    ZTR0098 | 0 | 0 | 0 | 1 JUN | 2 JUN |

    ZTR0098 | 4. 44.00 | 0 | 3 JUN | 9 JUN |

    ZTR0098 | 4. 44.00 | 2. 10 JUN | 15 JUN |

    ZTR0098 | 5. 44.00 | 2. 16-JUNE | 17-JUNE |

    ZTR0098 | 5. 55,34 | 1. 18 JUN | 20 JUN |

    ZTR0098 | 8. 55,34 | 1. 21 JUN | 22 JUN |

    ZTR0098 | 8. 20.09. 1. 23 JUN | 25 JUN |

    ZTR0098 | 8. 20.09. 6. 26 JUN | 23 JUL |

    ZTR0098 | 8. 45. 6. 23 JUL | 31 AUG |

    As you can see there are no duplicate rows for a combination of (ALLOW, ADTAX and MXTAX) with their respective dates in force. resulting in the above table. the first step is to convert lines to the column which is pretty obvious to do that by grouping on start_date and end_date colum, but the real deal is the time interval during which the combination of the values (ALLOW, ADTAX, and MXTAX) has remained constant.

    I wrote under query using Group by.

    Select

    ID,

    NVL (max (decode (type, "ALLOW", value)), 0) as ALLOW

    NVL (max (decode (type, 'ADTAX', value)), 0) as ADTAX

    NVL (max (decode (type, 'MXTAX', value)), 0) as MXTAX

    Start_date,

    End_date

    from my_table

    Group of start_date, end_date, id

    start_date, end_date

    the results it gives are like this:

    Reference table3.jpg

    Id       | ALLOW | ADTAX | MXTAX |  Start_date | End_date

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

    ZTR0098 | 0 | 0 | 0 | 1 JUN | 2 JUN |

    ZTR0098 | 0 | 0 | 2. 1 JUN | 9 JUN |

    ZTR0098 | 4. 0 | 0 | 3 JUN | 15 JUN |

    ZTR0098 | 0 | 44.00 | 0 | 3 JUN | 17-JUNE |

    ZTR0098 | 0 | 0 | 2. 10 JUN | 17-JUNE |

    ZTR0098 | 5. 0 | 0 | 16-JUNE | 20 JUN |

    ZTR0098 | 0 | 55,34 | 0 | 18 JUN | 22 JUN |

    .   .

    . .

    like wise

    but I'm not able to determine the time intervals by using the SQL query.

    with

    Table1 as

    (select the id 'ZTR0098', 'ALLOW' type, 0 val, to_date('1-JUN','dd-MON') start_date, end_date Union to_date('2-JUN','dd-MON') double all the)

    Select 'ZTR0098', 'ADTAX', 0, to_date('1-JUN','dd-MON'), to_date('2-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'MXTAX', 0, to_date('1-JUN','dd-MON'), to_date('9-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'ALLOW', 4, to_date('3-JUN','dd-MON'), to_date('15-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'ADTAX', 44.00, to_date('3-JUN','dd-MON'), to_date('17-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'MXTAX', 2, to_date('10-JUN','dd-MON'), to_date('17-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'ALLOW', 5, to_date('16-JUN','dd-MON'), to_date('20-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'ADTAX', 55.34, to_date('18-JUN','dd-MON'), to_date('22-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'MXTAX', 1, to_date('18-JUN','dd-MON'), to_date('25-JUN','dd-MON') of all the double union

    Select 'ZTR0098', 'MXTAX', 6, to_date('26-JUN','dd-MON'), to_date('31-AUG','dd-MON') of all the double union

    Select 'ZTR0098', 'ADTAX', 20.09, to_date('23-JUN','dd-MON'), to_date('23-JUL','dd-MON') of all the double union

    Select 'ZTR0098', 'ALLOW', 8, to_date('21-JUN','dd-MON'), to_date('31-AUG','dd-MON') of all the double union

    Select 'ZTR0098', 'ADTAX', 45, to_date('24-JUL','dd-MON'), to_date('31-AUG','dd-MON') of the double

    ),

    days like

    (select level - 1 dte + to_date('1-JUN','dd-MON')

    of the double

    connect by level<= to_date('31-aug','dd-mon')="" -="" to_date('1-jun','dd-mon')="" +="">

    )

    Select id, allow, adtax, mxtax, min (dte) start_date, max (dte) end_date

    (select ID, dte, max (allow) allow, max (adtax) adtax, max (mxtax) mxtax,

    ROW_NUMBER() over (order by dte) row_number() - courses (partition by order max (allow), max (adtax), max (mxtax) by dte) gr

    go (select id, dte,

    -case when type = 'ALLOW' and dte between start_date and end_date then end val 0 otherwise allow.

    -case when type = "ADTAX" and dte between start_date and end_date then val 0 otherwise end adtax.

    -case when type = "MXTAX" and dte between start_date and end_date then val 0 otherwise end mxtax

    Table 1 t,

    days d

    where d.dte between t.start_date and t.end_date

    )

    Group by id, dte

    )

    Group by id, gr, allow, adtax, mxtax

    order by id, gr

    ID ALLOW ADTAX MXTAX START_DATE END_DATE
    ZTR0098 0 0 0 01/06/2015 02/06/2015
    ZTR0098 4 44 0 03/06/2015 09/06/2015
    ZTR0098 4 44 2 10/06/2015 15/06/2015
    ZTR0098 5 44 2 16/06/2015 17/06/2015
    ZTR0098 5 55,34 1 18/06/2015 20/06/2015
    ZTR0098 8 55,34 1 21/06/2015 22/06/2015
    ZTR0098 8 20.09 1 23/06/2015 25/06/2015
    ZTR0098 8 20.09 6 26/06/2015 23/07/2015
    ZTR0098 8 45 6 24/07/2015 31/08/2015

    Concerning

    Etbin

  • How can I find out the version of autoconfig?

    Hello
    I'm on 12.1.1

    determine my version autopatch I used Note 390666.1
    I ran

    SET head off lines 120 pages 100
    n_patch col A10 format
    numero_de_bogue col A10 format
    patch_name col A10 format
    coil LACF_ptch_level.txt
    Select 'APFC' FROM dual;
    /
    Select numero_de_bogue, decode (numero_de_bogue,
    ' 4494373 ',' R12. T2K. A'
    , ' 5872965 ',' R12. OAM. A'
    , ' 5909746 ',' R12. T2K. A.1'
    , ' 5917601 ',' R12. T2K. A.2'
    , ' 6077487 ',' R12. T2K. A.DELTA.3'
    , ' 6145693 ',' R12. RapidClone Jan2008 idiots '
    , ' 6776948 ',' R12. RapidClone CONSOLIDATED"
    ) n_patch, last_update_date
    Of ad_bugs
    WHERE numero_de_bogue IN ('4494373', '5872965', '5909746', '5917601', '6077487', 6145693', 6776948');

    the output has been


    4494373 R12. T2K. A 4 JANUARY 07
    4494373 R12. T2K. 22 JANUARY 08
    5872965 R12. OAM. A 22 OCTOBER 07
    5872965 R12. OAM. A 22 OCTOBER 07
    5909746 R12. T2K. A. 22 OCTOBER 07
    1

    5909746 R12. T2K. A. 21 JANUARY 08
    1

    5917601 R12. T2K. A. 22 OCTOBER 07
    2

    5917601 R12. T2K. A. 21 JANUARY 08
    2

    6077487 R12. T2K. A. 22 OCTOBER 07
    DELTA.3

    6077487 R12. T2K. A. 21 JANUARY 08
    DELTA.3

    6145693 R12. RAPIDC 6 November 08
    Only drawbacks
    Jan2008


    How can I know the version of the autoconfiguration of that service?

    Thank you

    Hello

    4494373 R12. T2K. A 4 JANUARY 07
    4494373 R12. T2K. 22 JANUARY 08
    5872965 R12. OAM. A 22 OCTOBER 07
    5872965 R12. OAM. A 22 OCTOBER 07
    5909746 R12. T2K. A. 22 OCTOBER 07
    5909746 R12. T2K. A. 21 JANUARY 08
    5917601 R12. T2K. A. 22 OCTOBER 07
    5917601 R12. T2K. A. 21 JANUARY 08
    6077487 R12. T2K. A. 22 OCTOBER 07
    6077487 R12. T2K. A. 21 JANUARY 08
    6145693 R12. RAPIDC 6 November 08

    How can I know the version of the autoconfiguration of that service?

    The foregoing indicates that the latest patches applied are 6077487 and 6145693.

    To find the latest patches AutoConfig and quick Clone on R12, please see:

    Note: 387859.1 - AutoConfig helps manage system Configurations in Oracle E-Business Suite Release 12
    Note: 406982.1 - cloning Oracle Applications V12 with rapid Clone

    Thank you
    Hussein

  • How to find out the Windows Update Agent version I am running

    Anyone know how I can find out which version of the Windows Update Agent I use?  I checked everything and no menu where only allows me to check the version.  This link http://support.microsoft.com/kb/949104 tell me how to get the latest version, but it is not to tell me how do I know if I am running on the latest version.
     
    And what makes it reset my of update windows components?  I read this link (http://support.microsoft.com/kb/971058#appliesto) and understand how to reset components, but I'm not clear on how this will affect my windows update.

    I have Windows Vista Home, SP2.

    Thank you very much!

    Ohanna Hello,

    Thank you for using the Microsoft answers Forums.

    Determine the current Version of WUA:

    Determine the version of Windows Update Agent (WUA) before using it. The current version of WUA is determined by the version of the c:\windows\system32\wuaueng.dll that runs in the current installation of Windows \System32 directory. If the c:\windows\system32\wuaueng.dll is version 5.4.3790.1000 or a later version, WUA is installed. A version earlier than 5.4.3790.1000 indicates that the Software Update Services (SUS) 1.0 is installed.

    When a call is made for SUS 1.0 using the API INTERFACE, an HRESULT of WU_E_AU_LEGACYSERVER is returned.

    You can also use the IWindowsUpdateAgentInfo::GetInfo method to retrieve the latest version of file of the c:\windows\system32\wuapi.dll that runs on a computer. The IWindowsUpdateAgentInfo interface is not supported in WUA 1.0.

    For more information, see update the Windows Update Agent.

    Thank you.

    UDAY $012 please let me know that whether the solution worked or not, I thank you and appreciate your comments.

  • SQL query to find the total number of source based nonsource passangersbetween source and destination station and passenger station on the same chekindate

    Hello

    SQL query to find the total number of source based nonsource passangersbetween source and destination station and passenger station on the same chekindate.

    Please help on this script and let me know if you need more details.

    ---

    You use a SELECT statement.  Let me know if you need more details.

  • How can I find out what version of Firefox I currently use?

    I use a website of electronic billing for some of my stuff. The site of billing is not compatible with Firefox 7.1. We were told to find out what version of Firefox that we use and if it is 7.1, it must reintegrate our last series of bills. Please notify. Thank you.

    in xp go to HELP then FIREFOX and you can see the word FIREFOX version.

    Thank you

    Please check 'Resolved' the answer really solve the problem, to help others with a similar problem.

  • How to find this value in the oracle database to find out the table

    Hi expert,

    I know there is a value in the oracle database, please show me how to find this value in the oracle database to find out the table that contains this value.

    Thank you very much

    918440 wrote:
    Hi expert,

    I know there is a value in the oracle database, please show me how to find this value in the oracle database to find out the table that contains this value.

    Thank you very much

    Go to the online documentation and discover the data dictionary. You may be interested in reading about ALL_TAB_COLUMNS, but you will need to know what you want until you can query the view to find information

  • How can I find out what version of firefox I use

    How can I find out what version of firefox I use

    https://support.Mozilla.org/en-us/KB/find-what-version-Firefox-you-are-using

    Left thread Firefox Android for Firefox section.

  • don't know how to find out the server for my email information.

    I had to reinstall Windows Vista (my computer was a mess), and now I don't know how to get information on the mail server

    I don't know how to find out the server information I need

    to set up my email again.

    Also, my pictures 'lost' since I have done this?

    Hello

    Contact your ISP (Internet Service Provider); They provide your broadband / dial connection.

    Ask them to:

    1. your username with them

    2. your password with them.

    3 incoming mail POP3 server.

    4. the outgoing mail SMTP server

    All the settings that you need to come from them, not Microsoft; and they are usually happy to help you set up your e-mail program.

    You can use this guide to set up Windows Mail, too:

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-mail-setting-up-an-account-from-start-to-finish

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    A relocation normally wipes the hard clean everything, as part of the resettlement process.

    Two things you can try:

    1. find a windows.old folder (depends how you reinstalled Vista)

    "How to restore your personal files after performing an installation of Windows Vista or Windows 7"

    http://support.Microsoft.com/kb/932912

    2. This program has had good results in data recovery in circumstances similar to yours.

    http://www.Piriform.com/Recuva

    See you soon.

  • How to find out which version of Adobe Reader is installed on the iPhone

    I can understand which version of Adobe Reader is installed on an iPhone?

    Hello

    To check the version of the Adobe Reader software on your iPhone/iPad

    1. Go to your iOS screen.
    2. Press settings.
    3. Scroll down to find Adobe Reader or Adobe Acrobat.
    4. Check the version number.

    I hope this helps.

  • SQL query to find the value of a column as well!

    Hi all

    I have to write a query that needs to retrieve the value of a column in table B if the column value is Null in the Table A. Please find below the sample table.

    Table A:
    *******
    EmpNumber ID
    ------------------------------
    1 12345
    2
    3 14789
    4
    5 74563

    Table B:
    *******
    EmpNumber ID
    -----------------------------
    1 12345
    2 78451
    3 14789
    4 12212
    5 74563

    In the table a second and third rows have value for EmpNumber. The query should look for table B for EmpNumber value. Please advise me to make this request.

    Thank you

    This?

    select      a.id,
         nvl(a.empnumber,b.empnumber) empnumber
    from tabA a, tabB b
    where a.id = b.id;
    
  • my laptop is stolen; I have the serial number of my Photoshop Elements, but do not remember what version; I now have Wondows 8.1. How can I find out which version to download and install?

    Sorry... title says it all. I had a Photoshop Elements 3.0 on the disc and have subsequently downloaded updates and was running an updated version on my laptop stolen with Windows 7.

    My account shows my serial number of Photoshop but not the version number which I forgot. I guess I can now re-download the version I've had - updated to run on Windows 8.1 but do not know which version to download.

    Contact Customer Support by chat or phone and they should be able to look at the history of your purchases.  You might even find it yourself if search you the different links in your account.

    Here is a link to a page with options to help make contact:

    http://www.Adobe.com/support/download-install/supportinfo/

    Support should be able to disable the software for your laptop stolen as well.

  • Very simple question about Mac and find out which version of the player

    Hi, really quick here for Mac or Mac users familiar question: How can I find which version of Reader is installed on a Mac? It should be of Mac OSX. I'm just so incompatible Mac (and the guy using it is not fine with it) and I don't know where to look?

    Thanks a bundle

    Mac does not come with Adobe Reader, they come with a program called Preview. The best way to know which version is on a given computer is to ask the owner! If the owner does not know that they can select the file and then on the file menu or by typing the command - I they can activate the command read information that will produce a window with the version information and much more.

  • How do I find out what version of the APP is supported by WebLogic

    The version of WebLogic, I used is 10.3.6.0. In order to use JPA2 instead of JPA1, I followed the guide says to set it manually by adding these lines in commEnv.cmd (programming Enterprise JavaBeans, 3.0 for Oracle WebLogic Server 11 g Release 1 10.3.6 Version):

    Set wls_modules = C:\Oracle\Middleware\modules
    Set PRE_CLASSPATH=%wls_modules%\javax.persistence_1.0.0.0_1-0-2.jar;%wls_modules%\com.oracle.jpa2support_1.0.0.0_2-1.jar

    Then I changed to TopLink Kodo on WebLogic console.

    Suddenly, I read "Java EE 6 support comes at WebLogic 10.3.4.0 on January 15, 2011" (http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg06874.html).

    I wonder if WebLogic 10.3.6 is already set to use default JPA2. We could easily answer if I knew how to see what JPA, JTA, EJB, or wherever the version of configuration are defined when the server is started. Where can I get this information?

    My understanding is that the situation in WebLogic 10.3.6 is quite the same as in earlier versions - it comes with the jars of JPA 2.0, but they are not enabled by default so that it can respond to the Java EE 5 compatibility requirements. This is mentioned in the documentation that you could see here: http://docs.oracle.com/cd/E23943_01/web.1111/e13852/toc.htm#BGGBIJBI
    and the docs to 10.3.5 here:
    http://docs.Oracle.com/CD/E21764_01/Web.1111/e13852/TOC.htm#NOTES149

    The link that you referenced says not 10.3.4 WebLogic's Java EE 6 compatible. The reference I think you got this from says that the com.oracle.jpa2support_1.0.0.0_2 - 0.jar is included for future compatibility of Java EE 6, but it is not enabled in 11.3.x so that there is Java EE 5 compatible. It is essentially delivered an overview of Java EE 6 components that are not enabled - only WebLogic 12 c is fully Java EE 6 compatible by default, which includes the JPA 2.0.

    Best regards
    Chris

Maybe you are looking for

  • A hard nine one disk-based restore HP mini 110

    Hello I need help to recover an HP mini 110 computer. The original HD was not able to start, and it seems that the user shares a lot of mistakes. I can only access the recovery Partition, the system part & the HP Tools partition. If I put a new HD in

  • Drive Blu - Ray won't remember Netflix login

    I just bought the: Sony BDPS790 Blu - ray player 3D with Wi - Fi, which cost me a small fortune ($250).I have only had it a few months, and already he has stopped to remember my Netflix login information. Now, I have to use the phone on my TV screen

  • To access the files on the network under windows 8 from Vista

    I have problems to connect to the Windows 8 computer from the vista computer to access shared files and folders. I have Setup local users on the computer of Windows 8 for the other 3 computers in the office.  When I go to the Windows vista computer,

  • Cannot access my new Canon mg2150 printer error message0x00000709

    I have windows 7. Windows won't allow my Cannon mg 2150 all in one printer to print. This is a new printer, I printed a test page after instalation, but it cannot make my default printer. old dell 948 has been uninstalled. Cannon said that the error

  • Configuration of Raid PowerEdge T420 script

    I have over 200 T420 servers to deploy. I need an automated solution to define the RAID parameters and bios in Imaging. I'm new to Dell servers and exhausted with the search for an answer. I normally deploy images very simply using MDT to PE in the H