SELECT Statement Criteria Help

Hello Friends,
LM_SUPERVISOR_ID and SUPERVISOR_ID are character fields in the database .
I am getting the rows even when SUPERVISOR_ID and LM_SUPERVISOR_ID equal When i use not equl in criteria . I trien using to_char () function . what else could be wrong in SQL ?
SELECT DISTINCT A.SUPERVISOR_ID
,A.EMPLID ,A.EFFDT
FROM PS_JOB@h88vatst A
, PS_LM_PERSON B
, PS_LM_PERSON_JOB C
WHERE A.EMPLID = B.LM_HR_EMPLID
AND C.LM_PERSON_ID = B.LM_PERSON_ID
AND A.SUPERVISOR_ID <> ' '
AND C.LM_SUPERVISOR_ID <> A.SUPERVISOR_ID
regards,
Karu

Karu,
The output that you are getting is due to cartesian product.
Maybe following is what you are looking for:
SQL> ed
Wrote file afiedt.buf
  1  SELECT DISTINCT A.SUPVID
  2  ,A.EMPLID
  3  FROM PS_JOB A
  4  , LM_PERSON B
  5  , PS_LM_PERSON_JOB C
  6  WHERE C.PERSON_ID = B.PERSONID
  7  AND A.SUPVID <> ' '
  8* AND (A.EMPLID, A.SUPVID) not in (select emplid, SUPVID from PS_LM_PERSON_JOB)
