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

  1. slimmer

    database conversion

    Is it possible to update a DB2 table on the mainframe from MS Access? The data source will be coming from Sybase and the eventual target is DB2. Is it possible to use Access to create the same table structures, connect to sybase and populate the data and then connect to db2 to populate with...
  2. slimmer

    Database Conversion

    We are converting data from Sybase running on Sun Solaris box to DB2 running on the mainframe. Is it possible to use MS Access to create the mainframe DB2 table structure, connect to Sybase and populate the tables. Then connect to the mainframe DB2 database and populate those tables from the...
  3. slimmer

    Creating Extract file from Sybase to load to DB2

    We are converting from a Sybase database to DB2 and I am working to create extract files of the data to load to DB2. All tables with only column definitions from the source and target loaded fine. There are other tables where the first column is defined as char and the last column is defined...
  4. slimmer

    Transaction log on master full

    Thank you for your help!
  5. slimmer

    Transaction log on master full

    I dumped with the command dump transaction master with no_log
  6. slimmer

    Transaction log on master full

    When executing a script to update our database, the sql is being suspended due to the transaction log on master being full. Once I dump the log on master, not the database I am updating, our queries work fine. The master database has no options set and I cannot add any to master however the...
  7. slimmer

    Casting a String to an Integer type

    Is it possible to cast a String to an Integer? I initially defined a variable as an int but received a CastClassException error when trying to sort the object. If I define the element of the class as String, I do not receive the error however the values are not sorted as I expect (i.e...
  8. slimmer

    Sorting arraylist of object

    Below is the compareTo method from my BondSummary class. I had to change the definition of my variable yearsToMature to Integer from int due to an error I was receiving. public int compareTo(java.lang.Object obj) { BondSummary bsummary = (BondSummary)obj; return...
  9. slimmer

    Sorting arraylist of object

    I have retrieved a resultset from the database in order of id number and years to mature, which is a calculated field. As I go through this resultset, I summarize data based on the order retrieved and add each unique element to an object class. Prior to printing the data, I want to now sort...
  10. slimmer

    File substitution using awk

    Thank you! This worked great. If possible, will you please explain what the if syntax is saying? If the second column is not (unsure at this point) then execute the gsub command. Thank you again.
  11. slimmer

    File substitution using awk

    We are processing a file using the gsub function to do a substitution of a column, removing special characters and replacing them with a null ("") value. I need to modify this script to also replace a space found in the 2nd column with the null value. The problem: if the column...

Part and Inventory Search

Back
Top