Procedure puts a lot of rows

Hi, I have a problem with the two procedures. I have these tables:
CREATE TABLE "WYPOZYCZENIA"
(     "ID" NUMBER(*,0) NOT NULL ENABLE,
     "TERMIN_ZWROTU" DATE,
     "KARA" NUMBER NOT NULL ENABLE,
     "NEW_TERMIN_ZWROTU" DATE,
     "DATA_WYPOZYCZENIA" DATE NOT NULL ENABLE,
     "PRA_ID" NUMBER(*,0) NOT NULL ENABLE,
     "KSI_ID" NUMBER(*,0) NOT NULL ENABLE,
     "CZY_ID" NUMBER(*,0) NOT NULL ENABLE,
     CONSTRAINT "WYP_PK" PRIMARY KEY ("ID") ENABLE
and
CREATE TABLE "EGZEMPLARZE"
(     "ID" NUMBER(*,0) NOT NULL ENABLE,
     "SYGNATURA" VARCHAR2(5) NOT NULL ENABLE,
     "ST_ID" NUMBER(*,0) NOT NULL ENABLE,
     "KSI_ID" NUMBER(*,0) NOT NULL ENABLE,
     CONSTRAINT "EGZ_PK" PRIMARY KEY ("ID") ENABLE,
     CONSTRAINT "EGZEMPLARZE_CON" UNIQUE ("SYGNATURA") ENABLE
ALTER TABLE "EGZEMPLARZE" ADD CONSTRAINT "EGZ_KSI_FK" FOREIGN KEY ("KSI_ID")
     REFERENCES "KSIAZKI" ("ID") ENABLE
ALTER TABLE "EGZEMPLARZE" ADD CONSTRAINT "EGZ_ST_FK" FOREIGN KEY ("ST_ID")
     REFERENCES "STATUSY" ("ID") ENABLE
and my procedures and my procedure that should insert a row into a table "WYPOZYCZENIAi" and update on the table "EGZEMPLARZE". But the process instead of inserting a single row inserts 4th You know why?
Edited by: user8918431 on 2011-03-26 18:05

By my inadvertently went the wrong way. Well, the table "WYPOZYCZENIA" and the table copies are connected by a table "KSIAZKI". And in this case is a query I think it should be correct and draw a line. This is code tabel "KSIAZKI":
CREATE TABLE "KSIAZKI"
(     "TEMATYKA" VARCHAR2(50),
     "TYTUL" VARCHAR2(50) NOT NULL ENABLE,
     "OPIS" VARCHAR2(250),
     "ISBN" NUMBER(*,0) NOT NULL ENABLE,
     "ID" NUMBER(*,0) NOT NULL ENABLE,
     "WYDA_ID" NUMBER(*,0) NOT NULL ENABLE,
     CONSTRAINT "KSI_PK" PRIMARY KEY ("ID") ENABLE
I apologize for my carelessness

Similar Messages

  • On ALV report in1 column I want to put Icon on every row of that column.

    On ALV report there is 1 column I want to put Icon on every row of that column.That ALV program uses object oriented concept all class and methods.
      I want to use that icon on that row. That icon name is ‘ICON_OKAY’
    In my program when I assign values to internal table at that time I am assigning that ‘ICON_OKAY’ value to that row as follow.
    Itab-
    Itab-icon = ICON_OKAY.
    Append itab.

    please follow below procedure to display icon in ALV
    1) In corresponding fieldcatelog entry do
    fieldcatalog-icon = 'X'
    2) While filling the internal table fill the corresponding key value of icon , for example ICON_OKAY value is '@0V@' so statement would be
    Itab-icon = '@0V@'
    to get list of corresponding key for icon open include <ICON> in se38

  • Viewobject rows don't exist when creating a lot of rows at once

    Hello,
    I'm creating a lot of rows at once in a viewobject. Let's say between 100 and 700 rows. After that, I commit the transaction. After the creation of every row I do a postchanges().
    When this is all done, a xml file is sent to another server and returns the same file with a bit more information. That file is parsed and every row will be searched in the Viewobject but then they don't exist!
    When I try this with a couple of rows, 10 or something, everything goes well. Is this a known problem or am I doing something wrong? I don't want a commit after the creation of every row because sending must succeed before saving them.

    No off course.
    I hoped that more people have problems with inserting a lot of rows at once. The code is quite simple, it looks a bit like this:
    for ( about 500 elements )
    Row row = voIterator.createRow();
    row.setAttribute("...", "....");
    voIterator.insertRow(row);
    getDBTransaction().postChanges();
    getDBTransaction().commit();

  • I want to create stored procedure which will give output rows from "values that are passed as one parameter (comma seperated) to store procedure".

    Hello,
    I want to create stored procedure which will give output rows from "values that are passed as one parameter (comma seperated) to store procedure".
    Suppose , 
    Parameter value : person 1,person2,person3 
    table structure : 
    Project Name | officers 1 | officers 2
    here, officers 1 or officers 2 may contain names of multiple people.
    expected OUTPUT : distinct list(rows) of projects where person 1 or person 2 or person 3 is either officer1 or officer 2. 
    please explain or provide solution in detail 
    - Thanks

    Hi Visakh,
    Thanks for reply.
    But the solution you provided giving me right output only if officer 1 or officer 2 contains single value , not with comma seperated value.
    Your solution is working fine for following scenario : 
    Project 
    Officers 1
    Officers 2
    p1
    of11
    off21
    p2
    of12
    off22
    with parameter : of11,off22 : it will give expected output
    And its not working in case of :
    Project 
    Officers 1
    Officers 2
    p1
    of11,of12
    off21,off23
    p2
    of12,of13
    off22,off24
    with parameter : of11,off22 : it will not give any row in output
    I need patten matching not exact match :) 
    ok
    if thats the case use this modified logic
    CREATE PROC GetProjectDetails
    @PersonList varchar(5000)
    AS
    SELECT p.*
    FROM ProjectTable p
    INNER JOIN dbo.ParseValues(@PersonList,',')f
    ON ',' + p.[officers 1] + ',' LIKE '%,' + f.val + ',%'
    OR ',' + p.[officers 2] + ',' LIKE '%,' + f.val + ',%'
    GO
    Keep in mind that what you've done is a wrong design approach
    You should not be storing multiples values like this as comma separated list in a single column. Learn about normalization . This is in violation of 1st Normal Form
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • HTML with lot of rows

    Hi Guys,
    In one of our web page we have lot of rows. (Around 600) in a table. As per the requirements, the first three columns should be frozen while scrolling. Totally there are around 30 columns.
    When we tried with frames, we are facing performance related issues. (Like the page is getting refreshed only after few secs. during scrolling.)
    How can we handle this situation?
    Thanks in anticipation
    Regards
    Rajesh

    Split the table into several pages. Large tables render horribly slow on some browsers, and only at below average speed on other browsers.

  • Coding for Stored Procedures is a lot of work!

    Will simple Stored Procedure calls be made any easier in TopLink? Below is the JDBC code for calling a stored procedure. Following it is the lengthy TopLink code for calling the same proc.
    JDBC:
    CallableStatement stmt = conn.prepareCall("{CALL JEROME_TEST.EMP_SELECT(?,?,?)}");
    stmt.setInt(1, 7369);
    stmt.registerOutParameter(2, Types.VARCHAR);
    stmt.setString(2, "Get");
    stmt.registerOutParameter(3, Types.VARCHAR);
    stmt.execute();
    System.out.println("job = " + stmt.getString(2));
    System.out.println("name = " + stmt.getString(3));TopLink
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("JEROME_TEST.EMP_SELECT");
    call.addUnamedArgument("empno");
    call.addUnamedInOutputArgument("job", "job", String.class);
    call.addUnamedOutputArgument("name");
    DataModifyQuery query = new DataModifyQuery();
    query.setCall(call);
    query.addArgument("empno");
    query.addArgument("job");
    query.addArgument("name");
    m_session.addQuery("JEROME_TEST.EMP_SELECT", query);
    m_session.getEventManager().addListener(
            new SessionEventAdapter() {
                public void outputParametersDetected(SessionEvent event) {
                    if (((StoredProcedureCall)event.getProperty("call")).
                        getProcedureName().equals("JEROME_TEST.EMP_SELECT")){
                        DatabaseRow row = (DatabaseRow)event.getResult();
                        Object returnJob = row.get("job");
                        Object returnName = row.get("name");
                        System.out.println("job = " + returnJob);
                        System.out.println("name = " + returnName);
    Vector parameters = new Vector();
    parameters.addElement(new java.lang.Integer(7369));
    parameters.addElement("Get");
    parameters.addElement("");
    Object data = m_session.executeQuery(query, parameters);

    Much of the code you have defined is for being able to reuse the call. If you just want to execute it you can use:
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("JEROME_TEST.EMP_SELECT");
    call.addUnamedArgumentValue(new Integer(7369));
    call.addUnamedInOutputArgumentValue("job", "Get", String.class);
    call.addUnamedOutputArgument("name");
    Map row = (Map) session.executeSelectingCall(call).first();
    System.out.println("job = " + row.get("job"));
    System.out.println("name = " + row.get("name"));

  • File adapter PUT operation with header row.

    i have schema generated in the below format.
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
                xmlns:tns="http://TargetNamespace.com/InboundService"
                targetNamespace="http://TargetNamespace.com/InboundService"
                elementFormDefault="qualified"
                attributeFormDefault="unqualified"
                nxsd:version="NXSD"
                nxsd:stream="chars"
                nxsd:encoding="US-ASCII"
                nxsd:hasHeader="true"
                nxsd:headerLines="1"
                nxsd:headerLinesTerminatedBy="${eol}"
    >
      <xsd:element name="Root-Element">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="Record" minOccurs="1" maxOccurs="unbounded">
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="typdoc" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="~" />
                  <xsd:element name="datdoc" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="~" />
                  <xsd:element name="nomdoc" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="~" />
    but the above schema do not write the header line in the FTP file.
    Each of the element name should work as header row.
    Below is the JCA configuration of the FTP
    <adapter-config name="Payment_Details_FTP" adapter="FTP Adapter" wsdlLocation="Payment_Details_FTP.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
      <connection-factory location="outbound/ftp/test1"/>
      <endpoint-interaction portType="Put_ptt" operation="Put">
        <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPInteractionSpec">
          <property name="PhysicalDirectory" value="Test"/>
          <property name="FileType" value="ascii"/>
          <property name="Append" value="false"/>
          <property name="FileNamingConvention" value="1C_Extract.out%yyMMddHHmmss%"/>
        </interaction-spec>
      </endpoint-interaction>
    </adapter-config>
    Please let me know if i'm missing some configuration here.
    Regards
    sujan

    Remove "header" related attributes from the "schema" tag.
    ===================================
    nxsd:hasHeader="true"
                nxsd:headerLines="1"
                nxsd:headerLinesTerminatedBy="${eol}"
    ===================================
    And then, define another element like "Record" to read the header data.
    http://docs.oracle.com/cd/E15523_01/integration.1111/e10231/nfb.htm#CHDBECJI

  • How to put components in a row?

    Hi!
    I am totally new to Java ME and I have just built my first "Hello world" application. Now I would like to make a form which consits of two TextFields. I have no idea how to make them appear in a row, that is if TextField text1 is the first textfield, then i want TextField text2 to appear under text1. In Java SE, you have JPanels to put components after each other, but what to do i Java ME?
    EDIT: I solved it with I Form.
    Question: Why can´t I use a TextField in Display.getDisplay(this).setCurrent(TextField_object)?

    Check the layout directives described in the Item documentation for some more fun with layouts :-)
    [http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/Item.html]
    Roxxor wrote:
    Question: Why can´t I use a TextField in Display.getDisplay(this).setCurrent(TextField_object)?Because TextField isn't Displayable. However you can use TextBox here if you want to have a bigger editing space.

  • About procedure to commit after 1000 rows

    i have procedure
    and a cursor c1 is select emp table and
    insert into copy_emp table
    but i want to commit after 1000 record;
    with exception handling
    plz help me with example
    thanks

    Everything you have described is either bad practice in all currently supported versions or bad practice in every version since 7.0.12.
    Cursor loops have been obsolete since version 9.0.1.
    Incremental commiting, for example every 1,000 rows, has always been a bad practice. It slows down processing and manufactures ORA-01555 exceptions.
    For demos of how to properly process data sets look up BULK COLLECT and FORALL at http://tahiti.oracle.com and review the demos in Morgan's Library at www.psoug.org.
    For a long list of good explanations of why you should not do incremental commits read Tom Kyte's many comments at http://asktom.oracle.com.
    Incremental commits may make sense in other products. Oracle is not other products.

  • Procedure from PowerBuilder returning multiple rows

    In want to call a procedure from PowerBuilder which return multiple rows. I would like to know how to write the procedure and also how to call it. I tried using REFCURSOR , but i heard that Powerbuilder doesnot support REFCURSOR . Please help
    Thanks in advance

    This is not a PL/SQL qustion, but a Powerbuilder question.
    Just what SQL constructs does Powerbuilder supports? And if there is no support for ref cursors, then the choice of using a client language that lacks basic core SQL support is questionable.

  • Putting data into table rows...

    Hi, I have read some of the old posts but they dont give me an answer. I have 3 column and 20 rows table. I want to fill first 4 rows with data, Ill write it from keyboard, it does not have to come from any of inputfields or whatever, I just need to put there some words for now and thats it.  How can I do that? Regards, Blamer.

    Hi Balmer,
    If you want to add different rows with different kinds of data, you can do like this:
    1.Without loop:
    //first element
    IPrivateTabView.ITabNodeElement   elem1 =
    wdContext.nodeTabNode().createTabNodeElement();
    elem1.setCol1("column1data1" );
    elem1.setCol2("column2data1" );
    elem1.setCol3("column3data1" );
    elem1.setSelectedCellVariant("variant1");
    wdContext.nodeTabNode().addElement(elem1);
    //second element
    IPrivateTabView.ITabNodeElement   elem2 =
    wdContext.nodeTabNode().createTabNodeElement();
    elem2.setCol1("column1data2" );
    elem2.setCol2("column2data2" );
    elem2.setCol3("column3data2" );
    elem2.setSelectedCellVariant("variant2");
    wdContext.nodeTabNode().addElement(elem2);
    // like this you can add different elements
    2.With loop:
    IPrivateTabView.ITabNodeElement elem;
      int count = 10;
    for(int i=0; i<count; i++) {
    elem = wdContext.nodeTabNode().createTabNodeElement();
    wdContext.nodeTabNode().addElement(elem);
    if(i==0)
    elem.setCol1("column1data" );
    elem.setCol2("column2data" );
    elem.setCol3("column3data" );
    elem.setSelectedCellVariant("variant1");
    if(i==1)
    elem.setCol1("column1data2" );
    elem.setCol2("column2data2" );
    elem.setCol3("column3data2" );
    elem.setSelectedCellVariant("variant2");
    //like this you can set different elements
    regards,
    Siva

  • Stored Procedure fails to return all rows of data.

    Our HR database uses a procedure to build a list of employee IDs (ie. 1,3,14,...1210,1215) then calls a procedure to with a variable to extract details per employee. Unfortunately the list is 947 ids, however only 887 rows are returned.
    As a test I split the list in two and called the procedure. If I add the data rows together I get 947, hence I know the employees are valid. Can anyone suggest why a long list of Ids should fail? Is there a limit a stored procedure can return?
    The procedure (simplified down a bit) is:
    ALTER PROCEDURE [dbo].[sp_Employee_CreateTable]
     @EmpIds varchar(4000)
    AS
    SELECT    E.empid as EmpId ,E.Surname
        FROM    Employee E
        WHERE  (E.[EmpID] IN (select * from GetAllUsersUnderManager(@EmpIds))) AND EJ.id=dbo.GetCurrentEmployeeJobRecord(EJ.empid)--EJ.dateto IS NULL
    I can run the procedure as:
    "exec sp_Employee_CreateTable @EmpIds=N'1,3,14.....999'" which returns (say) 700 rows  and  "exec sp_Employee_CreateTable @EmpIds=N'1001,.....1215'" which returns 247 rows. (ie. 700+247 = 947 which is correct.
    But exec sp_Employee_CreateTable @EmpIds=N'1,3,14......1215' only returns 887 rows.
    I have looked at the length of the data passed to the procedure (1,3,...1215) which equals 4126 chars, therefore I bumped the varchar space from 4,000 to 6,000 which is still within limits, however the number of rows returned was still 887.
    Any help would be gratefully received.

    Hi Scott. I run the script you suggested (thank you), the var EmpIds was set to a string with over 930 ids. The returned data set started with 0 but only had 888 rows. As mentioned above I refer the 930+ list as full list, and the 888 as the short list.
    The difference (around 47) were the last values in the full list.
    Although EmpIds was set to 6K it definately seems like it gets to around 4K chars then ignores any other values.
    Re "since you pass....". Absolutely. I have modified the Employee_CreateTable with the var update to 6K/
    ALTER PROCEDURE [dbo].[sp_Employee_CreateTable]
     @EmpIds varchar(6000),
     @IncludeLeavers Bit
    AS
        SELECT    E.empid as EmpId ,E.Surname, E.Firstname as Forename,E.PayrollID, E.intextno as Extension, EJ.position as Position, [dbo].[GetEmployeeDepartment](E.empid) as Department, [dbo].[GetEmployeeLocation](E.empid) as Location,
    E.title as Title, EJ.ReportsTo,
                CoEmail,E.[left]
        FROM    Employee E INNER JOIN EmployeeJobs EJ
        ON        E.empid = EJ.empid
        WHERE  (E.[EmpID] IN (select * from GetAllUsersUnderManager(@EmpIds))) AND EJ.id=dbo.GetCurrentEmployeeJobRecord(EJ.empid)--EJ.dateto IS NULL
                AND (E.[left]=0 or E.[left]=@IncludeLeavers)
        ORDER BY E.Surname, E.Firstname, E.empid

  • How to put at least 50 rows on a page?

    How can I put at least 50 table rows on a page using either Pages or Numbers??

    The minimum cell height is 8pts (0.11").
    Reduce font size.
    Format > Text > Layout > Text Inset = 0
    Uncheck Resize rows to fit cell contents.
    Ultimately, as fruhulda says, use a bigger page size.
    Peter

  • A Procedure doesn't update some rows in pre-prod while it does in dev box.

    Hi All,
    There are some data rows in a master table STG_CON in both environments(DEV and PRE_PROD). Making changes to any of these rows should be reflected in the CON table after the procedure is run, however it only seems to work reliably in DEV, but failes to update some rows in PRE-PROD.
    Our oracle stored procedure: USP_APPLY_CON which we have to deploy over production, but before that, I am afraid, it should not fail to update some rows in CON table alike pre-prod.
    Please suggest what could be problem, why all rows are getting updated in DEV but fails in PRE-PROD, though everything looks same.

    Here is my procedure: USP_APPLY_CONTACT, which should insert the data from STG_CONTACT to CONTACT table, all required columns are present in CONTACT table. Please have a look over it, I don't guess there is any issue with procedure.
    CREATE OR REPLACE PROCEDURE "COPILOTFIREPR2_ADMIN"."USP_APPLY_CONTACT" AS
    -- This stored procedure is used to copy data from staging table to "contact" ta
    ble.
    -- Update if record exists, insert otherwise.
    -- When error occurs, record get throw away.
    BEGIN
    DECLARE CURSOR cur IS
    SELECT *
    FROM stg_CONTACT;
    rcdcnt NUMBER(10, 0) := 0;
    errMsg varchar2(255);
    BEGIN
    FOR rec IN cur
    LOOP
    SELECT COUNT(*)
    INTO rcdcnt
    FROM CONTACT
    WHERE CONTACTNO = rec.CONTACTNO;
    BEGIN
    IF rcdcnt = 0 THEN
    INSERT INTO CONTACT (
    ID, LOCATIONCODE, CONTRACTNO, CUSTOMERNO, CONTACTNO,
    FIRSTNAME, LASTNAME, TITLE, ADDRESSID, DECISIONMAKER, PRCCONTACT, ACTIVE)
    VALUES (CONTACT_ID_SEQ.NextVal, rec.LOCATIONCODE,
    rec.CONTRACTNO,
    rec.CUSTOMERNO,
    rec.CONTACTNO,
    rec.FIRSTNAME,
    rec.LASTNAME,
    rec.TITLE,
    rec.ADDRESSID,
    rec.DECISIONMAKER,
    rec.PRCCONTACT,
    rec.active);
    ELSE
    UPDATE CONTACT SET
    ACTIVE=rec.active, FIRSTNAME=rec.FIRSTNAME, LASTNAME=rec.LASTNAME, TITLE=rec.TI
    TLE, ADDRESSID=rec.ADDRESSID,
    DECISIONMAKER=rec.DECISIONMAKER, PRCCONTACT=rec.PRCCONTACT, LOCATIONCODE=rec.LO
    CATIONCODE,
    CONTRACTNO=rec.CONTRACTNO, CUSTOMERNO=rec.CUSTOMERNO
    WHERE CONTACTNO=rec.CONTACTNO;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    errMsg := SQLERRM;
    insert into errorlog("ID", "USERNAME", "APPDOMAIN", "MESSAGE", "FORMATTEDMESSAG
    E", "EXCEPTIONTYPE", "SERVERNAME" )
    values ( ERRORLOG_ID_SEQ.NEXTVAL, 'COPILOTFIRE_ADMIN.USP_APPLY_CONTACT', 2,
    'KEY is '||to_char(rec.CONTACTNO), errMsg, '','');
    END;
    END LOOP;
    END;

  • Procedure to insert a new row with data, but no PK

    Ok,
    I have an assignment to insert a row into an existing table and to insert values (via a procedure) into certain fields. However, none of the fields that are to be INSERTED upon are the PK field.
    I wrote the following for a start, and I get an error since I have NULL in the PK field. The PK is named PRODUCTID. I am only to insert p_name, p_description, p_imgname, p_cost, and p_status. I am in school now, and am a beginner at PL/SQL, and any help would be appreciated.
    How can I do this without assigning a value to the PK field?
    For reference: there are 10 rows in the table, and the one I'm inserting is row 11.
    CREATE OR REPLACE PROCEDURE prod_add_sp
       (p_name IN bb_product.productname%type,
        p_description IN bb_product.description%type,
        p_imgname IN bb_product.productimage%type,
        p_cost IN bb_product.price%type,
        p_status IN bb_product.active%type)
       IS
      BEGIN
        INSERT INTO bb_product (idproduct, productname, description, productimage, price, active)
         VALUES (lv_prodid_num, p_name, p_description, p_imgname, p_cost, p_status);
    END;
    /

    > Ok, since the table had 10 rows (PK was numbers 1-10, I added number 11 in the PK field for the
    corresponding row.
    Any other way to do this?
    You want to use a number generator to give you a unique number to use as PRODUCT_ID. Such a generator is known as a sequence in Oracle. Like your products table, it needs to be created up front.
    E.g.
    create sequence product_id_sequence start with 1 increment by 1 nocycle nomaxvalue;
    Note that several "copies" of this sequence can be active at the same time to serve a number of concurrent requests. In other words, instead of everyone to queue to get a number from the sequence generator, it creates for example 10 queues and is able to service 10 requests at the same time. This is great for scalability and not creating a bottleneck. At the same time, the numbers handed out are unique but not in a gap free ascending sequence either. Which is fine. Relational design says that we need a UNIQUE number for a surrogate key. Not a gap free ascending number range.
    Okay, in your INSERT statement you need to add the PK column and add the next sequence value into it, e.g.
    INSERT INTO products ( product_id, .... ) VALUES( product_id_sequence.nextval, ... );
    Refer to the documentation URLs posted above on sequences for more details.

Maybe you are looking for

  • Hp photosmart 3210xi said non hp cartridge. Said to replace new one just inserted. Wont work!

    hp photosmart 3210 xi said non hp cartridgfe.  Said to replace new hp cartridge when one had been inserted.  Wont work!

  • APDPROXY - Automatic Startup

    Ok so there's been lots of posts in regards to this issue, I personally responded to a question on how to kill the process, (or so I thought) Ken Mata, "Stop automatic startup??" #1, 10 Sep 2005 4:07 pm so after revisiting that post and finding out t

  • Calling service from another classloading

    Hello! I have client and service classes residing in the same jvm (let's say in same container to be clear). Client code call service. I want to separate classloaders that load client and service classes, and client code passed arguments to service b

  • DACTree in OnlineOrders Tutorial Sample

    I get the following error when I try to run the DACtree example: System Error: oracle.dacf.dataset.DataSourceOperationException: SessionInfo: Application module creation failed; className: OnlineOrdersModule The test of the applicationmodule works fi

  • HT1212 i tried recovering but it doesn't work

    my Iphone says that that its disabled connect to iTunes it was my uncles than he passed it on to me  but he forgot the pass-code so please help