How to query Oracle Testing ID???

Dear all
i lost my Oracle Testing ID
and how to get???

user5548654 wrote:
Dear all
i lost my Oracle Testing ID
and how to get???When did you last take an (Oracle) exam ?
Assuming it was since sept 2009.
Visit here: Gotot My account and folllow - forgot username:
.... or if that fails go here:
Get together all the information about yourself, contact details, exam details, email address at the last time of registration.
If your exam was through Prometric the same applied to them.
As a last resort try here:
http://education.oracle.com/pls/eval-eddap-dcd/OU_SUPPORT_OCP.home?p_source=OCP

Similar Messages

  • How to query Oracle OLAP cube?

    Does ODP.NET support querying a cube in Oracle? Does it support the MDX syntax?
    If ODP .NET does not support it, which other library does?
    Thanks,
    Yash

    Simba Technologies provides a MDX provider for Oracle OLAP.
    http://simba.com/evaluate-MDX-Provider-for-Oracle-OLAP.htm
    Watch a video on how to use Microsoft Excel with the MDX provider for Oracle OLAP.
    http://download.oracle.com/otndocs/products/warehouse/olap/videos/excel_olap_demo/Excel_Demo_for_Web.html
    If you have a requirement for specifically using ODP.NET with Oracle OLAP, let me know: alex.keh (at) oracle.com.

  • How to query uncommited transactions

    Hi Does anyone know how to query Oracle database from SQL*Plus to view uncommitted transactions?
    Thanks

    I noticed after I posted that I had used a package I found on the web called list that includes several useful functions. So in case someone wants it, here are the package and body:
    ***PACKAGE***
    CREATE OR REPLACE PACKAGE list AUTHID CURRENT_USER IS
    -- All of these functions and procedures have the following parameters:
    -- list_in - A delimited list to be parsed.
    -- delimiter - The delimiter to be used for parsing the list. Defaults
    -- to a comma.
    -- null_item - What to do with null items in the list. A null item is created
    -- by consecutive occurances of the delimiter. Valid values are
    -- 'KEEP' to allow items in the list to be null, or 'SKIP' to ignore
    -- null items, ie. treat consecutive occurances of delimiters as a
    -- single delimiter. The default is 'KEEP'.
    -- delimiter_use - How the delimiter is to be interpreted. Valid values are
    -- 'ANY' to treat the entire delimiter string as a single occurance
    -- of a delimiter which must be matched exactly, or 'ANY' to treat
    -- the delimiter string as a set of single character delimiters, any
    -- of which is a delimiter. The default is 'ANY'.
    -- Return the first item in a list.
    FUNCTION head(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (head,WNDS,WNPS);
    -- Return the remainder of a list after the first item and its delimiter.
    FUNCTION tail(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (tail,WNDS,WNPS);
    -- Return the nth item in a list.
    -- The parameter, item_num, denotes which item to return.
    FUNCTION item(
    list_in IN VARCHAR2,
    item_num IN INTEGER DEFAULT 1,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (item,WNDS);
    -- Append an item to a list and return the new list.
    -- The parameter, item_in, contains the new item to append.
    FUNCTION append_item(
    list_in IN VARCHAR2,
    item_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (append_item,WNDS);
    -- Return the number of items in a list.
    FUNCTION num_items(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN INTEGER;
    PRAGMA RESTRICT_REFERENCES (num_items,WNDS);
    -- Search a list for an item, and give its location in the list,
    -- or zero IF not found.
    -- The parameter, item_in, gives the item to be found in the list.
    FUNCTION in_list(
    list_in IN VARCHAR2,
    item_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN INTEGER;
    PRAGMA RESTRICT_REFERENCES (in_list,WNDS);
    -- Convert an array to a delimited list.
    -- The array to be input is a DBMS_UTILITY.uncl_array so that
    -- the LIST package is compatible with the comma_to_table and
    -- table_to_comma built ins.
    -- In this function, delimiter is always treated as a single
    -- string.
    FUNCTION array_to_list(
    array_in IN DBMS_UTILITY.UNCL_ARRAY,
    arrlen_in IN INTEGER,
    delimiter IN VARCHAR2 DEFAULT ',') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (array_to_list,WNDS,WNPS);
    -- Print a list using DBMS_OUTPUT.
    PROCEDURE print_list(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY');
    -- Convert a list to an array and return the array and its size.
    -- This is a procedure because it returns more than one value.
    -- The array to be returned is a DBMS_UTILITY.uncl_array so that
    -- the LIST package is compatible with the comma_to_table and
    -- table_to_comma built ins.
    PROCEDURE list_to_array(
    list_in IN VARCHAR2,
    arrlen OUT BINARY_INTEGER,
    array_out OUT DBMS_UTILITY.uncl_array,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY');
    -- Sort a list
    -- Null items are always skipped when sorting lists, since they would sort
    -- to the end of the list anyway. CMPFNC is the name of a function to compare
    -- two items. The default of '>' sorts in ascending order, '<' in descending order.
    -- If you write your own function to be used for sorting, it must:
    -- 1. Take two parameters of type VARCHAR2
    -- 2. Return an INTEGER
    -- 3. Return a negative number if the first item is to sort lower than
    -- the second, a zero if they are to sort as if equal, or a positive
    -- number if the first item is to sort higher than the second.
    -- 4. Be executable by the user running the sort. Normal naming rules apply.
    FUNCTION sort_list(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    cmpfnc IN VARCHAR2 DEFAULT '>',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2;
    PRAGMA RESTRICT_REFERENCES (sort_list,WNDS);
    end;
    ***END PACKAGE SPEC***
    ***BEGIN BODY***
    CREATE OR REPLACE PACKAGE BODY list IS
    current_list VARCHAR2(32760) DEFAULT '';
    current_delim VARCHAR2(30) DEFAULT ',';
    TYPE list_array IS TABLE OF VARCHAR2(2000)
    INDEX BY BINARY_INTEGER;
    current_array list_array;
    current_arrlen BINARY_INTEGER DEFAULT 0;
    current_null_item VARCHAR2(4) DEFAULT '';
    current_delimiter_use VARCHAR2(3) DEFAULT '';
    -- Find the first delimiter.
    FUNCTION find_delimiter(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN BINARY_INTEGER IS
    delimiter_loc BINARY_INTEGER;
    BEGIN
    IF upper(delimiter_use) = 'ALL' THEN
    delimiter_loc := INSTR(list_in,delimiter);
    ELSIF upper(delimiter_use) = 'ANY' THEN
    delimiter_loc := INSTR(TRANSLATE(list_in,delimiter,ltrim(RPAD(' ',LENGTH(delimiter)+1,CHR(31)))),CHR(31));
    END IF;
    RETURN delimiter_loc;
    END find_delimiter;
    -- Return the first item in a list.
    FUNCTION head(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2 IS
    delimiter_loc BINARY_INTEGER;
    BEGIN
    delimiter_loc := find_delimiter(list_in,delimiter,null_item,delimiter_use);
    IF delimiter_loc > 1 THEN
    RETURN SUBSTR(list_in,1,delimiter_loc-1);
    ELSIF delimiter_loc = 1 THEN
    RETURN NULL;
    ELSE
    RETURN list_in;
    END IF;
    END head;
    -- Return the remainder of a list after the first item and its delimiter.
    FUNCTION tail(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2 IS
    start_ch BINARY_INTEGER;
    BEGIN
    start_ch := find_delimiter(list_in,delimiter,null_item,delimiter_use);
    IF start_ch = 0 THEN
    RETURN NULL;
    ELSE
    IF upper(delimiter_use) = 'ALL' THEN
    start_ch := start_ch + LENGTH(delimiter);
    ELSE
    start_ch := start_ch + 1;
    END IF;
    IF start_ch > LENGTH(list_in) THEN
    RETURN NULL;
    ELSE
    RETURN SUBSTR(list_in,start_ch);
    END IF;
    END IF;
    END tail;
    -- Convert a list to an array.
    PROCEDURE parse_list(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') IS
    list_to_parse VARCHAR2(32760);
    BEGIN
    IF list_in = current_list AND
    delimiter = current_delim AND
    null_item = current_null_item AND
    delimiter_use = current_delimiter_use THEN
    NULL;
    ELSE
    current_list := list_in;
    current_delim := delimiter;
    current_null_item := upper(null_item);
    current_delimiter_use := upper(delimiter_use);
    list_to_parse := list_in;
    current_arrlen := 0;
    WHILE list_to_parse IS NOT NULL LOOP
    IF current_null_item <> 'SKIP' OR
    head(list_to_parse,delimiter,null_item,delimiter_use) IS NOT NULL THEN
    current_arrlen := current_arrlen + 1;
    current_array(current_arrlen) := SUBSTR(head(list_to_parse,delimiter,null_item,delimiter_use),1,2000);
    END IF;
    list_to_parse := tail(list_to_parse, delimiter,null_item,delimiter_use);
    END LOOP;
    END IF;
    END parse_list;
    -- Convert a list to an array and return the array and its size.
    PROCEDURE list_to_array(
    list_in IN VARCHAR2,
    arrlen OUT BINARY_INTEGER,
    array_out OUT DBMS_UTILITY.uncl_array,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') IS
    BEGIN
    parse_list(list_in,delimiter,null_item,delimiter_use);
    arrlen := current_arrlen;
    FOR i IN 1..arrlen LOOP
    array_out(i) := SUBSTR(current_array(i),1,240);
    END LOOP;
    END list_to_array;
    -- Print a list using DBMS_OUTPUT.
    PROCEDURE print_list(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') IS
    BEGIN
    DBMS_OUTPUT.ENABLE(100000);
    parse_list(list_in,delimiter,null_item,delimiter_use);
    FOR i IN 1..current_arrlen LOOP
    dbms_output.put_line(SUBSTR(current_array(i),1,240));
    END LOOP;
    END print_list;
    -- Return the number of items in a list.
    FUNCTION num_items(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN INTEGER is
    BEGIN
    parse_list(list_in,delimiter,null_item,delimiter_use);
    RETURN current_arrlen;
    END num_items;
    -- Return the nth item in a list.
    FUNCTION item(
    list_in IN VARCHAR2,
    item_num IN INTEGER DEFAULT 1,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2 is
    BEGIN
    parse_list(list_in,delimiter,null_item,delimiter_use);
    IF item_num NOT BETWEEN 1 AND current_arrlen THEN
    RETURN NULL;
    ELSE
    RETURN current_array(item_num);
    END IF;
    END item;
    -- Append an item to a list and return the new list.
    -- The parameter, item_in, contains the new item to append.
    FUNCTION append_item(
    list_in IN VARCHAR2,
    item_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',') RETURN VARCHAR2 IS
    BEGIN
    IF list_in IS NULL THEN
    RETURN item_in;
    ELSE
    RETURN list_in || delimiter || item_in;
    END IF;
    END append_item;
    -- Search a list for an item, and give its location in the list,
    -- or zero IF not found.
    FUNCTION in_list(
    list_in IN VARCHAR2,
    item_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    null_item IN VARCHAR2 DEFAULT 'KEEP',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN INTEGER is
    BEGIN
    parse_list(list_in,delimiter,null_item,delimiter_use);
    FOR item_num IN 1..current_arrlen LOOP
    IF current_array(item_num) = item_in THEN
    RETURN item_num;
    END IF;
    END LOOP;
    RETURN 0;
    END in_list;
    -- Convert an array to a delimited list.
    FUNCTION array_to_list(
    array_in IN DBMS_UTILITY.UNCL_ARRAY,
    arrlen_in IN INTEGER,
    delimiter IN VARCHAR2 DEFAULT ',') RETURN VARCHAR2 IS
    list_out VARCHAR2(32760):= '';
    BEGIN
    FOR item_num IN 1 .. arrlen_in LOOP
    EXIT WHEN LENGTH(list_out) +
    LENGTH(array_in(item_num)) > 32760;
    list_out := list_out||array_in(item_num);
    IF item_num < arrlen_in THEN
    list_out := list_out||delimiter;
    END IF;
    END LOOP;
    RETURN list_out;
    END array_to_list;
    -- Sort a list
    FUNCTION sort_list(
    list_in IN VARCHAR2,
    delimiter IN VARCHAR2 DEFAULT ',',
    cmpFnc IN VARCHAR2 DEFAULT '>',
    delimiter_use IN VARCHAR2 DEFAULT 'ANY') RETURN VARCHAR2 IS
    temp_array list_array;
    temp_len PLS_INTEGER := 0;
    temp_item VARCHAR2(2000);
    list_out VARCHAR2(32760);
    PROCEDURE swap (
    first_item IN OUT VARCHAR2,
    second_item IN OUT VARCHAR2) IS
    temp_item VARCHAR2(2000);
    BEGIN
    temp_item := first_item;
    first_item := second_item;
    second_item := temp_item;
    END swap;
    FUNCTION cmp (
    first_item IN VARCHAR2,
    second_item IN VARCHAR2,
    cmpfnc IN VARCHAR2 DEFAULT '=') RETURN INTEGER IS
    return_value INTEGER;
    BEGIN
    IF cmpfnc = '>' THEN
    IF first_item < second_item THEN
    return_value := -1;
    ELSIF first_item = second_item THEN
    return_value := 0;
    ELSIF first_item > second_item THEN
    return_value := 1;
    END IF;
    ELSIF cmpfnc = '<' THEN
    IF first_item > second_item THEN
    return_value := -1;
    ELSIF first_item = second_item THEN
    return_value := 0;
    ELSIF first_item < second_item THEN
    return_value := 1;
    END IF;
    ELSE
    EXECUTE IMMEDIATE 'BEGIN :I := '||cmpfnc||'(:A,:B); END;'
    USING OUT return_value, IN first_item, IN second_item;
    END IF;
    RETURN return_value;
    END cmp;
    BEGIN
    parse_list(list_in,delimiter,'SKIP',delimiter_use);
    FOR item_num IN 1..current_arrlen LOOP
    temp_item := current_array(item_num);
    FOR i IN 1..temp_len LOOP
    IF cmp(temp_array(i),temp_item,cmpfnc) > 0 THEN
    swap(temp_array(i),temp_item);
    END IF;
    END LOOP;
    temp_len := temp_len + 1;
    temp_array(temp_len) := temp_item;
    END LOOP;
    FOR item_num IN 1..temp_len LOOP
    EXIT WHEN LENGTH(list_out) +
    LENGTH(temp_array(item_num)) > 32760;
    list_out := list_out||temp_array(item_num);
    IF item_num < temp_len THEN
    list_out := list_out||delimiter;
    END IF;
    END LOOP;
    RETURN list_out;
    END sort_list;
    END;
    *** END BODY***
    Carl

  • How much pain does registering two Oracle Testing Id Cause to everyone?

    Reading the forum over the last 8 months or so seems apparent to me that if a candidate has two (or more!) Oracle Testing Id's and takes exams under both then problems will result as certifications will not be generated untill all pre-requisite passes are under the same Oracle Testing Id. (For those having taken exams under Prometric their Oracle Testing Id has been set to their old Prometric Id.)
    the pain this caused in the old Prometric days is mentioned on the Oracle Certification Blogs Here [http://blogs.oracle.com/certification/2008/09/one_plus_one_zero_when_it_come.html] (dont follow the procedure there .. its out of date).
    The procedure for sorting this still remains a merge, however now through Pearson VUE. The procedure is not directly on Support FAQs [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=82#5Q1A] though would indirectly be covered by (I have not received my success kit what do I do?). The procedure required is however authoratively mentioned at {message:id=3923313}. However as can be seen in the rest of the thread {thread:id=991553} there appears to be occasions when some Pearson Personnel VUE appear to not realise they are responsible for initiating the merge and sometimes the merge man may be on holiday (or maybe off on stress through the number of merge's perhaps?)
    Thus the candidate with two Oracle Testing Id's has a possibility (maybe even likelihood) of pain further down the line in getting it sorted. But as far as I am aware it is usually sorted ... though it may take a while. Pain to Candidate.
    Oracle and Pearson VUE have pain through this as well. There is a support cost dealing with the Oracle Testing Id Merge. Not just in authenticating and performing the merge but also when the query comes as a problem but the root cause is found to be multiple Oracle Testing Ids. While this does give support teams an opportunity to perform the net effect is increased costs for Oracle/Pearson VUE - which means reduced profits or perhaps more likely increased exam costs for everyone - in other words a pain for everyone.
    Basically no one wins on this.
    Why does it happen? I'll exclude why people have had multiple Prometric Id's (Oracle Testing Id's) for exams taken under Prometric. What was done under Prometric has been done.
    However under Pearson VUE why might this happen?
    If I start off at the linke [http://www.pearsonvue.com/Oracle] - Click on My Account - then the Link Create a new web account a form is presented:
    The key part of this form is in the Previous Testing History Frame :
    Please provide the following information.
         Have you tested with Oracle Certification Program before?
         (*) No, this will be my first time testing with Oracle Certification Program.
         (*) Yes, I have tested with Oracle Certification Program before.
               Enter your Oracle Testing ID, if available:If people answer NO to this question and subsequently then need/request an Oracle Testing Id Merge in my opinion they should be charged for this. This is a blatant mistruth. I suspect some people may rush to get regsitered and take the exam and or care about the registration details; or are happy for it to be sorted afterwards rather than getting the Oracle Testing Id. Sorted now.
    HOWEVER:
    - There needs to be a further email just in case they has the wrong button selected by mistake, so after registering the fact there has been no oracle testing needs to be confirmed. I believe, because of form design, there may be a signifcant chance of this happening.
    - There also needs to be indications that if two Pearson VUE Oracle Accounts have been created then subsequently different exams have been passed on each then merging will incur a cost. This is just slopiness by the registrant.
    If the people answer yes; but make a mistake in the Oracle Testing Id, they hopefully that would be picked up.
    IF people answer yes, but leave the Oracle Testing Id blank, hopefully Pearson is on top of getting it sorted and not let the issue propogate. The effects of leaving this blank as unclear to me, and I hope good procedures are in place for handling it.
    There is also IMHO a big issue here that it is not obvious from this page that canididates should enter their old Prometic Testing Id here.
    +++++++++++++++++++++++++++
    In summary I believe people having mulitple Oracle Testing Id's hurts us all, and to prevent this I would suggest a charge for merge where a candidate have incorrectly siad they have not done Oracle Testing before and where they have a had clear chance to correct this in the event the relevant form radio button has flipped without them noticing.
    But I also believe Pearson VUE could probably do a couple of minor changes to procedures, pages and boilerplates to reduce the chances of problems occuring. I think some problems could be stopped before they start.
    Notes:
    (1) Any pages referenced are by myself from UK at time of post. Sometimes from other countries they can be different

    I'd just like to add to this that one poster {message:id=4029960} appears not to have given a Oracle Testing ID when registering with Pearson VUE and that Pearson VUE appears to have located it for him. I assume he indicated he had tested previously and presumably his profile details matched those held by Oracle from Prometric. This appears to be a single (unverified) instance of this working correctly; and the candidate not ending up with multiple Oracle Testing Ids'.

  • How to do the testing in Oracle SOA suite 11g

    Hi,
    Could any one plz provide the info abt " How to prepare the Test Suite(Test cases) in oracle soa 10g/11g ". Information provided that is been related to real time scenarios is much appreciated.
    Thanks in advance,
    Venu

    Hi,
    Check whether this doc:
    http://docs.oracle.com/cd/E21764_01/integration.1111/e10224/bp_testsuite.htm
    and this blog can help you:
    http://biemond.blogspot.com/2009/07/unit-test-your-composite-application.html
    hth,
    Peter Paul

  • How to export test cases into oracle test manager

    hi
    present i am learning this tool help plz
    how to export test cases into oracle test manager
    Edited by: 799636 on Oct 5, 2010 7:11 AM

    Create a script in openScript and save it to a workspace (a shared directory on the OTM server). To add an Oracle OpenScript test to OTM:
    1.Select the Tests tab.
    2.Click the Add button.
    3.Enter a name for the test.
    4.Select Oracle OpenScript in the Type field.
    5.Click Find to display the Select Script dialog box.
    6.Select the Repository and Workspace.
    7.Select the Oracle OpenScript script that you want to add.
    8.Click OK.
    9.Select the owner and priority and enter any descriptive information in the Functionality and Description fields.
    10.Click Save.
    Regards,
    Jamie

  • How to up Oracle server test database

    Before we have a oracle test server database The boot folder or location of this server is located at v240 and the drives are located at m4000. After server had been shutdown. We were unable to connect to the server thru ping, telnet and ssh. May I ask if there is a way to up the test server database. Kindly give us instruction on how to do it.
    Thanks

    Try to connect to console through the ALOM interface and check the network interface.

  • How to istall oracle forms service and oracle reports service and testing

    How to istall oracle forms service and oracle reports service ?
    and we can make test?

    How to istall oracle forms service and oracle reports service ?http://download.oracle.com/docs/cd/B19375_07/doc/frs/docs.htm
    and we can make test?Once installed, there is a test program both for Forms and Reports... or you mean something else ? if so, please clarify.

  • How to debug Oracle VPD Security Query?

    Hi,
    I have implemented vpd.
    But I want to see what query Oracle is generating in back end while I am applying a simple select statement on the table.
    I have searched in V$SQL, V$SQLAREA, it is not there.
    So where I have to see?
    Thanks,
    Sunil Jena
    Edited by: 990324 on Feb 27, 2013 6:06 AM

    It sounds like you want to look at v$vpd_policy. The PREDICATE column will show you each predicate that has been applied by VPD to a particular SQL_ID and the POLICY column will tell you which policy applied that predicate.
    Justin

  • Oracle Test Manager - Repository query

    Hi,
    I wanted some clarification and some help.
    I presume the default repository in OTM is pointing to the the C Drive (i.e. where all my OFT file structure is stored). When I check the Path it says ./OFT/ but when I try to create a new reporsitory, it allows me to paste the path I want but the file Path shows as C:\OracleATS\OFT\OATS92_EBS_115102_TSK. Is this a wrong structure? Also it does not allow the Test scrip to run, giving me this error message
    "oracle.oats.jagent.exception.FataljavaAgentException: unable to create stand alone databank provider"
    Regards,
    Manisha

    Hi JB,
    further to my previous reply, what I have noticed it that whatever changes I do to my scripts in the client PC are not reflected in the repository which is stored in Server.
    The scenario is like this:
    I have the Oracle Test Manager stored in my Server from where I can access my repository. I have Network shared the Drive (C Drive) where all my OFT filing structure is with my Client PC.
    On my Client PC I have Open script installed and It's here I create all my scripts. So any changed I make here are saved on the shared network drive.
    On my Server when I look at those scripts they are showing exactly as i can see on my client PC, so my scripts are fine. But when I try to pick one of my Scripts from the default repository they are not the same. Hence I am wondering if my Default repository is different to the File Structure on the C drive on my Server. Is it possible to share/amend the default repository.
    I hope you can resolve this issue.
    Regards,
    Manisha

  • How to query an ordinary xml

    I have an xml and I want to query for a particular sub element within it. I can't find any help on this in any of the documentation. All I find is the getVariableData but it can only query on xml that is defined to have part names. How to query on an ordinary xml that doesn't have any part defined? For example I want to query for USERNAME in the xml:
    <ServiceBean_Header simpleType="false">
    <USERNAME>SYSADMIN</USERNAME>
    <PASSWORD>SYSADMIN</PASSWORD>
    <RESPONSIBILITY_NAME>System Administrator</RESPONSIBILITY_NAME>
    <RESPONSIBILITY_APPL_NAME>SYSADMIN</RESPONSIBILITY_APPL_NAME>
    <SECURITY_GROUP_NAME>STANDARD</SECURITY_GROUP_NAME>
    <NLS_LANGUAGE>AMERICAN</NLS_LANGUAGE>
    </ServiceBean_Header>

    If the DOM you have was produced using the Oracle XML Developers Kit (XDK) then you can issue XPath statements against it using "selectSingleNode" and "selectNodes".
    import java.io.FileReader;
    import oracle.xml.parser.v2.DOMParser;
    import oracle.xml.parser.v2.XMLDocument;
    import org.w3c.dom.Node;
    public class Test {
        public static void main(String[] args) throws Exception {
          FileReader reader = new FileReader("YOUR_XML.xml");
          DOMParser parser = new DOMParser();
          parser.parse(reader);
          XMLDocument xmlDocument = parser.getDocument();
          Node resultNode = xmlDocument.selectSingleNode("ServiceBean_Header/USERNAME/text()");
          System.out.println(resultNode.getNodeValue());
    }-Blaise

  • How to install Oracle FM Forms 11g on client system.

    Problem 1.
    I have an weblogic server installed on a server, now i have to install oracle Forms 11g in client system. its ask me weblogic server path whatever i try, its ask weblogic on client. what is the solution how installation of Oracle 11g form connect with weblogic server."
    Problem 2.
    i have install 64-bit OS windows 7.
    1. I Installed JDK 6 (64bit).
    2. Installed Weblogic Server. (its work fine)
    3. Now i m installing Oracle forms 11g 64(-bit). its show me an error (INST-07407: Unable to detect machine platform or JVM bits)
    please help me out. waiting for your positive reply.

    3. Now i m installing Oracle forms 11g 64(-bit). its show me an error (INST-07407: Unable to detect machine platform or JVM bits)It looks like you are installing the 32-bit version of Oracle Fusion Middleware (FMw) 11g - not the 64-bit version. As a test, install the 32-bit JRE and run the FMw installer again. If it continues past this point - you've got the 32-bit installer and not the 64-bit installer. :)
    Craig...

  • Looking for a simple example of how to query all the accounts

    I'm new to the web service model in oracle crm and have been trying to just get a list of the accounts in the system. I generated a .cs class from the account wsdl and added it to my asp.net project. I'm able to get a handle on the account class but not sure the right syntax to make a call out.. As a fyi - i also have been able to login thru the service and obtain a session id.. so I'm that far..
    Are they any existing code examples on how to query this? This is what I have so far but i throws an exception -
    Account act = new Account();
    act.Url = "https://"+dbcon.serverName+"/Services/Integration;jsessionid="+ sID;
    AccountWS_AccountQueryPage_Input qbe = new AccountWS_AccountQueryPage_Input();
    AccountWS_AccountQueryPage_Output qRet;
    qbe.ListOfAccount = new Account1[1];
    qbe.ListOfAccount[0] = new Account1();
    qbe.PageSize = "20";
    qbe.StartRowNum = "0";
    qbe.ListOfAccount[0].AccountId = "";
    qbe.ListOfAccount[0].Description = "";
    //act.CookieContainer = .... is this line needed?
    qRet = act.AccountQueryPage(qbe);
    return qRet.ToString();
    Thanks in advance for your help - Todd
    Edited by: user11139473 on May 6, 2009 6:33 PM

    Hi,
    I am doing the same thing but I am not sure what is Account1 in your case. Can you show me the implementation of Account1 class?
    Account act = new Account();
    act.Url = "https://"dbcon.serverName"/Services/Integration;jsessionid="+ sID;
    AccountWS_AccountQueryPage_Input qbe = new AccountWS_AccountQueryPage_Input();
    AccountWS_AccountQueryPage_Output qRet;
    qbe.ListOfAccount = new Account1[1]; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< qbe.ListOfAccount = new ListOfAccountQuery();
    qbe.ListOfAccount[0] = new Account1(); <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    qbe.PageSize = "20";
    qbe.StartRowNum = "0";
    qbe.ListOfAccount[0].AccountId = ""; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    qbe.ListOfAccount[0].Description = ""; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    //act.CookieContainer = .... is this line needed?
    qRet = act.AccountQueryPage(qbe);
    return qRet.ToString();
    On the right is my line of code. The ListOfAccount member of AccountQueryPage_Input has datatype ListOfAccountQuery. In my case, a NULL is returned after the call.
    Did you code work in the end?
    Thanks

  • How to connect Oracle database in VC++.06

    How to connect Oracle database in VC++.06 please give me details

    on the Insert command button and add the following code to the button click event:
    try
    string results = "";
    OracleConnection con = new OracleConnection("DSN=Employee;uid=system;pwd=test");
    con.Open();
    .....................................................................

  • TMS - step-by-step example on how to setup and test TMS

    I have installed ECC6 (AS ABAP) on NW2004s on Oracle, Windows platform. This is a 1-system landscape.
    I would like to work hands-on with Transport Management System(TMS). I have read the theory part.
    I need a document that shows how to setup a test TMS (transport route, package e.t.c.) , create a test transport, export and import the test transport in a 1-system landscape?
    I'm looking for a simple test case that will help me understand TMS.
    Thanks

    Hi,
    For single system landscape..
    Go 000, DDIC ... STMS--> here it will ask for domain controller -- give self domain --->   Domain controller has been assigned .
    Now again  goto STMS> System overview>SAP SYSTEM >Create ->Virtual system- give name V<SID>
    till this point your domain controller is created and virtual system is created .Next our aim is to setup STMS
    again goto STMS>transport routes> change > configuration>statndard configuration ---> select second option (development and productino System ) because here your dev system will your own system and virtual system would be production  system .
    ---> pop up will come -> give DEV - SID and Productino SID- it willl  automatically create the route .
    Save this and exit.
    This way We can set single system landscape.
    Thanks and Regards,
    Arun Rathour

Maybe you are looking for

  • In Winforms application, dialog disappears when opened over a main window with AcroPDF viewer on it

    I have a Winform modal form with our home-made ComboBox on it, which functions well usually. My problem is - when this modal form is opened on top of a main form that has an AcroPDF control on it (Adobe's PDF ActiveX), whenever the combo's drop down

  • OpenScript DOESN'T capture Java Applet popup window

    I am testing an airline website that requires to choose a Departure and Returning Date from a web.button called 'View Calendar' which is a Java Applet. During recording, it doesn't capture the View Calendar as an object and therefore, i am unable to

  • Display-Color-Depth

    Hi there. After an application-crash (After Effects) and cold restart my monitor-color-depth suddenly switched from millions of colors to maybe several hundreds of colors. I've tried cleaning the caches, throwing out preferences-files (out of library

  • RFQ IN MM

    Hai Friends, I want to know full details about RFQ, where what are all the details we can enter in that RFQ... If we want entry any excise duties, we can enter tax code in RFQ & we can maintain condition record separately but where u have check the e

  • Word compatibility Updates

    I absolutely LOVE the iPad and Pages. When transferring Word documents to the iPad / Pages there are some frustrating incompatibilities that I hope will be corrected soon. 1) Unrecognized TimesNewRoman font is replaced with TimesNewRomanXXXX (with a