Number of rows in last fetch when array festching?

Hi!
I know it must be somewhere, but I'm unable to find it in the documentation:
In OCI 8.1 how can I get the actual number of rows fetched in the last call to OCIStmtFetch() when array fetching?
E. g. when I have a buffer that can hold 100 column values and the select statement returns 140 rows, the second call to OCIStmtFetch() will only fill 40 items into the buffer. So the code processing the fetched rows should only iterate to 40 and not to 100. Is there a way to get this number with OCIGetAttr()?

here's an example -
orc = OCIAttrGet((dvoid *) stmthp_cur, (ub4) OCI_HTYPE_STMT,
(dvoid *) &rows, (ub4 *) &sizep, (ub4)OCI_ATTR_ROWS_FETCHED,m_errhp);

Similar Messages

  • How to display a fixed number of rows in a page when using CL_GUI_ALV_GRID

    Hy experts
    How to display a fixed number of rows in a page when using CL_GUI_ALV_GRID?? lets say 500 ?? because my display table it may contain in some cases 10.000 and evidently I can t see all of them..
    I have a button in my toolbar witch triggers this event
    (display 500 records ) but I don t have the logic to do this only with methods of CL_GUI_ALV_GRID.
    can you tell me a standard method of CL_GUI_ALV_GRID witch can help me do this?? any hint will be good..
    Till now I was used to add a column to my structure witch represents a flag that is a number corresponding to every 500 records (a batch containing 500 records )
    first       500 - flag -> 1
    second  500 - flag -> 2
    etc..but I m convinced that exists a way of doing this more easy..without damaging my structure..
    thanx in advance..don t be shy..reply if you have any hints..

    Hi,
    if method SET_FILTER_CRITERIA doesn´t help, I think that you must work with 2 internal tables, a counter and a loop for filtering the records to be displayed:
    case counter.
      when 1.
         loop at int_table1 from 1 to 500.      "<-- your table with all records
           move int_table1 to int_table2
        endloop.
      when 2.
         loop at int_table1 from 501 to 1000.     
           move int_table1 to int_table2
        endloop.
    etc, etc.
    Call grid-->SET_TABLE_FOR_FIRST_DISPLAY
       exporting
         IT_OUTTAB = int_table2                "<-- instead of your currently table int_table1

  • Number of rows in cursor

    I believe this might have been asked multilpe times, but I could not find anything.
    Is there any way to get the number of rows in a cursor, when I open the cursor. In my case, I have to do the processing in 3 different ways depending on whether the cursor has A)no rows, B) One row, c) more than one row. I know I can get the number of rows by fetching all the rows and then getting the %rowcount.
    I wanted to know whether its possible before fetching any row. The ways I am currently doing it is as follows
    blah blah blah is
    Cursor cur = <my cursor query>;
    cont number;
    BEGIN
    select count(*) into cont from <things exactly same as my cursor query>
    if (cont = 0) THEN
    <Processing A>
    ELSIF (cont = 1) THEN
    <Processing B>
    ELSE
    <Processing C>
    END IF;
    END
    Is this method better than getting the the cursor, fetching at least 2 rows, if the rowcount is more than one, close the cursor and do the processing based on the rowcount i've got.
    TIA

    create or replace
    package Y1 is
       procedure do_it (p_1 number) ;
    end Y1;
    create or replace
    package body Y1 is
       procedure do_it (p_1 number) is
          cursor c1_cur (p_1 number) is
            select tname from tab where rownum <= p_1
          c1_rec c1_cur%rowtype ;
          c2_rec c1_cur%rowtype ;
          l_count  number ;
       begin
          l_count  := 0 ;
          open c1_cur(p_1) ;
          LOOP
             if l_count = 0 then
                fetch c1_cur into c1_rec ;
             else
                fetch c1_cur into c2_rec ;
             end if ;
             exit when c1_cur%notfound ;
             l_count  := l_count + 1 ;
             if l_count = 2 then
                dbms_output.put_line ('XXX=2') ;  
                dbms_output.put_line (c1_rec.tname) ;
                dbms_output.put_line (c2_rec.tname) ;
             elsif l_count > 2 then
                dbms_output.put_line ('XXX>2') ; 
                dbms_output.put_line (c2_rec.tname) ;
             end if ;
          END LOOP ;
          close c1_cur ;
          if l_count = 0 then
             dbms_output.put_line ('XXX=0') ;
             dbms_output.put_line ('===========================') ;
          elsif l_count = 1 then
             dbms_output.put_line ('XXX=1') ;
             dbms_output.put_line (c1_rec.tname) ;
             dbms_output.put_line ('===========================') ;
          else
             dbms_output.put_line ('===========================') ;
          end if ;
       end do_it ;
    end Y1;
    SQL> set serveroutput on
    SQL> exec Y1.do_it (0)  -- etc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to count the number of rows in a cube!!??

    Experts,
    I can somebody tell me how do I count the number of rows in my cube when i am using listcube???..
    Thanks
    Ashwin

    Hi,
    have a look ath this theard too
    Number of Records in Cube
    regards

  • Specify the number of rows in Cursor

    Hi,
    Can anyone tell me, if there is some way where i can specify the number of rows to be fetched in a single cursor.
    As in, The first fetch 100 rows, second 100 and so on
    Regards,
    Rishav

    Hi
    Use the option PACKAGE
    FETCH NEXT CURSOR <CURSOR> INTO TABLE <int table> PACKAGE SIZE 100.
    Max

  • Fetch x-number of rows into an array

    I have some code that selects out x-different number of rows (the number is related to different input data). Is there a good way to select into an array?
    Right now I'm doing it in a horrible way:
    -- finds out how many entries there are in the array
    v_i := v_array.last;
    open c_dyn_cursor for v_sql_stmt;
    loop
    -- There SHOULD be a better way to do this, but I've not found
    -- out how, this sucks!!
    if (v_i = 1) then
    fetch c_dyn_cursor into v_array(1);
    elsif (v_i = 2) then
    fetch c_dyn_cursor into v_array(1),v_array(2);
    elsif (v_i = 3) then
    fetch c_dyn_cursor into v_array(1),v_array(2),v_array(3);
    elsif (v_i = 4) then
    fetch c_dyn_cursor into v_array(1),v_array(2),v_array(3),v_array(4);
    end loop;
    I hope it's possible to do this a better way. Any suggestions?

    The problem though is that since I generate a dynamic sql I have no idea how to declare a variable to select into.
    If it wasn't a dynamic sql I could have done something like this I assume:
    Declare
    CURSOR c_emp IS
    select ename,sal,job from emp;
    r_emp c_emp%rowtype;
    Begin
    OPEN c_emp;
    Loop
    FETCH c_emp into r_emp;
    Exit when c_emp%NOTFOUND;
    Dbms_output.put_line(r_emp.ename || ', ' || r_emp.sal || ', ' || r_emp.job);
    End loop;
    CLOSE c_emp;
    End;
    But I Generate the SQL statement along the way.

  • ORA-01422- exact fetch returns more than requested number of rows in D2K Report

    Hi All,
    Greetings.
    I am using a report which is being called from the from in one of my application. The report is working fine from quiet a long time. I have an error with a particular record alone and it is working fine for all other records.
    When I try to run the report, I am getting the error as Rep-1401- 'cf_vatformula' : Fatal pl/sql error occured.
                                                                                ORA-01422- Exact fetch returns more than requested number of rows.
    I opened the formula column and run the sql codes that are used in the formula column cf_vat and all of them are working fine. None of them are fetching more a single row. But, when I run the report, I am getting the same error as mentioned above.
    Please help me resolve the issue ASAP. Thanks in Advance.
    Regards,
    Bhaskar.

    Hi InoL,
    Thanks for your time.
    I am sure that there is no other procedure used in cf_vatformula. It has select queries in and all of them are fetching the data not more than a single row.
    I have tested each and every select query with every possible output.
    Regards,
    Bhaskar.

  • PROCEDURE PROBLEM - Exact Fetch Returns More Than Requested Number of Rows

    Here is my procedure:
    CREATE OR REPLACE PROCEDURE question4
      ( cust_first IN customer.custfirstname%TYPE,
       cust_last IN customer.custlastname%TYPE,
       customer_no OUT customer.customerSsn%TYPE,
       cust_address OUT customer.address%TYPE,
       loanID OUT loan.loanNo%TYPE,
       application_date OUT loan.appdate%TYPE,
       remaining_payments OUT loan.remainingpaymentsdue%TYPE,
       loan_amount OUT loan.loanamount%TYPE,
       loan_term OUT loan.loanterm%TYPE,
       interest_rate OUT loan.interestrate%TYPE,
       monthly_payment OUT loan.monthlypayment%TYPE)
       AS
    BEGIN
      SELECT customerssn, address  INTO customer_no, cust_address FROM CUSTOMER WHERE custfirstname= cust_first AND custlastname = cust_last;
      SELECT loanno, remainingpaymentsdue, loanamount, loanterm, interestrate, monthlypayment, appdate INTO loanID, remaining_payments, loan_amount, loan_term, interest_rate, monthly_payment, application_date FROM LOAN WHERE customerSsn = customer_no;
      EXCEPTION
        WHEN OTHERS
        THEN
        NULL;
    END;Here is the anonymous block showing the use of my procedure.
    SET SERVEROUTPUT ON
    DECLARE
      customer_number customer.customerSsn%TYPE := NULL;
      customer_address customer.address%TYPE := NULL;
      loan_number loan.loanNo%TYPE := NULL;
      app_date loan.appdate%TYPE := NULL;
      rem_payment loan.remainingpaymentsdue%TYPE := NULL;
      l_amount loan.loanamount%TYPE := NULL;
      l_term loan.loanterm%TYPE := NULL;
      i_rate loan.interestrate%TYPE := NULL;
      m_payment loan.monthlypayment%TYPE := NULL;
      view_customerSSN NUMBER;
      view_address VARCHAR2(50);
      view_loanID NUMBER;
      view_date DATE;
      view_remaining_payment NUMBER;
      view_loan_amount NUMBER(8,2);
      view_loan_term VARCHAR2(10);
      view_interest_rate FLOAT(20);
      view_monthly_payment NUMBER(8,2);
    BEGIN
      question4 ('Tim', 'Thompson',  customer_number, customer_address, loan_number, app_date, rem_payment, l_amount, l_term, i_rate, m_payment);
      IF (customer_number IS NULL OR customer_address IS NULL OR loan_number IS NULL OR app_date IS NULL
      OR rem_payment IS NULL OR l_amount IS NULL OR l_term IS NULL OR i_rate IS NULL OR m_payment IS NULL) THEN
         DBMS_OUTPUT.PUT_LINE ('NULL VALUE');
      ELSE
        view_customerSSN := customer_number;
        view_address := customer_address;
        view_loanID := loan_number;
        view_date := app_date;
        view_remaining_payment := rem_payment;
        view_loan_amount := l_amount;
        view_loan_term := l_term;
        view_interest_rate := i_rate;
        view_monthly_payment := m_payment;
        DBMS_OUTPUT.PUT_LINE ('CUSTOMER NO : ' ||  view_customerSSN);
        DBMS_OUTPUT.PUT_LINE ('CUSTOMER ADDRESS : ' ||  view_address);
        DBMS_OUTPUT.PUT_LINE ('LOAN NO : ' ||  view_loanID);
        DBMS_OUTPUT.PUT_LINE ('LOAN APPLICATION DATE : ' ||  view_date);
        DBMS_OUTPUT.PUT_LINE ('REMAINING PAYMENTS : ' ||  view_remaining_payment);
        DBMS_OUTPUT.PUT_LINE ('LOAN AMOUNT : ' ||  view_loan_amount);
        DBMS_OUTPUT.PUT_LINE ('LOAN TERM : ' ||  view_loan_term);
        DBMS_OUTPUT.PUT_LINE ('INTEREST RATE : ' ||  view_interest_rate);
        DBMS_OUTPUT.PUT_LINE ('MONTHLY PAYMENT : ' ||  view_monthly_payment);
      END IF;
    END;
    /Error Message:
    Error report:
    ORA-06550: line 21, column 3:
    PLS-00306: wrong number or types of arguments in call to 'QUESTION4'
    ORA-06550: line 21, column 3:
    PL/SQL: Statement ignored
    *06550. 00000 - "line %s, column %s:\n%s"*
    **Cause: Usually a PL/SQL compilation error.*
    **Action:*
    What is the problem here? Could you anyone help me?
    Thanks for your help from now on.
    Have a beautiful day...
    Edited by: RobertPires on May 1, 2011 5:13 PM
    Edited by: RobertPires on May 1, 2011 8:19 PM

    Thanks for your help, Sir. As you see it as above, I fixed the order of parameters, but since I would like to display multiple records, my procedure did not work properly and I got this error message:
    Error report:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "S4048958.QUESTION4", line 20
    ORA-06512: at line 21
    *01422. 00000 - "exact fetch returns more than requested number of rows"*
    **Cause: The number specified in exact fetch is less than the rows returned.*
    **Action: Rewrite the query or change number of rows requested*
    I guess I need to create a cursor in my procedure, but I dunno how. Could you give me some suggestion for this please?
    Thanks again...

  • ORA-01422 exact fetch returns more than requested number of rows on invoice

    Hello developer,
    Current I m facing problem ORA-01422 exact fetch returns more than requested number of rows in Invoce Standard form when we select PO_Default invoice type for some specific PO Number not for all. I m not able to handle the error bcoz im new in oracle apps. it's urgent for user requirement. Plz guide me how to take approch to handle the situation.........
    select Po_Default invoice type=>enter po number=>press ok button=>got error ORA-01422
    I got query from POST_QUERY TRIGEER like
    function get_po_number (l_po_number varchar2,l_vendor_id OUT number) return number is
    l_po_header_id number;
    --Bug fix:1096002
    --Removed the function call UPPER from the WHERE clause so that the query
    --becomes case sensitive.
    -- BUG 2519682 vendor_id added in the Select statement and futher in the fetch statement
    cursor po_number_cursor is
    SELECT po_header_id,vendor_id
    FROM po_headers
    WHERE type_lookup_code IN ('STANDARD', 'BLANKET', 'PLANNED')
    AND approved_flag = 'Y'
    AND segment1 = l_po_number
    -- Bug 2289727. Enhanced Matching Controls to Finally Closed POs
    AND (NVL(closed_code, 'X') <> 'FINALLY CLOSED'
    OR :parameter.show_final_closed_po_flag = 'Y')
    AND PCARD_ID IS NULL; --bug4627502
    /* Commented out since this is not relevant even if executed.
    AND (segment1 LIKE SUBSTR(l_po_number, 1, 2) || '%' OR
    segment1 LIKE SUBSTR(l_po_number, 1, 1) ||
    SUBSTR(l_po_number, 2, 1) || '%' OR
    segment1 LIKE SUBSTR(l_po_number, 1, 1) ||
    SUBSTR(l_po_number, 2, 1) || '%' OR
    segment1 LIKE SUBSTR(l_po_number, 1, 2) || '%' );
    begin
    open po_number_cursor;
    fetch po_number_cursor INTO l_po_header_id,l_vendor_id;
    close po_number_cursor;
    return(l_po_header_id);
    end get_po_number;
    plz help me how to resolved this issue it's urgent.
    thanks in advance.........

    This bug is documented in the following note on metalink.oracle.com
    APXINWKB - Creating PO Default Invoice Errors with ORA-01422 Exact Fetch Returns More Than Requested Number Of Rows [ID 946578.1]
    The solution is to apply patch 8765847.
    Hope this answers your question,
    Sandeep Gandhi

  • Number of rows returned by SELECT LAST(column)

    I have about 50,000 rows in my MS Acess database table so I have used SELECT LAST(column) AS newField FROM table... to retrieve the last data in the column however when I check the number of rows in the resultset using
    resultset.last();
         int rowcount = rs.getRow();
    rowcnt returns the total no.rows (about 50,000) in the table.
    I thought it should just return one.
    Is it normal?

    Thanks again dcminta. I'll try with your code.
    I just wanted to know why resultset returned the number of all records in that column when I only selected the last.
    I had the �Invalid Cursor Position� error with "while(rs.next())" as I (thought I) had only one record in the resultset and I was fiddling with my code.
    They are all fine now.
    Thanks guys.
    Booh1(old lady)

  • Number of rows fetch are not same

    Hello all,
    i am new to sql/plsql
    Oracle version 11R2
    OS RHL 5.0
    i am trying to delete all the rows from parent table as well as from child tables based on some date criteria.
    the parent table BE_STATUS contains one column OOC_DT. based on the OOC_DT i am fetching rows from Parent Table BE_STATUS.
    other child tables DO NOT have OOCDT column but are having BENO and BEDT WHICH are also in PARENT TABLE BESTATUS.
    So i am fetching all be_no,*be_dt* from BE_STATUS based on the column OOC_DT as below
    select distinct(count(*)) from be_status where ooc_dt between '31-mar-10' AND '24-dec-10';
    (COUNT(*))
    65074 and i am creating a temp table based on the above query as
    create table temp as select be_no, be_dt from be_status where ooc_dt between '31-mar-10' AND '24-dec-10';
    table created.and then i am counting the number of rows in temp table
    select distinct(count(*)) from temp;
    (COUNT(*))
    65074 so there are around 51 child tables which are having the column BE_NO AND BE_DT.
    so the total no of rows in temp should be equal to total of all rows in each and every column based on the criteria above.
    that is
    select distinct(count(*)) from be_penal  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
            64
    select distinct(count(*)) from be_fine  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
            62
    select distinct(count(*)) from be_cash_lic  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
            23
    select distinct(count(*)) from c_cl_be  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
             2
    select distinct(count(*)) from chex where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
             0
    select distinct(count(*)) from amend_q where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
             0
    select distinct(count(*)) from be_perm  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
           889
    select distinct(count(*)) from exam_instr where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
           690
    select distinct(count(*)) from c_rms_mesg  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
         64982
    select distinct(count(*)) from item_duty_fg  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
        398129
    select distinct(count(*)) from a_item_det  where (be_no,be_dt) in (select be_no,be_dt from temp);
    (COUNT(*))
         31453
    select distinct(count(*)) from item_det  where (be_no,be_dt) in (select be_no,be_dt FROM temp);
    (COUNT(*))
        622271 so as u can see that TEMP TABLE contains only *65074* . so the sum of the counts of all the above tables should be *65074* but alone item_det contains
    *622271* rows.
    am i making any mistake in counting the records individually??
    waiting for your usefull reply
    thanks and regards

    Not quite sure I follow your issue, but one glaringly obvious fault in your coding...
    between '31-mar-10' AND '24-dec-10';dates should be treated as dates, not strings, and we left 2 digit years from programming standards waaay back in the 1990's when everyone fixed such issues as part of the millenium bug fixes.
    between to_date('31-mar-2010','DD-MON-YYYY') AND to_date('24-dec-2010','DD-MON-YYYY');

  • Stuck with Exact fetch returns more than requested number of rows!

    Hi
    I've written the following code where i want to insert an id number into a package to update a record.
    declare myvar NUMBER; begin SELECT App.id into myvar FROM people_units pu LEFT OUTER JOIN(
    SELECT pu.id,pu.record_date,pu.unit_instance_code,pu.person_code,pu.calocc_code,pu.record_date As received
    FROM people_units pu) App ON pu.person_code = App.person_code AND Trunc(pu.record_date) = Trunc(App.record_date)
    WHERE pu.id = 79474; ebs_units_pkg.AddProgressHistory(myvar,'AUTO');end;
    when i run the query in SQL i get the error message ORA-01422 - Exact fetch returns more than expected number of rows.
    Can anyone help me rseolve this error? The select statement may return more than one row which im guessing is the cause of the problem. If the select statement does return more than one value. 2 rows for example, i would like the package to update the 2 rows. Ive never really done any work with PL/SQL before so at a loss at where to begin!!

    Do the select and the update all in one step. It will be much easier then.
    Example:
    UPDATE people_units
    SET yourColumn = calculatedValue
    WHERE id = 79474

  • ORA-01422: exact fetch returns more than requested number of rows in R12

    Hi All,
    Getting the below error in custom report of purchasing.
    REP-1401: 'afterpform': Fatal PL/SQL error occurred.
    ORA-01422: exact fetch returns more than requested number of rows
    To overcome this error I have added some exceptional handling as per below and the report is completed with Normal with output but the ouput is repeating in 150 pages in R12 but the same output in 11i showing only one page. Please advise.
    when no_data_found then
                 :P_po_num_type := 'ALPHANUMERIC'; 
            when too_many_rows then
                 :P_po_num_type := 'ALPHANUMERIC';
            when others then
                 :P_po_num_type := 'ALPHANUMERIC';
    Regards,
    Sushant

    You need to rewrite your query for R12 based on new architecture as 11i report will not work as it is.
    thanks

  • Open new Excel sheet when number of rows is too big

    Hi again,
    I'm using ActiveX to write some data to Excel. It is common that the amount of data that I want to write to Excel takes more than the 65536 rows of a sheet, so every time this number of rows is reached I wanted to open a new sheet and write data to it and so one. The writting part is alrigth (I adapted the Write Table to XL.vi), I can see the row current row number I am writting data to and I now how to open the new sheet and write to it. The problem is that I don't seem to find a way to open the new sheet only once after the row nº is greater than 65536...  I don't know where to test the row number...I join my code if you have some time to look at it, any suggestion would be of great help.
    I hope you understand my problem...
    Best regards,
    Isabel

    Here is the change that I suggested.  I use the modulus for simplicity to wrap the 65535 back to 0.  A new sheet is added only when the row and column indexes are both at 0.  The shift registers are used to hold the current value of the Sheet reference.
    I also correct several bugs in your code with comments on why.
    The nested for loops used is the Example code is only suitable for a small amount of data.  The proper way to transfer a large array to Excel is with a Block Write.  Your data array would need to be broken into worksheet-sized chunks and written with a single Range->Value write using the double indexed data.
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector
    Attachments:
    Write Table & Header to Excel large import_mod.vi ‏92 KB

  • On LOGIN: 01422 exact fetch returns more than requested number of rows

    hi -- When logging into an application (as any valid user) I get the above error message (01422 - exact fetch returns more than requested number of rows) on page submit. However, when I go into DEBUG mode (where there are also prompts for username and password) I don't get the error message --I'm logged into the app just fine.
    Any idea what this is about? I don't know query APEX is trying to execute;
    it certainly doesn't make sense to me that it works while in DEBUG mode.
    Note: this is an app in development that's been sitting dormant for 6 months due
    to lack of funding. The login worked 6 months ago, but now know. Don't know if
    that's helpful information...
    Thanks,
    Carol

    hi Scott -- Your question made me think to examine not only the login process,
    but other processes I'd added to the page -- and that's where the problem was!
    (My brain is a bit rusty on the APEX re-entry process).
    Thanks for the spark :)
    Carol

Maybe you are looking for

  • Unexpected behavior on disk loss.

    I’ve installed a cluster with the following soft- and hardware: Software Oracle Enterprise Linux 5 (2.6.18-194.0.0.0.3.el5 … x86_64) Oracle Clusterware 11.1.0.7 Oracle ASM 11.1.0.7 Oracle Database 11.1.0.7 Hardware Servers: 2 * HP BL460c Intel Xeon 5

  • ERROR IN WEB LOGIC AND JBUILDER...

    hi, im just new to weblogic with JBuilder X, i made a very basic session bean and when i compiled it. it said... "WebLogicSesMod.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors. im using We

  • "Accessing iTunes Store" message pop up

    When I am in iTunes, the "accessing iTunes Store" message keeps popping up every time I click on any iTunes function. It keeps giving me that every few seconds. trvulcan

  • Error Message trying to connect BB and Desktop Manager

    I've had my BB for a few months now, and I used to be able to connect it to my laptop and sync Outlook data. Now it won't connect to the Desktop Manager any more. I always get an error message, and this is the technical data it "Sends" to whomever, i

  • Help--XML text and Flash

    Hi, I'm relatively new to Flash and I (foolishly) said that I could add a simple link at the end of an existing Flash file. The link is no problem, but the movie calls all of its text from an XML file. While I'm awed by how this works, I'm also stump