Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: james777
  • Order by date
  1. james777

    Update

    UPDATE MyTable SET (Col1, Col2,...) = (SELECT n_system_track_id , n_system_track_id FROM ( Your Query) );
  2. james777

    sql*loader variable length records identified by little endian unicode

    Try by changing the CHARCTERSET to UTF8, to see if it works.
  3. james777

    Transform SQL

    Thanks a bunch.Excellent and elegant solution,Worked perfectly with a single FTS, performed very well. But the requirement changed again not to duplicate the pair and to link with parent instead of generating a surrogate key for each key pairs. CREATE TABLE PLAN ( PLAN_ID NUMBER(10)...
  4. james777

    Transform SQL

    Looking for a better alternative solution, as this is costly with five FTS.
  5. james777

    Transform SQL

    Hi Mufasa, CREATE TABLE PLAN ( PLAN_ID NUMBER(10), PLAN_KEY VARCHAR2(25), PLAN_VAL NUMBER(1) CHECK(plan_val < 6) ) INSERT INTO PLAN SELECT 100,'A',1 FROM DUAL UNION ALL SELECT 100,'B',2 FROM DUAL UNION ALL SELECT 100,'C',3 FROM DUAL UNION ALL SELECT 100,'D',4 FROM DUAL UNION...
  6. james777

    Transform SQL

    Tablename should not be a problem (You name it). I am looking for best performed SQL. Thanks Jim
  7. james777

    Transform SQL

    This is like key-value pairs in a set . Walking through the set and making them as links starting from first to last . In a set the maximum links are 5 ( fixed). Business is something related to hierarchial key pairs. Strange requirement though PKID Col1 Col2 100 A 1 100 B...
  8. james777

    Transform SQL

    What are the best ways to transform the below output in SQL. I got the result by outer join the same table multiple times. Any help is appreciated. Col1 Col2 A 1 B 2 C 3 D 4 E 5 Should transform to Col1 Col2 ..................................col10 A 1 A 1 B...
  9. james777

    Html Form Focus

    Hi Venu, Thank you for your suggestion. How would i do that, can you send a piece of code. I tried , but unsuccessful. How would i check the value form bean property from jsp function?. I have db call in action class which sets a setter (setRecordFound). If you have some example that would be...
  10. james777

    Html Form Focus

    Hello All, I am having trouble getting the field focus in HTML . What i need : When a user comes to form ,the focus is set to Field1. and next to it is a button to do search ,which does a search action( when user clicks) and fills up the field2, field3, field4 and field5. When user clicks the...
  11. james777

    JSP/HTML Struts Iterate logic

    I am currently learning Sturts/JSP. Could someone help me by posting a piece of code to display JSP/HTML data in Struts as below. I have a form bean and databean. I was able to use the Sturts logic tld to display the data. The problem i am facing was , all the records were displayed ,But i...
  12. james777

    LOB Performance..

    I expect 80 rows from the query. I have no idea why this is hanging forever. I am on 9iR2. Basically i want to update and tried the for loop before updating.. Is it costly to convert the lob to variable (V). Any over head of creating temp lobs when convertion. Thanks
  13. james777

    LOB Performance..

    Hello All, Below code hangs and coming out at all. I commented out the UPDATE part and did a dbmsout but even hanging for ever. are there any performance problems.. declare c clob; type tt_id is table of vega.id%type; type tt_val1 is table of vega.val1%type; type tt_val2 is table of...
  14. james777

    W2K3- Logon Error -Domain Issue

    Thank You Wishdiak . I downloaded from Microsoft msdn and i guess w2k3 is not an evaluation version. I will to restore using Safe Mode..
  15. james777

    W2K3- Logon Error -Domain Issue

    I can not even logon to server after booting up the machine. I got win98/w2k3 on same machine. I use w2k3 as standalone machine either i logon to win98/w2k3. It's not on a network. Recently i installed Active directory and uninstalled it again successfully. I sent the above log after logging on...
  16. james777

    W2K3- Logon Error -Domain Issue

    Because of thie domain Issue. I am not able to logon to server at all. Is there a way to fix this.
  17. james777

    W2K3- Logon Error -Domain Issue

    Hi All, I tried logging into W2K3 server, after entering username/password. it gives a message password is incorrect or checks username , domain name.. Very positive that my username/password are correct. I installed paragon utility to see the NTFS file system from Win98. Below is one of the...
  18. james777

    Query Help --

    Mufasa, Thank you for your answer. I did the same way using function and calling it in SQL. But i am trying using ONLY sql.. no pl/sql.. Thank You Jim
  19. james777

    9i Forms and Reports compile problems

    You created forms and reports on windows environment.. When you attached libraries in windows the form or report takes the path you have given on windows location. So try removing it. and on Unix ignore the PATH variables and keep the forms and pll/plx files in the same directory and compile them..
  20. james777

    INSERT DEFAULT

    You can do it this way , if you include column names.,. insert into table1 select col1, col2, nvl(col3,sysdate) from table2..

Part and Inventory Search

Back
Top