How to determine exact level of XE

I need to download the JDBC Driver. I can tell my version is 10.2.0 from the directory name in the product install, but when choosing a driver you need to know one more digit, for instance 10.2.0.4 or 10.2.0.3. How do I get that?

XE is tagged as 10.2.0.1, but it isn't directly equivalent to the Standard/Enterprise editions 10.2.0.1
I'd always go with the latest version of a driver as they should be backwardly compatible with older versions of the database.

Similar Messages

  • How to determine the level Of FRBs

    Hi All
    Can anybody tell me how to determine the level of profit center ( FRBs)
    in SAP. I mean for example that how will i find out the level the level of
    FRBs in the table BSIS.

    Below query will help
    select Serverproperty('productlevel'),
    Serverproperty('productversion'),
    Serverproperty('edition')
    The last column will show you edition which will confirm whether it is enterprise ,standard,evaluation or express
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • How to Determine the levels of a cube in SQL

    Hi i know to determine the no of cubes we could use
    select * from all_cubes
    and its dimensions we use
    select * from All_cube_dimensions
    how do we determine the levels of a dimension??

    I speak better French. So you can translate with google.
    L'astuce que j'utilise est la suivante :
    1 - Extraire les données, un select
    2 - Enregistrer les données dans un fichiers txt ou csv
    3 - ouvrir le fichier avec excel
    4 - créer une colonne à gauche de la colonne contenant les données et écrire INSERT INTO TABLE VALUES (
    5 - dans la colonne de droite écrire *)*
    6 - enregistrer et tu as ton script pour transférer les données dans une autre BD.
    Bonne chance.

  • How to determine purity level

    Hi everybody!
    Oracle determines purity levels of each stored procedure/function during validation/compilation. We can also set it "manually" by using pragma_restrict declarations.
    For certain dynamic maintenance processes we need to know the situation...
    Where is it stored? Is there a simple way to query it from some system view rather than to try executing "select my_function(my_arguments) from dual" and encount "ORA-06571: Function MY_FUNCTION does not guarantee not to update database"
    I have searched for some for the answer. However have not discovered any easy way to determine (query) it.
    Any suggestions are welcome, thanks in advance...
    Jaan

    Lately 10g. (in some places still 9 and even 8)
    However I have noticed that pragma RESTRICT_REFERENCES is still supported - you can make a function what in origin was able to manipulate table data to become "readonly"... Different from earier versions Oracle is able to determine purity of code by itself and we don't have to tell it any more...
    But that isn't me concern. I just want to have simple solution to retrive from Oracle information whether one or another plsql function is usable in SQL statement or not. It's obvious that Oracle "knows" it. Just want to know where it holds this information.
    Trying "select my_func from dual" seems to be too expensive workaround...

  • How to determine Grid level type of an installation (POD)?

    Hi everybody!
    I am working on a report that should maintain the point of delivery in installations (IS-U).
    With this task, I'm having trouble to determine the grid level type of the installation, which I need to select the grid that is assigned to the adress of the installation in EADRSTRTGRID_NEW.
    The valid grid level types are maintained in table EGRIDLT but unfortunately, I could not find any connection to the installation exept for via the devision category? Any suggestions?
    Thanks a lot for your help, kind regards, Kathrin!

    Hi,
    Table EUIGRID has fields POD and GRID. I hope you have POD to select grid from this table.
    Regards,
    Sunil

  • How to determine J2EE patch level

    If I go to the CMD prompt running the Dispatcher, I can enter "version" and the > prompt and get the following:
    SAP J2EE Engine Version 6.20 PatchLevel 78993.20
    How does this patch level translate to patch levels 6 throuch 32 on service.sap.com/patches?
    Thanks in advance.

    Hi Gary,
    you can mark your question as self solved to show other users that this toppic has been solved.
    Regards
    Gregor

  • 11i: How to determine current CU level?

    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".
    Thx.
    Don

    903322 wrote:
    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".SQL> select release_name
    from fnd_product_groups;
    https://forums.oracle.com/forums/search.jspa?threadID=&q=RELEASE_NAME+AND+fnd_product_groups&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    From the application: Help > About
    Thanks,
    Hussein

  • How to determine Default Table Logging (log data changes )

    Does anyone know how to view exactly what tables and related data fields have change logging enabled by default? I know that some of the standard reports will produce "edit reports" show who changed what field, when ,old and new values, etc, but I don't know how to determine where the data is retrieved from.
    For example: If I look in the ABAP Dictionary at table LFA1, technical settings, it shows that log data changes is not "checked" or enabled. But if I run the standard AR Master Data Change Report, I get output showing valid field changes.
    I have seen other threads that refer to SCU3 but I can't determine the above this from report.
    Any assistance would be greatly appreciated.

    Hi Arthur,
    As far as I am aware, these are 2 different things. 
    There is table logging which is at the table level & if activated (i.e. it's listed in table DD0LV, PROTOKOLL=X and the table logging parameter is set in the system profile/s).
    The second one is programatical logging for change documents when data is maintained though a program that has been written to include a log.  I'm not sure how to identify a complete lit of these though unfortunately.
    Hope that is of some assistance.

  • How to determine the type of the jobject... similar to instanceof

    hi,
    I would like to know how to determine the jobject reference of an instance is of which class.
    this is something similar to instanceof we use in java.
    is there any thing like 'instanceof' in JNI. if there how to use it?
    i got this as objective question for which answers were(i do not remember exactly)
    1.instanceof
    2.assignedto
    i could nt het much help in googling.
    thanks in advance

    Hi
    The JNI provides a native version to the java instanceof operator, this function takes two arguments
    an object refrence and a class refrence and reports JNI_TRUE.
    jclass myclass = env->FindClass("your class name");
    if(env->IsInstanceOf(obj,myclass) == JNI_TRUE)
    // obj is of type myclass
    }Regards
    pradish

  • How to implement row level security?

    Hi all,
    There is a database which is for 3 companies to use it and how to use row level security to make sure that they can only manipluate their own data? For example, "employee" table, for each company they just can see their own employees information. How to use dynamic view to do it?
    Many Thanks
    Amy

    Here are two options to achieve what you want.
    A. You can do this by coding, that's if you are ready to. Are you? If yes then try the steps below:
    1. create a security codes table. Say for example
    001 - company a
    002 - company b
    2. create a security table that will list all users and which company they should have access to. You can also implement this by roles.
    3. alter all tables in the application schema to add a security code column. This will be a foreign key reference to table created in 1 above.
    4. update all data in the tables according to which company they belong to.
    5. write a procedure or package that does a validity check whenever a user requests for data. This procedure/package determines which company data the user has access/rights to.
    With this, you should be able to achieve what you want if you do not want to spend on VPD and FGAC. The problem comes where there are users who would have cross access to data from both companies. In this regard, then you have to modify your security table a little bit to handle this.
    B. This option i will admit is not so clean. You can also achieve this by two different views for every table in the application schema. And on each of these views, create a private synonym for every user. For illustration purposes:
    Table name = Employee.
    Create a view employee_a on employee
    create a view employee_b on employee
    Let's say you have users x and y. X has access to employees of company a and y has access to employees of company b. You can now create private synonyms for each of these users as follows:
    create synonym employee on employee_a in x schema.
    create synonym employee on employee_b on y schema.
    This i have not tried but believe should work.
    Hope one of these options serve your purpose.

  • How to determine the IPS throughput using Cisco ASA 5500 IPS Solution?

    Hello there!
    I´ve been desinging a solution to protect de Server Farm and I intend to use the ASA 5500 series with AIP-SSM module. There´s any tool to determine the real throughput that I need? I mean, how to determine the performance (Firewall + IPS  throughput), what main points I should consinder?

    If the server farm is running production levels of traffic today you can get statistics off a variety of networking devices passing the existing traffic. Switches, routers and firewalls all count every byte of traffic they pass. There are plenty of tools that can gather this traffic into tables via SNMP too, such as MRTG.
    Do not average your traffic over too great a time peroid, you will miss busy hour peaks. At most, use 5 min averages.
    - Bob

  • How to determine the patch number used (installed using runInstaller)

    Whilst it easy to find the patch number installed using opatch by using the lsinventory argument.
    Is there a way to find patch number for a patch applied via runInstalled?
    META-INF/MANIFEST.MF from platform/iam-platform-kernel.jar,gives the following:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 19.1-b02 (Sun Microsystems Inc.)
    Product-Version: 11.1.1.3.0
    Build-Number: 11.1.1.3.0.0.0
    Built-By: aime1
    Build-Tag: Build_11.1_1_3.0_0_0
    Built-at: 05/02/2011 06:46
    Version: 11.1.1.3.0
    Build-Label: IAM_11.1.1.5.0_GENERIC_110502.0500
    Build-Transaction: NONE
    But I need the exact patch number, eg, p1234567.
    Anyone know where to find this information?
    The system has been patched from 11.1.1.3 to 11.1.1.5
    I am looking for the patches used for WLS, SOA and OIM.
    Regards
    Hanif

    Another way to get it is:
    SELECT XSD_CODE,XSD_VALUE FROM dev_oim.XSD WHERE xsd_code='XL_ADE_LABEL';
    Check Note: 1247564.1 for 11.1.1.3 and 1360009.1 for 11.1.1.5 for builds to patch mapping. Check Note:1299977.1 for how to determine build numbers.
    For WLS you can use: http://docs.oracle.com/cd/E13222_01/wls/docs81/admin_ref/clic.html
    For OIM as mentioned above
    For SOA: $mw_home\Oracle_SOA\bin\soaversion.cmd (or soaversion.sh) to know the SOA version or
    SELECT version, status, owner FROM schema_version_registry where owner = 'DEV_SOAINFRA';-Bikash

  • How to determine the u2018equivalent position of the same organizationu2019?

    Hi,
    "Position change is a transfer from one position to an equivalent position within the same org reporting structure and under the same chief position"
    How to determine the u2018equivalent position of the same organizationu2019?
    Cheers.

    u can identity the position with help of the Holder
    say for ex: A is the holder of the Position for Executive now the user performent an event called change of position so he changed to Manager (here we can find the chageing on the basis of some parameter so i have taken holder as Parameter as we dont know which has changed or wht has changed)
    in this case we can use the report   RHDESC20  se38
    not an exact solution for ur question
    will try to find some other way

  • How to provide page-level security..

    HI,
    I have a requirnment that a single report having multiple pages is generated such that each or some of the pages have security tags that are compared to a security identifier list of a particular user that acts as a security clearance for that user. How to do this programatically.
    Through this comparison, a subset of pages from the report is formed which makes up a "report" from the user's point of view that contains only data the user is allowed to see. This allows multiple users to view only authorized portions of a single report having page-level security determined by level breaks in the data.How to do this also programatically.
    including both the task is one requirnment. if any one know how to do this using java program or xml, please reply as soon as possible.
    thanks in advance.

    How does you post have anything to do with SQLJ/JDBC? If this is an Oracle Report then post it to the Oracle Reports forum. Otherwise, look at the JDeveloper forum.

  • How to create down level stage transparency?

    I tryed everything.....

    Hi Marcin,
    As far I know, the functionality of entering down payment in header will not allow you to post the DPR at header level, it has been given an option to enter the DPR as against at line item level available before.
    Looking from a logical point of view, if a PO has more than one line item then then how to determine against which item the DPR has been entered, there may be line items with different delivery dates say one line item requires a down payment to be made, and the other doesn't and also it may come in much before than the item against which the DPR has been made, then it will be a mess for Finance to decide whether to pay for this item or balance the invoice against DPR.
    Regards
    Chandra Shekhar

