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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by srishan

  1. srishan

    subscript of 2 as delimeter

    Nevermind, I got it. ASCCI() function gives the ASCII value, FYI. srishan
  2. srishan

    subscript of 2 as delimeter

    7.37²-20.00²-3.00 0²6²1 The data is delimited by the superscript 2 character as shown above. Anybody knows the ASCII value of this? I need to Instring the ASCII value to separate the fields. Thanks, srishan
  3. srishan

    How to capture back ground process's success

    If we wrap pl/sql programs in UNIX one after another, want them to run in back ground. Want to check for the status of one program for successful completion before kicking the next pl/sql program. How can we do this in UNIX? How to check background process's exit condition before we start an...
  4. srishan

    Customer tables changed in 11i ???

    aperson, Thanks again. regards, Sri
  5. srishan

    Customer tables changed in 11i ???

    aperson, I am not able to open the diagram you sent. It says the file has unrecognized version, is there any other way that you can send the vsd in visio verion 5.0? Or Let me know what version of visio you used to create it. thx, sri
  6. srishan

    Customer tables changed in 11i ???

    aperson, Did not receive the document so far. Do not know if you sent it yet, could you update this thread once you sent it accross? My hotmail is unreliable some times, I may have to give an alternative email, so. Thx, Sri
  7. srishan

    Update/Insert based on insert on another table

    -- create a new table with same structure as emp SQL> create table emp2 as select * from emp where 1 = 2; Table created. -- create a trigger on new table SQL> create or replace trigger emp2_tgr1 2 before insert on emp2 3 for each row 4 begin 5 update emp set ename = :new.ename...
  8. srishan

    Customer tables changed in 11i ???

    Thanks once again. Please do send it to srishan@hotmail.com I shall discuss the diagram with you if I have any doubts once I receive it. regards, Sri
  9. srishan

    Customer tables changed in 11i ???

    OK. Any generic SQL statmetns you may have written to map old tables to NEW tables? Probably help me to get started. Let me know. Thx, Sri
  10. srishan

    Customer tables changed in 11i ???

    aperson, Thx for the reply. I gather all this information interim(btw I posted the thread and you gave the reply), nevertheless, I appreciate your interest in replying. I am just wondering about these views. Even if Oracle takes them out some time, we can preseve them as custom views(copy the...
  11. srishan

    Customer tables changed in 11i ???

    Any idea about this? Thx, Sri
  12. srishan

    How to read date attribute on a file

    Actually, I think I got it. Please ignore my previous post. Thanks a lot for all the help. Thx, Sri
  13. srishan

    How to read date attribute on a file

    Sambones, Very helpful!! Thanks again!! Could you tell me the difference of these two, time_t st_mtime; /* Last modification time */ time_t st_ctime; /* Last file status change time */ What I need is the last time it is modified and saved DATE. Thx, Sri
  14. srishan

    How to read date attribute on a file

    Changed the main funciton as the following, main(argc, argv) int argc; char *argv[]; { ... And it works like a charm!! Thx a LOT!! Sri
  15. srishan

    How to read date attribute on a file

    Oops!!!! I forgot to include the #include files, Yet, the following error remains, (Bundled) cc: "filedate.c", line 6: error 1705: Function prototypes are an ANSI feature. Please advise. Thx, Sri

Part and Inventory Search

Back
Top