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 SkipVought 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: donny750
  • Order by date
  1. donny750

    problme to send a mail

    hello, I've use this perl script #!/usr/bin/perl unless(open (MAIL, "|/usr/sbin/sendmail -t")) { print "error.\n"; warn "Error starting sendmail: $!"; } else{ print MAIL "From: me\@mydom.com\n"; print MAIL "To: address\@mailserver.com\n"; print MAIL "Subject: test subject\n\n"; print MAIL...
  2. donny750

    problem with using sendmail

    i try this, for testing echo "Test" | mail -s benny.jams@micro.com but i've received nothing
  3. donny750

    problem with using sendmail

    p5wizard i do what you say me and i've this I must be connected on root for use sendmail ?it's that ?
  4. donny750

    problem with using sendmail

    i've look but i've nothing i'm always waiting for the mail
  5. donny750

    problem with using sendmail

    exists a log where i can see what sendmail do please ?
  6. donny750

    problem with using sendmail

    friends send me mail in my mailbox, it's run but when i use sendmail i've no errors message and i don't received the mail i've always waiting
  7. donny750

    problem with using sendmail

    no mail coming ? it's normal ? when i run my command i've no errors messages but i've not received the mail
  8. donny750

    problem with using sendmail

    yes i missed / i've run the command with no errors message and i m waiting the mail
  9. donny750

    problem with using sendmail

    i try and have thid in usr/sbin i've this file sendmail.sendmail sendmail (he have a little arrow) how can i do , to know if sendmail is installed ?
  10. donny750

    problem with using sendmail

    hello, I'm trying to use sendmail command; so i've create a text file with this in the shell i make this : sendmail -t < /home/james/doc/message.txt -bash: sendmail: command not found i don't understand why it's not running ? Thanks
  11. donny750

    perl map ?

    yes thanks, i understand
  12. donny750

    perl map ?

    hello, I've read the perl doc for the function map but i've not good understood; Somebody can explain me with an example , please ? Thnaks for your help
  13. donny750

    Update esle insert ?insert else update ?

    ok in fact, If i do more insert than update, i use insert else update and if i do more update than insert i use update else insert; and it can improve consequently the load performances it's that ?
  14. donny750

    Update esle insert ?insert else update ?

    my database is Oracle (one of the best database in the world)
  15. donny750

    Update esle insert ?insert else update ?

    hello, In some ETL, i've the option : Update else insert. Insert else update. I've some difficult to understand the differences between this 2 options. In fact, with the first or the second option,my date are update and insert. Somebody can explain me ? Have exemples ? Thanks
  16. donny750

    print hours

    sorry, it's run good i've made an error, firstly i've use this #!/usr/bin/perl use strict; use warnings; use POSIX qw(strftime); my $x = strftime( '%H:%M:%S', localtime ); print "Started ".$x."\n";; .... print "Stopped ".$x."\n"; i was mistaken, i don't run the good script
  17. donny750

    print hours

    hello, I've made a perl script, I will print the start hour of the script and the end hour. I've make this #!/usr/bin/perl use strict; use POSIX qw(strftime); ...code print "Started ".strftime( '%H:%M:%S', localtime )."\n"; ...code print "Stopped ".strftime( '%H:%M:%S', localtime...
  18. donny750

    use another script in a script

    hello, I've script A.pl who modify something; I want to use this script in another script B, because i call 3 times the script A for modifiying things. It's possible in perl to do this ? May be something like this : B.pl Thanks
  19. donny750

    DBI delete or truncate ?

    ok it's good firstly i mean that perl DBI can just make :select,insert,update
  20. donny750

    DBI delete or truncate ?

    Hello, I want to use perl DBI to make this query truncate table FIRM; It's possible with perl DBI to do this ? Thanks

Part and Inventory Search

Back
Top