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 TouchToneTommy 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 ekobudy

  1. ekobudy

    XMLForest with blank spaces as value

    Thank you All, You are really helpfull. Regards, ekobudy
  2. ekobudy

    XMLForest with blank spaces as value

    Hello guys, I need help about XMLForest, here is my code : create table example ( field1 varchar2(10), field2 varchar2(10), field3 varchar2(10)); insert into example values (null,null,null); select xmlforest(lpad(nvl(field1,''),10,' ')||lpad(nvl(field2,''),10,' ') as "concatf1f2") from...
  3. ekobudy

    DBMS JOBS...

    hello all, how to make a process exactly run at 12am each day? i used trunc(sysdate+1) at next_date but .. when i look again.. the next_date was changed not to 12am :(.. thanks.
  4. ekobudy

    Get Formatted Date

    Thanks xwb.. ur helping me much :) regards, ekow
  5. ekobudy

    Get Formatted Date

    Hi All, I'm new in C.. how to get formatted Date ? for example : how to get YYYYMMDDHH24MISS date format ? regards, Ekow
  6. ekobudy

    DATA FILE

    hello, I have a dataFile at /data01/oradata/operational01.dbf one day.. my oracle 9i was crash then i install oracle 9i again.. can oracle know what information loaded at operational01.dbf? when i create a tablespace..for the new oracle.. like, the users, tablename and so on.. regards, EkoW
  7. ekobudy

    atof problem..

    Ok, thank you xwb. I'm working on Solaris9. thanks, for the information. I will download gcc first. Thank you to all of you guys. regads, ekow
  8. ekobudy

    atof problem..

    xwb, can you tell me about long double and where can i find these compiler?
  9. ekobudy

    atof problem..

    Hello guys, i'm new in C.. i have code like this : #include <stdio.h> #include <stdlib.h> char *inputstr; double atofret; void main() { inputstr="1234567890.1234"; atofret=atof(inputstr); printf(" Converted to : %14.4f \n",atofret); } the result when i run the program is ...
  10. ekobudy

    FORMS & MENUS

    Dear guys, I have 1 oracle form the name is mainprogram.fmx, and i have 2 menus the name are mainmenu001.mmx and mainmenu002.mmx when i push a push_button1 at forms, i want to change the menu to mainmenu001.mmx and when i push a push_button2 i want to change the menu to mainmenu002.mmx what...
  11. ekobudy

    get milliseconds value

    Hello guys, I have a problem, i want to retrive Millisecods value at Oracle Form 6i. Anyone can help me... Thanks, regards, Ekow
  12. ekobudy

    About Installer

    thanks himan, i will try it.
  13. ekobudy

    About Installer

    is it working for Oracle Developer 6i ?
  14. ekobudy

    About Installer

    Dear All, I have completed my Oracle Forms, Reports and Graphics program. What i need is to deliver them to users. does any body know how to make installer for them ? Thanks. regards, Ekow
  15. ekobudy

    UTL_FILE Problem

    thx sem... Discussion Closed.

Part and Inventory Search

Back
Top