SQL> /
SUPVID     EMPLID
000025     000008However, you need to consider what Kamal has asked about nullibility of EMPLID and SUPVID columns and how do you want to handle them.
Not sure (and don't have enough information about your application), but seemed something fishy about your design. Hope you have ensured these 3 tables are related to each other (i.e. referrential integrity and one-to-many, many-to-many relationships etc) in a way that satisfies your business requirement completely.

Similar Messages

  • SQL Select Statement. Help Needed

    Hi all,
    Can anyone point out why i am getting this error. Any help is appreciated.
    javax.servlet.ServletException: [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect
    EmployeeID field is text field.(MS Access DB). It is not a primary key.
    Here is what I have(code)
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url = "jdbc:odbc:empapp";
    Connection conn = DriverManager.getConnection(url);
    Statement stmt = conn.createStatement();
    String id = request.getParameter("ID"); // ID is passed from another jsp page.
    if(id != null)
    String query = "SELECT EmployeeID, LastName, FirstName, EmailAddress, PhoneNumber from Employees where EmployeeID=?";
    PreparedStatement statement = conn.prepareStatement(query);
    statement.setString(1, id);
    ResultSet rs = stmt.executeQuery(query);
    %>
    Employee ID: <%= rs.getString("EmployeeID") %>
    Lasyt Name: <%=rs.getString("LastName")%>
    First Name: <%=rs.getString("FirstName")%>
    Email Address: <%=rs.getString("EmailAddress") %>
    PhoneNumber: <%=rs.getString("PhoneNumber") %>
    <%
    %>
    I m only trying to print it out.
    Thanks

    Thanks for the reply. I know this is not the way to do
    it. I have a question for you.
    What's the difference in storing the DB connection
    info, query etc..
    a. In a pure java object.
    b. In a servlet.
    c. In a java bean.
    Which one to use and why?
    Thank you
    What's the difference between (a) and (c) in your mind? Are not Java Beans pure Java objects?
    Depends on the app.
    For my Web apps I let Tomcat create a connection pool for me. I don't store connections anywhere in my code. I check them out of the pool, use them, and put them back.
    I think this is a good way to go for any app.

  • Unsure of syntax for SQL SELECT statement, please help

    I am trying to execute the following SQL statement:
    ResultSet rs = stB.executeQuery("SELECT quantity FROM stocklevels WHERE code=salesCode[x]");where SalesCode is an integer array and x is a counter used to loop this part of the code. I keep getting the "syntax error - missing operator" message when I run the code and get to this line, can anybody please tell me the correct syntax/form to use? Many thanks.

    Is salesCode an array in Java or in your DB? I don't know anything about SQL arrays, so I'll assume it's in your Java code.
    You want to put the value of salesCode[x] into the query--say 123456. But what you've got is like doing System.out.println("The code = salesCode[x]"); and then wondering why you're seeing "salesCode[x]" instead of "123456. You'd need to do System.out.println("The code = " + salesCode[x]); Similarly, you could take the "salesCode[x]" out of the string literal that's forming the query, in order to have it evaluated as an int and stuffed into the string as "123456". It would be better to use a PreparedStatement though: ps = con.prepareStatement("select .... where code = ?");
    ps.setInt(1, salsedCode[x]);
    rs = ps.executeQuery();

  • Error by using database procedure in select statement

    hi ,
    I have built a database procedure having one parameter with in out varchar type. that return value with some addition.
    i am using it with some column in select statement only for display purpuses but i am facing error by doing that in select statement. that procedure is working well with bind variable but not with select statement.
    plz help me how i can use a procedure in select statement. or can i do it or not.

    plz help me how i can use a procedure in select statement. or can i do it or not.A workaround could be to create a wrapper function for your procedure. One that only passes the input parameters and returns the output parameter.
    The simply call this function in your select which internally calls the procedure.

  • Can use place holder (?)in select statement.

    Is it possible to have have a place holder in my select clause or it is possible to have only in where clause?
    Please find the below query I am having place holder in select statement emp_id=? nit it is throwing an error for me.
    select * from(select myrows.*, rownum rn from(select acc as account, es as identity,address as street_address
    state as stae,select id from mytable where emp_id=? as my site from myview
    where ert_id=? and chek=?
    I am getting an error ORA-00936:     missing expression is it possible to have a place holder in select statement
    Please help me on this.
    Regards,
    BA

    user575682 wrote:
    Is it possible to have have a place holder in my select clause or it is possible to have only in where clause?
    Please find the below query I am having place holder in select statement emp_id=? nit it is throwing an error for me.
    select * from(select myrows.*, rownum rn from(select acc as account, es as identity,address as street_address
    state as stae,select id from mytable where emp_id=? as my site from myview
    where ert_id=? and chek=?
    I am getting an error ORA-00936:     missing expression is it possible to have a place holder in select statement
    Please help me on this.
    Regards,
    BAfor clarity and easy to be read i attempted to rearrranged your code and this is what it will look like:
    select *
      from (select myrows.*, rownum rn
              from (select acc as account,
                           es as identity,
                           address as street_address
                           state as stae,
                           select id
                      from mytable
                     where emp_id = ? as my site from myview where ert_id=? and chek=?apparently the syntax is not correct and by that you are missing some comma in your column, ? question mark symbol will not be recognize, and some ')' closed parenthesis.
    are you using a report builder that you want to use a placeholder column?

  • [u][b]Performance Tuning Help[/b][/u] : Repeating HUGE Select Statement...

    I have a select statement that I am repeating 12 times with the only difference between them all being the date range that is grabbed. Essentially, I am grabbing the last 12 months of information from the same table here is a copy of one of the sections:
    (select
    a.account_id as account_id,
    a.company_id as company_id,
    a.account_number as acct_number,
    to_char(a.trx_date, 'YYYY/MM') as month,
    sum(a.amount_due_original) as amount
    from
    crystal.financial_vw a
    where
    a.cust_since_dt is not null
    and a.cust_end_dt is null
    and a.trx_date > add_months(sysdate, -13)
    and a.trx_date <= add_months(sysdate, -12)
         group by
              a.account_id,
              a.company_id,
              a.account_number,
              to_char(a.trx_date, 'YYYY/MM')) b
    I am now looking to do some tuning on this and was wondering if anyone has any suggestions. My initial thought was to use cursors or some sort of in memory storage to temporarily process the information into a pipe-delimited flat file.

    "Don't need:
    to_char(a.trx_date, 'YYYY/MM')"
    Are you sure?
    "Change to (just to make it easier to read):
    a.trx_date between add_months(sysdate, -13)
    and a.trx_date <= add_months(sysdate, -12)"
    What? That's not even valid syntax is it? Besides the fact that the BETWEEN operator is inclusive (i.e. > add_months(sysdate, -13) is not the same as between add_months(sysdate, -13) ...).
    "And be sure you have an index on:
    cust_since_dt, cust_end_dt, trx_date in financial_vw."
    What information did you base this conclusion on. Just because something is in the where clause doesn't mean you should automatically throw an index on it. What if 90% of the rows satisfy those null/not null criteria? What if there's only one year of data in this table? Are you certain an index would help pick out all the data for one month more efficiently than a full table scan?
    My immediate question was why are you breaking the data for each month up into separate subqueries like this at all? What is it that your doing with these subqueries that you don't believe can be accomplished with a single grouped query?

  • SELECT statement in FROM clause - syntax help

    Hi,
    I want to have a SELECT statement in the FROM clause. I get syntax error when doing this and since I am new to ABAP I need som help.
    I want to do the following, (and if anyone has any SELECT statement from their own system which you know there is no syntax error in please post it here so I can analyze the syntax):
    *I leave the INTO itab clause out, since I only want to demonstrate the functionality
    I am trying to get.
    <b>SELECT</b> tableOne~someField
    <b>FROM</b> tab <b>AS</b> tableOne (<b>SELECT</b> someField
                                         <b>FROM</b> tab
                                         <b>WHERE</b> someFiled > 1) <b>AS</b> tableTwo
    <b>WHERE</b> tableOnesomeField > tableTwosomeField
    like I said, the problem is that the select statement in the parenthesis in the from clause seems to be incorrect because I get "wrong expression" when trying to compile. Is this because I cannot have a select statement in the from clause or is it because of a minor syntax error, such as I forgot a dot, or some other sign?
    thanks and regards
    Baran

    sorry i am not enough familiar with sub queries but some error i can see which i will state here.
    1> you have to use sub queries i.e. select in ( ) after where clause because here you are fulfilling a where clause by another select statement.
    like this
    SELECT * FROM SFLIGHT
        INTO WA
        WHERE SEATSOCC = ( SELECT MAX( SEATSOCC ) FROM SFLIGHT ).
    2> you cannot specify field name without into clause either you have to use
    select *  or select f1 into tab-f1  like this...
    but if you are using select * without into you have to define
    tables : dbtab.
    selec * from dbtab. like that.
    regards
    shiba dutta

  • MySQL Select Statement Help Required

    I am trying to generate a report in VS 2008 (C#) using a mysql select statement but cannot get it right.
    I have groups that meet on a weekly basis on different days. I want to generate a report that shows me all the members that have not attended their group where they have missed 3 meetings in a row.
    Below is the select statement I have tried but it does not give me the results I am looking for. I have tried to look at all the meetings in a 4 week period but would prefer to look at the last 3 meetings that are recorded. Some groups might not record a meeting every week. So I want to look at the last 3 recorded meetings and count each members attendance and only report on the members with more than 3 meetings missed.
    SELECT COUNT(`groupattendance`.`Attended`) AS Attendance, `smallgroupform`.`MeetingDate`, `userinfo`.`FirstName`, `userinfo`.`Surname`, `smallgroup`.`GroupName`, `groupattendance`.`Attended`, `groupattendance`.`UserID`, `groupattendance`.`GroupID`
    FROM ((`anatomy`.`groupattendance` `groupattendance`
    INNER JOIN `anatomy`.`smallgroupform` `smallgroupform` ON `groupattendance`.`FormID` = `smallgroupform`.`FormID`)
    INNER JOIN `anatomy`.`userinfo` `userinfo` ON `groupattendance`.`UserID` = `userinfo`.`UserID`)
    INNER JOIN `anatomy`.`smallgroup` `smallgroup` ON `groupattendance`.`GroupID` = `smallgroup`.`GroupID`
    WHERE (`smallgroupform`.`MeetingDate` >= DATE_SUB(CURDATE(),INTERVAL 4 WEEK) AND `smallgroupform`.`MeetingDate` <= CURDATE()) AND `groupattendance`.`Attended` = 'False'
    GROUP BY `userinfo`.`UserID`
    HAVING Attendance >= 3
    Thanks,
    Garth.

    Hi Garth,
    Seems no one can help you directly. Try googling your SQL request. Someone may be able to help you. At this point its not really a Cr problem.
    One option is to get all the data and add filtering using the record selection formula.
    Thank you
    Don

  • Need Help in Select Statement

    Dear gurus
    Below is my select statement. Im having problem with statement.
    the problem is that  the table vbfa  have some entries like this
    800     1400004654     10     3900012235     10     M     424,672.68
    800     1400004654     10     3900012257     10     M     137,093.36
    800     1400004654     20     3900012311     20     M     214,257.36
    800     1400004654     30     3900012412     30     M     81,248.44
    800     1400004654     30     3900012901     30     M     166,920.68
    When the select statement is run it does not fetch the data of LINE number 2 and Line number 5
    LOOP AT itab1.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbfa
        FROM vbfa
        WHERE vbelv = itab1-vgbel
        AND posnn = itab1-vgpos
        AND vbtyp_n = 'M'.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbrk
          FROM vbrk
          WHERE vbeln = wa_vbfa-vbeln
          AND vbtyp = 'M'.
        IF sy-subrc = 0.
            itab1-lfimg = wa_vbfa-rfmng.
           itab1-old_price = wa_vbfa-rfwrt.
           MODIFY itab1.
           ELSE.
        ENDIF.
      ENDLOOP.
    Please Help
    Regards
    Saad Nisar

    Hello Saad,
    The reason why you are not getting the 2nd and 5th entries is that, the where conditions vbelv, posnn and vbtyp_n matches for both the 1st and 2nd record where select will pick only the 1st record. The same way for 4th and 5th record. so its picking only 4th.
    So to avoid this add even vbeln in the where condition of the select query
    LOOP AT itab1.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbfa
        FROM vbfa
        WHERE vbelv = itab1-vgbel
        AND posnn = itab1-vgpos
       AND vbeln = itab1-field           " Add the corresponding field here
        AND vbtyp_n = 'M'.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbrk
          FROM vbrk
          WHERE vbeln = wa_vbfa-vbeln
          AND vbtyp = 'M'.
        IF sy-subrc = 0.
            itab1-lfimg = wa_vbfa-rfmng.
           itab1-old_price = wa_vbfa-rfwrt.
           MODIFY itab1.
           ELSE.
        ENDIF.
      ENDLOOP.
    Vikranth

  • Need help on select statement...

    Hi,
    I need to fetch from vbfa table those records where vbeln starts with '0800'.
    my select statement given below gives a syntax error..pl help.
    SELECT * FROM vbfa WHERE vbeln(4) = '0800'.
    vbeln(4) is not accepted and i get the message ' field vbeln(4) is unknown' ...what to do?
    thks

    Use LIKE. Please see F1 on this.
    Rob
    (changed CP to LIKE)
    Edited by: Rob Burbank on Sep 15, 2008 11:18 AM

  • Select statement issue- urgent pls help

    Hi
    The following select statement is always  failed, even LIKP table has data. pls help me
      LOOP AT LT_VBRP.
        IF LV_KEEP_VGBEL <> LT_VBRP-VGBEL.
          LV_KEEP_VGBEL = LT_VBRP-VGBEL.
          CLEAR LIKP.
          SELECT single  VBELN TRAID TRATY VERUR BOLNR LFDAT
          FROM LIKP INTO
          (LIKP-VBELN,LIKP-TRAID,LIKP-TRATY,LIKP-VERUR,LIKP-BOLNR,LIKP-LFDAT)
            WHERE BOLNR = LT_VBRP-VGBEL.
          IF SY-SUBRC = 0.
            LV_ASN_FOUND = 'X'.
          ELSE.
            CLEAR LV_ASN_FOUND.
          ENDIF.
        ENDIF.
        MOVE-CORRESPONDING LT_VBRP TO LT_LIPOV.
        IF LV_ASN_FOUND = 'X'.
          LT_LIPOV-VBELN    = LIKP-VBELN.             "ASN #
          LT_LIPOV-LFDAT    = LIKP-LFDAT.
         lt_lipov-verur    = likp-verur.
          LT_LIPOV-BOLNR    = LIKP-BOLNR.             "DDL#
          LT_LIPOV-KOMAU    = LIKP-VBELN.
    get the ASN line number details.
          SELECT VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS FROM LIPS INTO
          TABLE LT_LIPOV
           WHERE VBELN = LIKP-VBELN.
        ELSE.
          CLEAR LT_REP-VBELN.
          CLEAR LT_REP-LFDAT.
          CLEAR LT_REP-VERUR.
          CLEAR LT_REP-BOLNR.
          LT_REP-KOMAU = LT_VBRP-VBELN.             "Inv no
          LV_MESSAGE = TEXT-504.
          PERFORM CREATE_REPORT_RECORD_LIN01.
          LT_REP-LINE_COLOUR = 'C610'.  " red Intensified
        ENDIF.
        APPEND LT_REP.
        APPEND LT_LIPOV.
        CLEAR LT_LIPOV.
        CLEAR LT_REP.
      ENDLOOP.

    Hi Kumar....
    if statement should not be like ..
    if lv_keep_vgbel lt_vbrp-vgbel.
    Should be like this  if lv_keep_vgbel = lt_vbrp-vgbel.
    and try to use work area and table to select and loop the data...
    Have YOu checked whether da data in it_vbrp...
    there few error in way You are writing...
    And one more thing in the table LIKP the field BOLNR is 35 Char and VGBEL of VBRP is 10 char ...and your are equalling that to extract the data which will not happen even..
    So before select statement change VBRP-VGBEL as 35 char varible by using like this
    data : v_vgbel type likp-bolnr.
    loop at lt_vbrp.
    if lv_keep_vgbel lt_vbrp-vgbel. " Why did you right the statement like this
        if lv_keep_vgbel = lt_vbrp-vgbel.
            clear likp.
                call function 'CONVERSION_EXIT_ALPHA_INPUT'
                  exporting
                    input  = lt_vbrp-vgbel
                  importing
                    output = v_vgbel.
                  select single vbeln traid traty verur bolnr lfdat
                                                      from likp into
                                                     (likp-vbeln,likp-traid,likp-traty,likp-verur,likp-bolnr,likp-lfdat)
                                                      where bolnr = v-vgbel.
    regards,
    sg
    Edited by: Suneel Kumar Gopisetty on May 26, 2008 4:41 AM

  • Need help using Select statement  to  retrieve one record

    Hi guys, my first post so be gentle please. The basis of this fucntion is to search my dtabase using the select statement to find the record the user wants, by retrieving the name of theitem from the text box. details are then displayed on a joption message box.
    Everytime I run this program it throws an exception 'Exception: null'. Can anyone see where I am going wrong, I have only bn learning java for thepast 6 months so perhaps I am doing something wrong.
    Or perhaps there is another way for me to close the st, con, rs?
    Your help appreciated
    public void searchproducts(){
    Connection con = null;
    Statement st = null;
    ResultSet rs = null;
    try{
    //creating and loading a database connection
    String dbUrl = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=db2.mdb;"; // String dbUrl = "jdbc:odbc:people";
    String user = "";
    String password = "";
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection c = DriverManager.getConnection(
    dbUrl, user, password);
    int count;
    st = con.createStatement();
    rs = st.executeQuery("SELECT ItemName, Country, Yearmade, ValuePrice, Forsale FROM Collectman WHERE ItemName="+" '"+txtsearchproduct.getText()+"'" );
    while(rs.next()) {
    String ItemName = rs.getString(1);
    String Country = rs.getString(2);
    String Yearmade = rs.getString(3);
    String ValuePrice = rs.getString(4);
    String Forsale = rs.getString(5);
    JOptionPane.showMessageDialog(null, "product details are: " + ItemName + " " + Country + " " + Yearmade + " " + ValuePrice + " " + Forsale);
    //It keeps on throwing this excpetion with null
    catch (Exception e) {
    System.err.println("Exception: " + e.getMessage());
    } finally {
    try {
    if(rs != null)
    rs.close();
    if(st != null)
    st.close();
    if(con != null)
    con.close();
    } catch (SQLException e) {
    }

    And while we're waiting on that, I'll just say it's nice to see you almost got the general layout of a db call correct...that's a rare thing around here. The finally should have a try/catch round each of the close statements and not around all three in one go. If the resultset throws an exception in your version then you would fail to close either the statement or the connection.
    The second thing is, look up PreparedStatements. They're a better choice for handling SQL requiring variables than using a bog standard Statement.

  • Help!  Crashing JVM while doing SELECT statement through JDBC-ODBC bridge

    Hi everyone,
    Help please. I am working on a project on my own computer using the jdk version 1.5.0_04.
    The project involves running a select on a Microsoft Access 2003 database via the JDBC-ODBC bridge. The database is registered in the ODBC database sources, and it works fine in those other projects.
    Yet, when I'm running similar code in this project, it crashes the Java Virtual Machine. I get the following in a log file:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c901010, pid=2308, tid=1364
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_04-b05 mixed mode, sharing)
    # Problematic frame:
    # C [ntdll.dll+0x1010]
    --------------- T H R E A D ---------------
    Current thread (0x000360f8): JavaThread "main" [_thread_in_native, id=1364]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000018
    Registers:
    EAX=0x00000004, EBX=0x26bb5250, ECX=0x7ffde000, EDX=0x00000004
    ESP=0x0007f8d8, EBP=0x0007f8f0, ESI=0x00000000, EDI=0x02ea1590
    EIP=0x7c901010, EFLAGS=0x00010246
    Top of Stack: (sp=0x0007f8d8)
    0x0007f8d8: 74355a16 00000004 02ea15b4 7432139f
    0x0007f8e8: 02ea15b4 02ea1590 0007f900 74322c5d
    0x0007f8f8: 02ea15b4 000361b4 0007f914 74325fa0
    0x0007f908: 02ea1590 74350000 00390000 0007f930
    0x0007f918: 7432740e 02ea1590 0007f950 00000003
    0x0007f928: 00aabe20 000361b4 0007f948 6d3e11da
    0x0007f938: 02ea1590 0007f950 000360f8 26bb5250
    0x0007f948: 0007f980 00ad826f 00000000 0007f99c
    Instructions: (pc=0x7c901010)
    0x7c901000: 90 90 90 90 90 64 8b 0d 18 00 00 00 8b 54 24 04
    0x7c901010: 83 7a 14 00 75 4f f0 ff 42 04 75 19 8b 41 24 89
    Stack: [0x00040000,0x00080000), sp=0x0007f8d8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x1010]
    C [ODBC32.dll+0x2c5d]
    C [ODBC32.dll+0x5fa0]
    C [ODBC32.dll+0x740e]
    C [JdbcOdbc.dll+0x11da]
    j sun.jdbc.odbc.JdbcOdbc.allocStmt(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocStmt(J)J+47
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement(II)Ljava/sql/Statement;+27
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement()Ljava/sql/Statement;+7
    j LUDatabaseWorker.getBoxScoreFromDB(LStatisticalItems/BoxScore;)LStatisticalItems/BoxScore;+215
    j NewUSCHOLiveUpdate.processTheBoxScores()V+78
    j NewUSCHOLiveUpdate.main([Ljava/lang/String;)V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x82696]
    V [jvm.dll+0xd6fd9]
    V [jvm.dll+0x82567]
    V [jvm.dll+0x895e6]
    C [java.exe+0x14c0]
    C [java.exe+0x64cd]
    C [kernel32.dll+0x16d4f]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.jdbc.odbc.JdbcOdbc.allocStmt(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocStmt(J)J+47
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement(II)Ljava/sql/Statement;+27
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement()Ljava/sql/Statement;+7
    j LUDatabaseWorker.getBoxScoreFromDB(LStatisticalItems/BoxScore;)LStatisticalItems/BoxScore;+215
    j NewUSCHOLiveUpdate.processTheBoxScores()V+78
    j NewUSCHOLiveUpdate.main([Ljava/lang/String;)V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00a6e550 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2240]
    0x00a6d258 JavaThread "CompilerThread0" daemon [_thread_blocked, id=736]
    0x00a6c440 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2252]
    0x00a47808 JavaThread "Finalizer" daemon [_thread_blocked, id=3352]
    0x00a46328 JavaThread "Reference Handler" daemon [_thread_blocked, id=1560]
    =>0x000360f8 JavaThread "main" [_thread_in_native, id=1364]
    Other Threads:
    0x00a67a68 VMThread [id=2700]
    0x00a6f8c8 WatcherThread [id=2480]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 404K [0x22b90000, 0x22c30000, 0x23070000)
    eden space 512K, 70% used [0x22b90000, 0x22bea738, 0x22c10000)
    from space 64K, 66% used [0x22c20000, 0x22c2a990, 0x22c30000)
    to space 64K, 0% used [0x22c10000, 0x22c10000, 0x22c20000)
    tenured generation total 1408K, used 846K [0x23070000, 0x231d0000, 0x26b90000)
    the space 1408K, 60% used [0x23070000, 0x231438e0, 0x23143a00, 0x231d0000)
    compacting perm gen total 8192K, used 507K [0x26b90000, 0x27390000, 0x2ab90000)
    the space 8192K, 6% used [0x26b90000, 0x26c0ed38, 0x26c0ee00, 0x27390000)
    ro space 8192K, 66% used [0x2ab90000, 0x2b0e9dc0, 0x2b0e9e00, 0x2b390000)
    rw space 12288K, 46% used [0x2b390000, 0x2b927e98, 0x2b928000, 0x2bf90000)
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\jdk1.5.0_04\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d6b0000 - 0x6d839000      C:\jdk1.5.0_04\jre\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x6d2f0000 - 0x6d2f8000      C:\jdk1.5.0_04\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d680000 - 0x6d68c000      C:\jdk1.5.0_04\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\jdk1.5.0_04\jre\bin\java.dll
    0x6d6a0000 - 0x6d6af000      C:\jdk1.5.0_04\jre\bin\zip.dll
    0x6d3e0000 - 0x6d3ed000      C:\jdk1.5.0_04\jre\bin\JdbcOdbc.dll
    0x74320000 - 0x7435d000      C:\WINDOWS\system32\ODBC32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\COMCTL32.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x20000000 - 0x20017000      C:\WINDOWS\system32\odbcint.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x0f9a0000 - 0x0f9ab000      C:\WINDOWS\system32\VBAJET32.DLL
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    VM Arguments:
    java_command: NewUSCHOLiveUpdate
    Environment Variables:
    JAVA_HOME=C:\jdk1.5.0_04
    CLASSPATH=C:\jdk1.5.0_04\bin\NewLiveUpdate;C:\jdk1.5.0_04\bin\NewLiveUpdate\StatisticalItems;C:\jdk1.5.0_04\bin\NewLiveUpdate\Exceptions;C:\jdk1.5.0_04\bin\NewLiveUpdate\Helper;
    PATH=C:\jdk1.5.0_04\bin;C:\JavaTools\ant\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;;c:\program files\devstudio\sharedide\bin\ide;c:\program files\devstudio\sharedide\bin;c:\program files\devstudio\vc\bin
    USERNAME=Kevin Yetman
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1047020k(627436k free), swap 2518436k(2161900k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_04-b05) for windows-x86, built on Jun 3 2005 02:10:41 by "java_re" with MS VC++ 6.0
    The code that is causing the problem is in the class shown below. It is in the method getBoxScoreFromDB. When it attempts to run the first select statement, it causes the crash that I showed above.
    The connection is set up by the calling class. The calling class constructs a LUDatabaseWorker, sets the necessary parameters (dbURL, driver class, username and password), and calls the openDBConnection().
    // LUDatabaseWorker.java
    import StatisticalItems.*;
    import java.sql.*;
    import java.util.*;
    public class LUDatabaseWorker
       private StatisticalItems.BoxScore m_CurrentBoxScoreInDB;
       private Connection                m_Connection;
       private String                    m_dbURL;
       private String                    m_dbUsername;
       private String                    m_dbPassword;
       private String                    m_dbDriverClass;
       public LUDatabaseWorker()
       public StatisticalItems.BoxScore getCurrentBoxScoreInDB()
       {  return m_CurrentBoxScoreInDB;
       public void setDBURL(String dbURL)
       {  m_dbURL=new String(dbURL);
       public void setDBUsername(String dbUsername)
       {  m_dbUsername=new String(dbUsername);
       public void setDBPassword(String dbPassword)
       {  m_dbPassword=new String(dbPassword);
       public void setDBDriverClass(String dbDriverClass)
       {  m_dbDriverClass=new String(dbDriverClass);
       public void openDBConnection()
          throws SQLException, ClassNotFoundException
          Class.forName(m_dbDriverClass);
          m_Connection=DriverManager.getConnection(m_dbURL, m_dbUsername, m_dbPassword);
       public void closeDBConnection()
          throws SQLException
          m_Connection.close();
       public Hashtable<String, Integer> getUSCHOCodeToMyTeamIndexMap()
          throws SQLException
          Hashtable<String, Integer> ht=new Hashtable<String, Integer>();
          String sqlQuery="SELECT TeamIndex, TeamCode FROM TeamLiveUpdateUSCHO";
          Statement st=m_Connection.createStatement();
          ResultSet rs=st.executeQuery(sqlQuery);
          while(rs.next())
             String uschoCode=new String(rs.getString(2));
             Integer myTeamIndex=new Integer(rs.getInt(1));
             ht.put(uschoCode, myTeamIndex);
          rs.close();
          st.close();
          return ht;
       public StatisticalItems.BoxScore getBoxScoreFromDB(StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          StatisticalItems.BoxScore  boxScoreFromDB=new StatisticalItems.BoxScore();
          // get the basic game info from the live update box score.
          StatisticalItems.Game    luBasicGameData=luBoxScore.getBasicGameData();
          // get the basic game data.
          String sqlQuery="SELECT * FROM Game WHERE (Year=" + luBasicGameData.getYear() + ") AND (Month='";
          if( luBasicGameData.getMonth() < 10 )
          {  sqlQuery+="0";
          sqlQuery+=luBasicGameData.getMonth() + "') AND (Day='";
          if( luBasicGameData.getDay() < 10 )
          {  sqlQuery+="0";
          sqlQuery+=luBasicGameData.getDay() + "') AND (HomeTeamIndex=" + luBasicGameData.getHomeTeamIndex();
          sqlQuery+=") AND (VisitorTeamIndex=" + luBasicGameData.getVisitorTeamIndex() + ")";
          System.out.println(sqlQuery);
          Statement st=m_Connection.createStatement();
          ResultSet rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.Game  dbGame=boxScoreFromDB.getBasicGameData();
             dbGame.setGameIndex(rs.getInt("GameIndex"));
             dbGame.setHomeTeamIndex(rs.getInt("HomeTeamIndex"));
             dbGame.setVisitorTeamIndex(rs.getInt("VisitorTeamIndex"));
             dbGame.setHomeTeamGoals(rs.getInt("HomeTeamGoals"));
             dbGame.setVisitorTeamGoals(rs.getInt("VisitorTeamGoals"));
             dbGame.setHomeTeamScoredFirst(rs.getString("HomeTeamScoredFirst"));
             dbGame.setYear(rs.getInt("Year"));
             dbGame.setMonth(rs.getInt("Month"));
             dbGame.setDay(rs.getInt("Day"));
             dbGame.setLeagueGame(rs.getBoolean("LeagueGame"));
             dbGame.setNeutralSiteGame(rs.getBoolean("NeutralSiteGame"));
             dbGame.setForfeitHome(rs.getBoolean("ForfeitHome"));
             dbGame.setForfeitVisitor(rs.getBoolean("ForfeitVisitor"));
             dbGame.setPlayoffGame(rs.getBoolean("PlayoffGame"));
             boxScoreFromDB.setBasicGameData(dbGame);
          StatisticalItems.Game  dbGame=boxScoreFromDB.getBasicGameData();
          // get the home team goals per period.
          sqlQuery="SELECT * FROM GameDetailGoalsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailGoalsPerPeriod dbHomeGPP=boxScoreFromDB.getHomeTeamGoalsPerPeriod();
             dbHomeGPP.setGameDetailGoalsPerPeriodIndex(rs.getInt("GameDetailGoalsPerPeriodIndex"));
             dbHomeGPP.setGameIndex(rs.getInt("GameIndex"));
             dbHomeGPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeGPP.setPeriod1(new Integer(rs.getInt("GoalsFirstPeriod")));
             dbHomeGPP.setPeriod2(new Integer(rs.getInt("GoalsSecondPeriod")));
             dbHomeGPP.setPeriod3(new Integer(rs.getInt("GoalsThidPeriod")));
             dbHomeGPP.setOvertime(new Integer(rs.getInt("GoalsOvertime")));
             dbHomeGPP.setEmptyNetGoals(rs.getInt("EmptyNetGoals"));
             dbHomeGPP.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamGoalsPerPeriod(dbHomeGPP);
          // get the visitor team goals per period. 
          sqlQuery="SELECT * FROM GameDetailGoalsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailGoalsPerPeriod dbVisitorGPP=boxScoreFromDB.getVisitorTeamGoalsPerPeriod();
             dbVisitorGPP.setGameDetailGoalsPerPeriodIndex(rs.getInt("GameDetailGoalsPerPeriodIndex"));
             dbVisitorGPP.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorGPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorGPP.setPeriod1(new Integer(rs.getInt("GoalsFirstPeriod")));
             dbVisitorGPP.setPeriod2(new Integer(rs.getInt("GoalsSecondPeriod")));
             dbVisitorGPP.setPeriod3(new Integer(rs.getInt("GoalsThidPeriod")));
             dbVisitorGPP.setOvertime(new Integer(rs.getInt("GoalsOvertime")));
             dbVisitorGPP.setEmptyNetGoals(rs.getInt("EmptyNetGoals"));
             dbVisitorGPP.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamGoalsPerPeriod(dbVisitorGPP);
          // get the home team shots per period.
          sqlQuery="SELECT * FROM GameDetailShotsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailShotsPerPeriod dbHomeSPP=boxScoreFromDB.getHomeTeamShotsPerPeriod();
             dbHomeSPP.setGameDetailShotsPerPeriodIndex(rs.getInt("GameDetailShotsPerPeriodIndex"));
             dbHomeSPP.setGameIndex(rs.getInt("GameIndex"));
             dbHomeSPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeSPP.setPeriod1(new Integer(rs.getInt("ShotsFirstPeriod")));
             dbHomeSPP.setPeriod2(new Integer(rs.getInt("ShotsSecondPeriod")));
             dbHomeSPP.setPeriod3(new Integer(rs.getInt("ShotsThidPeriod")));
             dbHomeSPP.setOvertime(new Integer(rs.getInt("ShotsOvertime")));
             dbHomeSPP.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamShotsPerPeriod(dbHomeSPP);
          // get the visitor team shots per period. 
          sqlQuery="SELECT * FROM GameDetailShotsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailShotsPerPeriod dbVisitorSPP=boxScoreFromDB.getVisitorTeamShotsPerPeriod();
             dbVisitorSPP.setGameDetailShotsPerPeriodIndex(rs.getInt("GameDetailShotsPerPeriodIndex"));
             dbVisitorSPP.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorSPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorSPP.setPeriod1(new Integer(rs.getInt("ShotsFirstPeriod")));
             dbVisitorSPP.setPeriod2(new Integer(rs.getInt("ShotsSecondPeriod")));
             dbVisitorSPP.setPeriod3(new Integer(rs.getInt("ShotsThidPeriod")));
             dbVisitorSPP.setOvertime(new Integer(rs.getInt("ShotsOvertime")));
             dbVisitorSPP.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamShotsPerPeriod(dbVisitorSPP);
          // get the home team special teams.
          sqlQuery="SELECT * FROM GameDetailSpecialTeams WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailSpecialTeams dbHomeST=boxScoreFromDB.getHomeTeamSpecialTeams();
             dbHomeST.setGameDetailSpecialTeamsIndex(rs.getInt("GameDetailSpecialTeamsIndex"));
             dbHomeST.setGameIndex(rs.getInt("GameIndex"));
             dbHomeST.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeST.setPowerplayGoals(rs.getInt("PowerPlayGoals"));
             dbHomeST.setShorthandedGoals(rs.getInt("ShortHandedGoals"));
             dbHomeST.setPowerplayOps(rs.getInt("PowerPlayOps"));
             dbHomeST.setShorthandedOps(rs.getInt("ShortHandedOps"));
             dbHomeST.setPenalties(rs.getInt("Penalties"));
             dbHomeST.setPenaltyMinutes(rs.getInt("PenaltyMinutes"));
             dbHomeST.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamSpecialTeams(dbHomeST);
          // get the home team special teams.
          sqlQuery="SELECT * FROM GameDetailSpecialTeams WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailSpecialTeams dbVisitorST=boxScoreFromDB.getVisitorTeamSpecialTeams();
             dbVisitorST.setGameDetailSpecialTeamsIndex(rs.getInt("GameDetailSpecialTeamsIndex"));
             dbVisitorST.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorST.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorST.setPowerplayGoals(rs.getInt("PowerPlayGoals"));
             dbVisitorST.setShorthandedGoals(rs.getInt("ShortHandedGoals"));
             dbVisitorST.setPowerplayOps(rs.getInt("PowerPlayOps"));
             dbVisitorST.setShorthandedOps(rs.getInt("ShortHandedOps"));
             dbVisitorST.setPenalties(rs.getInt("Penalties"));
             dbVisitorST.setPenaltyMinutes(rs.getInt("PenaltyMinutes"));
             dbVisitorST.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamSpecialTeams(dbVisitorST);
          rs.close();
          st.close();
          return boxScoreFromDB;    
       public void updateBoxScoreInDB(StatisticalItems.BoxScore  dbBoxScore,
                                      StatisticalItems.BoxScore  luBoxScore,
                                      LUBoxScoreComparator       bsc)
          throws SQLException
          if( bsc.getGameChanged() )
             updateGameInDB(dbBoxScore, luBoxScore);
          if( bsc.getHomeGoalsPerPeriodChanged() )
             updateHomeGoalsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getVisitorGoalsPerPeriodChanged() )
             updateVisitorGoalsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getHomeShotsPerPeriodChanged() )
             updateHomeShotsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getVisitorShotsPerPeriodChanged() )
             updateVisitorShotsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getHomeSpecialTeamsChanged() )
             updateHomeSpecialTeams(dbBoxScore, luBoxScore);
          if( bsc.getVisitorSpecialTeamsChanged() )
             updateVisitorSpecialTeams(dbBoxScore, luBoxScore);
       protected void updateGameInDB(StatisticalItems.BoxScore dbBoxScore,
                                     StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          // the only fields that NEED to be updated are HomeTeamGoals, VisitorTeamGoals, HomeTeamScoredFirst,
          // and LeagueGame.  You can't determine from the LU box Score:
          // Forfeits, NeutralSite, or Playoff.
          // the GameIndex, Both team indexes, and the game date will NEVER change from the database.
          Statement st=m_Connection.createStatement();
          String sqlStmt="UPDATE Game SET ";
          sqlStmt+="HomeTeamGoals=" + luBoxScore.getBasicGameData().getHomeTeamGoals() + ", ";
          sqlStmt+="VisitorTeamGoals=" + luBoxScore.getBasicGameData().getVisitorTeamGoals() + ", ";
          sqlStmt+="HomeTeamScoredFirst='" + luBoxScore.getBasicGameData().getHomeTeamScoredFirst() + "', ";
          sqlStmt+="LeagueGame=" + luBoxScore.getBasicGameData().getLeagueGame() + " ";
          sqlStmt+="WHERE GameIndex=" + dbBoxScore.getBasicGameData().getGameIndex();
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeGoalsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                               StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamGoalsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailGoalsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamGoalsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="GoalsFirstPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="GoalsSecondPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="GoalsThirdPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="GoalsOvertime=" + luBoxScore.getHomeTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+="EmptyNetGoals=" + luBoxScore.getHomeTeamGoalsPerPeriod().getEmptyNetGoals() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getHomeTeamGoalsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailGoalsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, GoalsFirstPeriod, GoalsSecondPeriod, GoalsThirdPeriod, ";
             sqlStmt+="GoalsOvertime, EmptyNetGoals) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getEmptyNetGoals() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateVisitorGoalsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                                  StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getVisitorTeamGoalsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailGoalsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getVisitorTeamGoalsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="GoalsFirstPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="GoalsSecondPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="GoalsThirdPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="GoalsOvertime=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+="EmptyNetGoals=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getEmptyNetGoals() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getVisitorTeamGoalsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailGoalsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, GoalsFirstPeriod, GoalsSecondPeriod, GoalsThirdPeriod, ";
             sqlStmt+="GoalsOvertime, EmptyNetGoals) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getEmptyNetGoals() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeShotsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                               StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamShotsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailShotsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamShotsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="ShotsFirstPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="ShotsSecondPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="ShotsThirdPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="ShotsOvertime=" + luBoxScore.getHomeTeamShotsPerPeriod().getOvertime() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getHomeTeamShotsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailShotsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, ShotsFirstPeriod, ShotsSecondPeriod, ShotsThirdPeriod, ";
             sqlStmt+="ShotsOvertime) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getOvertime() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateVisitorShotsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                                  StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getVisitorTeamShotsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailShotsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getVisitorTeamShotsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="ShotsFirstPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="ShotsSecondPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="ShotsThirdPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="ShotsOvertime=" + luBoxScore.getVisitorTeamShotsPerPeriod().getOvertime() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getVisitorTeamShotsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailShotsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, ShotsFirstPeriod, ShotsSecondPeriod, ShotsThirdPeriod, ";
             sqlStmt+="ShotsOvertime) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getOvertime() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeSpecialTeams(StatisticalItems.BoxScore dbBoxScore,
                                             StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamSpecialTeams().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailSpecialTeams SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamSpecialTeams().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamSpecialTeams().getTeamIndex() + ", ";
             sqlStmt+="PowerplayGoals=" + luBoxScore.getHomeTeamSpecialTeams().getPowerplayGoals() + ", ";
             sqlStmt+="PowerplayOps=" + luBoxScore.getHomeTeamSpecialTeams().getPowerplayOps() + ", ";
             sqlStmt+="ShorthandedGoals=" + luBoxScore.getHomeTeamSpecialTeams().getShorthandedGoals() + ", ";
             sqlStmt+="ShorthandedOps=" + luBoxScore.getHomeTeamSpecialTeams().getShorthande                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    its because you use hungarian notation - that was the hollywood squares answer.
    It looks like a bug in either the ntdll or the JdbcOdbc dll, so I'd see if you can't isolate the problem (like using a smaller bit of code) and file a bug report. Find out exacty what your sql statement is which causes this to crash - hint : line 215

  • Quick help with a select statement...

    Hello all,
    I will try to lay this out as simply as possible.  I have the following table in my code:
    TYPES: BEGIN OF ty_table,
        vbeln TYPE likp-vbeln,
        lfdat TYPE likp-lfdat,
        lfart TYPE likp-lfart,
        wadat_ist TYPE likp-wadat_ist,
        vstel TYPE likp-vstel,
        route TYPE likp-route,
        vsbed TYPE likp-vsbed,
        inco1 TYPE likp-inco1,
        inco2 TYPE likp-inco2,
        kunnr TYPE likp-kunnr,
        kunag TYPE likp-kunag,
        brgew TYPE lips-brgew,
        matnr TYPE lips-matnr,
        arktx TYPE lips-arktx,
        meins TYPE lips-meins,
        lgmng TYPE lips-lgmng,
        vgbel TYPE lips-vgbel,
        name2 TYPE adrc-name2,
        street TYPE adrc-street,
        city1 TYPE adrc-city1,
        region TYPE adrc-region,
        post_code1 TYPE adrc-post_code1,
        lifnr  TYPE lfa1-lifnr,
        name1 TYPE adrc-name1,
        so_vbeln TYPE vbak-vbeln,
        erdat TYPE vbak-erdat,
      END OF ty_table.
    DATA: it_table TYPE TABLE OF ty_table.
    I then run through a select statement as follows:
    * Get data from LIKP and LIPS.
      SELECT a~vbeln a~lfdat a~lfart a~wadat_ist a~vstel a~route a~vsbed b~brgew a~inco1 a~inco2 a~kunnr a~kunag
               b~matnr b~meins b~lgmng b~vgbel b~arktx INTO CORRESPONDING FIELDS OF TABLE it_table
               FROM likp AS a
                INNER JOIN lips AS b ON b~vbeln = a~vbeln
                WHERE a~vstel IN so_vstel
                AND a~wadat_ist IN so_wadat
                AND b~mtart IN so_mtart.
    That works fine.  The next statement, in the report, is the following select.  When this next select runs it clears all of the fields except for vbeln and erdat.  I want c~vbeln to go into it_table-so_vbeln.  Now it is going into it_table-vbeln.
    * Get Sales order info from VBAK
      SELECT c~vbeln c~erdat INTO CORRESPONDING FIELDS OF TABLE it_table
          FROM lips AS a
            INNER JOIN vbap AS b ON b~vbeln = a~vgbel
            AND b~posnr = a~vgpos
              INNER JOIN vbak AS c ON c~vbeln = b~vbeln
              FOR ALL ENTRIES IN it_table
                WHERE a~vgbel = it_table-vgbel.
    I then tried to write the select statement by takign out "into corresponding fields" like the following but it gives my a syntax error on (it_table-so_vbeln , it_table-erdat).
    * Get Sales order info from VBAK
      SELECT c~vbeln c~erdat INTO (it_table-so_vbeln , it_table-erdat)
        FROM lips AS a
          INNER JOIN vbap AS b ON b~vbeln = a~vgbel
          AND b~posnr = a~vgpos
            INNER JOIN vbak AS c ON c~vbeln = b~vbeln
            FOR ALL ENTRIES IN it_table
              WHERE a~vgbel = it_table-vgbel.
    Is there a way to write the second select (the select that is pulling data from VBAK) so that it will not clear the other entries in the table?  Also, is there a way to combine the two selects into one join? 
    Regards,
    Davis

    Following is the entire report, if that makes it easier:
    *& Report  Z_TRANS_EVAL
    REPORT  z_trans_eval.
    TABLES: likp, lips, adrc, vbpa.
    TYPE-POOLS: truxs.
    TYPES: BEGIN OF ty_table,
        vbeln TYPE likp-vbeln,
        lfdat TYPE likp-lfdat,
        lfart TYPE likp-lfart,
        wadat_ist TYPE likp-wadat_ist,
        vstel TYPE likp-vstel,
        route TYPE likp-route,
        vsbed TYPE likp-vsbed,
        inco1 TYPE likp-inco1,
        inco2 TYPE likp-inco2,
        kunnr TYPE likp-kunnr,
        kunag TYPE likp-kunag,
        brgew TYPE lips-brgew,
        matnr TYPE lips-matnr,
        arktx TYPE lips-arktx,
        meins TYPE lips-meins,
        lgmng TYPE lips-lgmng,
        vgbel TYPE lips-vgbel,
        name2 TYPE adrc-name2,
        street TYPE adrc-street,
        city1 TYPE adrc-city1,
        region TYPE adrc-region,
        post_code1 TYPE adrc-post_code1,
        lifnr  TYPE lfa1-lifnr,
        name1 TYPE adrc-name1,
        so_vbeln TYPE vbak-vbeln,
        erdat TYPE vbak-erdat,
      END OF ty_table.
    DATA: it_table TYPE TABLE OF ty_table,
          wa_table LIKE LINE OF it_table,
          it_table_csv TYPE truxs_t_text_data.
    DATA : lv_tabix LIKE sy-tabix.
    DATA temp_string TYPE string.
    DATA w_adrnr TYPE vbpa-adrnr.
    DATA: w_adrnr_sp TYPE vbpa-adrnr.
    * Selction criteria
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-004.
    SELECT-OPTIONS: so_vstel FOR likp-vstel,
                    so_wadat FOR likp-wadat_ist,
                    so_mtart FOR lips-mtart.
    SELECTION-SCREEN END OF BLOCK b2.
    * CSV output filename
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (16) text-002 FOR FIELD p_file.
    PARAMETERS: p_file(30) TYPE c.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    START-OF-SELECTION.
    * Get data from LIKP and LIPS.
      SELECT a~vbeln a~lfdat a~lfart a~wadat_ist a~vstel a~route a~vsbed b~brgew a~inco1 a~inco2 a~kunnr a~kunag
               b~matnr b~meins b~lgmng b~vgbel b~arktx INTO CORRESPONDING FIELDS OF TABLE it_table
               FROM likp AS a
                INNER JOIN lips AS b ON b~vbeln = a~vbeln
                WHERE a~vstel IN so_vstel
                AND a~wadat_ist IN so_wadat
                AND b~mtart IN so_mtart.
    * Get Sales order info from VBAK
      SELECT c~vbeln c~erdat INTO CORRESPONDING FIELDS OF TABLE it_table
          FROM lips AS a
            INNER JOIN vbap AS b ON b~vbeln = a~vgbel
            AND b~posnr = a~vgpos
              INNER JOIN vbak AS c ON c~vbeln = b~vbeln
              FOR ALL ENTRIES IN it_table
                WHERE a~vgbel = it_table-vgbel.
    * Get internal address number for ship to party
      LOOP AT it_table INTO wa_table.
        lv_tabix = sy-tabix.    "update counter.
        SELECT SINGLE adrnr FROM vbpa INTO w_adrnr WHERE
        vbeln = wa_table-vgbel
        AND parvw = 'WE'.
        SELECT SINGLE lifnr FROM vbpa INTO wa_table-lifnr WHERE
          vbeln = wa_table-vbeln
          AND parvw = 'SP'
          AND  posnr = '000000'.
        SELECT SINGLE name1 FROM lfa1 INTO wa_table-name1 WHERE
          lifnr = wa_table-lifnr.
    * Get address data from VBPA
        SELECT city1 region post_code1 INTO CORRESPONDING FIELDS OF wa_table
        FROM adrc WHERE
        addrnumber = w_adrnr.
        ENDSELECT.
    * Update the internal table
        MODIFY  it_table INDEX lv_tabix FROM wa_table.
      ENDLOOP.
    END-OF-SELECTION.
    * Call correct display procedure(s).
      IF p_file <> ''.
    * Save a CSV file
        PERFORM display_csv.
      ELSE.
    *Display in ALV
        PERFORM display_alv.
      ENDIF.
    *&      Form  display_alv
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM display_alv .
      DATA: gr_alv TYPE REF TO cl_salv_table,
            gr_func TYPE REF TO cl_salv_functions,
            gr_columns TYPE REF TO cl_salv_columns_table,
            gr_column TYPE REF TO cl_salv_column_table,
            gr_error TYPE REF TO cx_salv_error.
      TRY.
          CALL METHOD cl_salv_table=>factory
            IMPORTING
              r_salv_table = gr_alv
            CHANGING
              t_table      = it_table.
        CATCH cx_salv_msg INTO gr_error.
      ENDTRY.
      gr_func = gr_alv->get_functions( ).
      gr_func->set_all( abap_true ).
      gr_alv->display( ).
    ENDFORM.                    " display_alv
    *&      Form  display_csv
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM display_csv .
      DATA: w_filename TYPE string.
      CONCATENATE p_file temp_string INTO w_filename.
      CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
        EXPORTING
          i_field_seperator    = ';'
        TABLES
          i_tab_sap_data       = it_table
        CHANGING
          i_tab_converted_data = it_table_csv
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = w_filename
        TABLES
          data_tab = it_table_csv
        EXCEPTIONS
          OTHERS   = 1.
      PERFORM display_alv.
    ENDFORM.                    " display_csv

  • Report help select statements

    Hi frnds i want to write select statement as like this
    Table    Table                  Key         join           
    EKKO,Purchase order header, EBELN    Key for EKPO
    LFA1 ,     Vendor manster ,   LIFNR ,Join with EKKO on LIFNR (One to one)
    EKPO,     PO Lines          EBELN & EBELP,Join with EKKO on EBELN (One to many
    EKET,     PO line schedule, EBELN & EBELP,  Join with EKPO on (EBELN & EBELP)One to many (pick first record)
    EKKN     PO line accounting        EBELN & EBELP     Outer join with EKPO on EBELN & EBELP (One to many)
    EKBE     PO History  EBELN & EBELP Outer join with EKPO on EBELN & EBELP (One to many
    CSKS     Cost center master KOSTL     Inner join with EKKN-KOSTL (One to many - select according to validity)
    <B>NOTE : THE COLUMNS ARE TABLE --- TABLE - TABLE KEY- JOIN</B>
    frnds i hav tried writing first select staement can anyone hlp me in writing other statements
    select aebeln abstyp absart aaedat aernam alifnr aekorg aekgrp awaers awkurs aknttp apstyp aerekz aprdat aretpo bebelp bloekz belikz bmatnr btxz01 bwerks blgort bmatkl bmenge bmeinr bbprme bbpumz bbpumn bnetpr bpeinh bnetwr into corresponding fields of table it_ekko_ekpo from ekko inner join ekpo on ekkoebeln = ekpo~ebeln where select option condtions.....
    thnk u all
    <b>Point are assured </B>
    regards,
    karan
    Message was edited by:
            karan kakkad
    Message was edited by:
            karan kakkad

    Nice table....Erwan.         <a href="http://astore.amazon.com/cuteseller08-20?node=7"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=2"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=3"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=4"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=5"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=6"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=7"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=8"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=9"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=10"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=11"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=12"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=13"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=14"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=15"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=16"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=17"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=18"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=19"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=20"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=21"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=22"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=23"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=24"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=25"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=26"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=27"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=28"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=29"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=30"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=31"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=32"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=33"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=34"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=35"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=36"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=37"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=38"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=39"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=40"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=41"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=42"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=43"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=44"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=45"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=46"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=47"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=48"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=49"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=50"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=51"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=52"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=53"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=54"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=55"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=56"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=57"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=58"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=59"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=60"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=61"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=62"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=63"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=64"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=65"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=66"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=67"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=68"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=69"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=70"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=71"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=72"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=73"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=74"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=75"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=76"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=77"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=78"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=79"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=80"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=81"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=82"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=83"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=84"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=85"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=86"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=87"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=88"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=89"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=90"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=91"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=92"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=93"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=94"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=95"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=96"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=97"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=98"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=99"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=100"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=101"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=102"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=103"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=104"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=105"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=106"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=107"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=108"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=109"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=110"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=111"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=112"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=113"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=114"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=115"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=116"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=117"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=118"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=119"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=120"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=121"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=122"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=123"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=124"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=125"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=126"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=127"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=128"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=129"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=130"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=131"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=132"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=133"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=134"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=135"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=136"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=137"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=138"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=139"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=140"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=141"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=142"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=143"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=144"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=145"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=146"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=147"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=148"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=149"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=150"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=151"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=152"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=153"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=154"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=155"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=156"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=157"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=158"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=159"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=160"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=161"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=162"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=163"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=164"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=165"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=166"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=167"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=168"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=169"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=170"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=171"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=172"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=173"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=174"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=175"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=176"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=177"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=178"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=179"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=180"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=181"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=182"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=183"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=184"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=185"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=186"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=187"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=188"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=189"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=190"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=191"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=192"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=193"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=194"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=195"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=196"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=197"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=198"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=199"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=200"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=201"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=202"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=203"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=204"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=205"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=206"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=207"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=208"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=209"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=210"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=211"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=212"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=213"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=214"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=215"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=216"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=217"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=218"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=219"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=220"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=221"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=222"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=223"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=224"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=225"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=226"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=227"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=228"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=229"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=230"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=231"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=232"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=233"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=234"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=235"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=236"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=237"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=238"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=239"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=240"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=241"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=242"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=243"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=244"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=245"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=246"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=247"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=248"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=249"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=250"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=251"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=252"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=253"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=254"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=255"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=256"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=257"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=258"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=259"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=260"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=261"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=262"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=263"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=264"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=265"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=266"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=267"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=268"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=269"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=270"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=271"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=272"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=273"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=274"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=275"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=276"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=277"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=278"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=279"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=280"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=281"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=282"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=283"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=284"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=285"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=286"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=287"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=288"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=289"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=290"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=291"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=292"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=293"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=294"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=295"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=296"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=297"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=298"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=299"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=300"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=301"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=302"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=303"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=304"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=305"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=306"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=307"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=308"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=309"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=310

Maybe you are looking for

  • HDMI to DVI to VGA to Monitor?

    I just purchased a Mac Mini and totally forgot that Apple upgraded to Mini DisplayPort (I still have the mini-vga to vga cable on my MacBook). So what next? Do I have to buy a Mini DisplayPort to VGA adapter? Or can I somehow hook up the Mini to my V

  • Excise doc in document flow

    Dear  Gurus, When I am creating the billing doc and sebsequently the excise invoice, in the billing doc. flow two accounting documents are showing - RV and EI. Now when I cancel the excise in J1IIN, the same EI acct. doc. is still showing in the doc

  • HOW can i buy an album that is only available in my country?

    I recently bumped into this awesome album http://itunes.apple.com/ie/album/need-to-feel-loved-feat.-delline/id329722641 Unfortuneately, it says that my "apple id is only valid for purchases in sweden". Now - how can we get past that? Is there ANY way

  • Preview issue - scope monitor

    hey all - i have color 1.0.4 - i bought a new imac i7 - intel quad core - because my power mac g5 was so slow it was killing me - SO i go to load my final cut studio 2 (works great) except for the color program (1.0.4) everything is fine except the p

  • What second display to buy for iBook G4?

    Hi all! I'd be keen to pair my good old iBook G4 with an external screen, 20in plus, possibly matt. What are my options? The only one I've heard of so far is the DELL 2005FPW, but can't find any for sale on European ebays. Thanks a lot,