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 gkittelson 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. PFunkster

    Query question: retrieving data with timestamp range

    i found the solution: select IDENTIFIER from BCHISTSESSN where USERID = ? and STARTDT >= CURRENT TIMESTAMP - 5 MINUTES
  2. PFunkster

    Query question: retrieving data with timestamp range

    i have the following sql for Oracle which i want to convert to use with DB2: /** * Oracle SQL that returns session IDENTIFIER value by USERID and between SYSDATE and SYSDATE - 5 minutes */ private static final String lastsessn_sql1 = "select IDENTIFIER from BCHISTSESSN " + "where USERID...
  3. PFunkster

    Writing to files from a DOS batch file

    I've managed to get my Integration server running with the following command: D:\<PACKAGE_ROOT>\bin>./Start Integration_bc int_err.txt 2>&1 this starts up the server OK but I don't think it created the file. i placed an empty int_err.txt file into the dir but nothing has been written to it...
  4. PFunkster

    Writing to files from a DOS batch file

    I've got a batch file which calls another file to start a server. I have some specific errors (std.error & std.out) that I'd like to redirect to a log file (ex: pres_err.txt). I'm not familiar with batch programming so I'm not quite sure how to do this. On the other hand, I kind of know how to...

Part and Inventory Search

Back
Top