Maybe you are looking for

  • Images displayed in Labview do not stay synchronized across multiple frames

    Hello, I'm a little new of a poster, but a long time lurker. I'd like to thank everyone that answers here for all of the questions that I have previously read and from which I have learned so much. I am creating an Labview FPGA based solution in Labv

  • Recon Account Error

    Dear experts I am facing the problem while posting Billing Document it ius giving the error for GL account  411004  that is Service tax payable A/c System giving the error message as bellow Account 411004 in company code 1000 is not a reconciliation

  • How can we hide the link "Attachment" in the preview of a Task??

    Hi all I have requirement in portal CE 7.1 as follows. all GP tasks are getting displayed in UWL that is fine. i want to hide the link "Attachment" in the preview of a Task?? once i open the task from UWL then that task item opens in new window where

  • Table VBKD update

    Hi Experts, I am useing VBKD-INCO1 - Incoterms (part 1)                    VBKD-INCO2 - Incoterms (part 2)                     VBKD-ZTERM - Terms of payment key for some of my report.In VBAP there are suppose 4 line item but in VBKD there is only one

  • Moving Library causing Deletions?

    I've been reading through posts here and it looks like maybe there is a problem with the new iTunes upgrade. But I don't know if it is the same problem I just had. I have an intel Mac Mini with 10.5.4 connected by firewire to a non-intel Mac Mini wit