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

  1. BobLoblaws

    Forward to SMTP server???

    Okay, Now I am getting this. ----- Transcript of session follows ----- 550 5.1.2 me@somewhere.com... Host unknown (Name server: 198.212.71.77)
  2. BobLoblaws

    Forward to SMTP server???

    Hi All, I am running AIX and I am trying to get all mail forwarded to an SMTP server on Windows. I have added the SMTP server's ip address as the relay host: # "Smart" relay host (may be null) # Relay host to forward outgoing mail not in the local domain to. # To forward ALL mail to...
  3. BobLoblaws

    Using Extents to extract data

    Hi, I'm fairly new to progress, can use your help. I've setup a decimal variable with extent 14 called Sales_qty. I would like sales information to be separated by item by day for 14 days. The data is in a table called ih_hist with detail in idh_hist. I have a break by idh_part by...
  4. BobLoblaws

    Improving CIMload speeds

    I am currently cim loading sales orders into progress, but it seems really slow. I am getting about 1 second per detail line, but I am loading between 7000-10000 detail lines per day. Anyone have any suggestions on how to speed up this process? Thanks,
  5. BobLoblaws

    Connect to Windows share from AIX

    Use the smbmount utility.
  6. BobLoblaws

    Last command in csh shell

    How is it done in ksh? I would like more ability than just r.
  7. BobLoblaws

    Relaying unix mail to Exchange server

    Does anyone know how to setup unix mail to automatically relay all messages to an exchange server? Thanks,
  8. BobLoblaws

    FTP Scripting

    I have a ftp script named ftpscript.txt that looks like this: open 142.218.71.30 username password ascii hash send "xxtest.p" quit In windows, the command line ftp can run the script like this: c:\>ftp -s:ftpscript.txt But in AIX, it says that -s is an invalid parameter. My UNIX book...
  9. BobLoblaws

    How to connect to Oracle on AIX?

    I have tried using ADO connection, but with no success. Does anyone have any suggestions?
  10. BobLoblaws

    Output to File?

    Thanks James! That is exactly what I need. [2thumbsup]
  11. BobLoblaws

    Cannot config 4-port Linksys router via IE (only Netscape)

    I had the same problem with my Linksys 4-port router. For quite some time IE6 would not work. I forget exactly how I fixed it, but I will try to assist. Have you updated your IE6? Do you use ZoneAlarm? Have you reset the router?
  12. BobLoblaws

    Output to File?

    I am running SQL Server 7.0. I am looking for a way to output a query to a file. The filename needs to be dynamic. The logic should work like follows. Stored procedure is passed a date stored in @inDate. SELECT * INTO FILE "c:\" + @inDate + ".txt" FROM tblHistory WHERE...
  13. BobLoblaws

    Query to remove duplicate records?

    Is there a way to remove duplicate records quickly? Possibly a query? Thanks,
  14. BobLoblaws

    Built-in Date Function?

    Is there a built-in date function that does the following? Basically, I want something that can return all dates that are not in a table. Example. SELECT AllDates() FROM tbl_Work WHERE AllDates() <> WorkDate AND AllDates() BETWEEN '01-01-2002' AND '12-31-2002'
  15. BobLoblaws

    How to code For...Each statement

    More specifically, does anyone know how I would go about coding this. Here is the pseudo code. For Each 'Wednesday' IN 2002 ' Do Something Next Thanks,
  16. BobLoblaws

    How to execute a batch file within a console app?

    My console app does some stuff, and if certain conditions are in place, I want it to run a batch file. How do I do this? Thanks
  17. BobLoblaws

    Converting Int to String

    I got it now... Thanks
  18. BobLoblaws

    Converting Int to String

    #include<stdio.h> string buffer; int inValue; sprintf( buffer,&quot;%d&quot;,inValue ); This gives me a cannot convert from string to char*. Any other ideas?
  19. BobLoblaws

    Converting Int to String

    I have integer with the value 5. I need to store the value in a string. If I use this, strValue = intValue strValue becomes the club symbol, which is #5 in the ascii chart. I want the number 5. I also need it to work in the thousand range.
  20. BobLoblaws

    File Datestamp

    Nevermind, I figured it out.

Part and Inventory Search

Back
Top