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 IamaSherpa 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: *

  1. jaykjoe

    error in sendmail AIXI

    I'm trying to set up sendmail on AIX 5.2 and this is the error message I'm getting after trying to send a test email: Cannot open hash database /etc/mail/domaintable.db: A system call received a parameter that is not valid. Cannot open hash database /etc/mail/mailertable.db: A system call...
  2. jaykjoe

    convert UNIX time to SQL readable date

    vongrunt: I've tried that and the problem still exists. SVRMGR> select dateadd('second',f_createtime,'1970-01-01') from f_sw.vwqueue1_127; select dateadd('second',f_createtime,'1970-01-01') from f_sw.vwqueue1_127 * ORA-00904: invalid column name AND SVRMGR> select...
  3. jaykjoe

    convert UNIX time to SQL readable date

    I'm having an issue trying to convert the UNIX time value to a readable SQL date. I keep getting a "ORA-00904: invalid column name" message. Here's the statement: SVRMGR> select dateadd(second,f_createtime,'1970-01-01') from f_sw.vwqueue1_127; select dateadd(second,f_createtime,'1970-01-01')...
  4. jaykjoe

    How to joining 3 files into comma seperated file

    Thanks PH, this is exactly what I'm looking for.
  5. jaykjoe

    How to joining 3 files into comma seperated file

    I have 3 files with data with the same number of records in each file. I would like to merge or join these 3 files into a comma delimited file. For example, file1 has the person's name, file2 with their SSN, and file3 has their phone number. file1 file2 file3 john 123456789...
  6. jaykjoe

    date format

    Thanks. Not exactly what I was looking for, but it will do.
  7. jaykjoe

    date format

    I would like know if there's a parameter for the date function in UNIX that shows the day as 1 digit instead of 2 digits? For example, tomorrow is 02/03 (date +%m/%d). How can I make it show up as 2/3 with this date function. I can write a script to strip off the leading zeros, but I would...
  8. jaykjoe

    how do i separate fields delimited by pipes (¦)?

    Thanx! This is exactly what I needed. Jason
  9. jaykjoe

    how do i separate fields delimited by pipes (¦)?

    Thanks CaKiwi. However, I happen to have some fields that are blank and it deletes them. For example: 01 | | am | stuck |on| this. This line would produce results: field1=01 field2=am field3=stuck field4=on field5=this. Field2 is ignored and everything is shifted. Any way I can...
  10. jaykjoe

    how do i separate fields delimited by pipes (¦)?

    Hello, I have a spooled SQL file that I need to separate the fields delimited by pipes using awk or sed. There can be leading and trailing spaces in between pipes. How can I just extract the field itself and not any spaces. For example, file(line) looks like: 01 | I | am | stuck |on|...

Part and Inventory Search

Back
Top