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: ekobudy
  • Order by date
  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.
  16. ekobudy

    UTL_FILE Problem

    do you have any sample dima? interaction between perl an oracle?
  17. ekobudy

    UTL_FILE Problem

    Mufasa, I cannot change the generated file output from users, and i cannot use the UTL_FILE because the DB server wont allow me to put something at their server.. so i have to parse the flatfile from client and send insert command. i have done this using oracle forms TEXT_IO package, but...
  18. ekobudy

    UTL_FILE Problem

    ok mustafa, here is the sample of FLATFILE : CODEBRID 982991002 CODENAME Avian CODEPRICE 8000 CODESTOCK 312 CODEBRID 992995621 CODENAME Phone Book CODEPRICE 20 CODESTOCK 120 The table structure : ID Number(20) primary key, NAME Varchar2(40), PRICE$ Number(18,2), STOCK Number(10) so, i have...
  19. ekobudy

    UTL_FILE Problem

    the flatfile will be loaded every 30 secs, its size vary between 200KB until 8MB... do you have any sugesstion ? Ekow
  20. ekobudy

    UTL_FILE Problem

    thanks for the response guys... the problem is, i can't access to the AIX server... does any body have any solution,.... what i wanna do is ..just loading the flatfile to Oracle Server without SQL*Loader. Regards, Ekow

Part and Inventory Search

Back
Top