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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lydiap

  1. lydiap

    Split method in Java

    Grrr....I tried the above, String filename = "test1,test2,test3"; String patternStr="\\,"; String[] fields = filename.split(patternStr); It comes up with a java error of: "The method split(java.lang.String) is undefined for the type java.lang.String" What am I...
  2. lydiap

    Setting up Groups

    sorry, I didnt answer your question, did i? I hate Mondays. You add your users to the group using the Windows user and passwords management.
  3. lydiap

    Setting up Groups

    For DB2 7.2: Create the Group in NT Add the group to the DB2 databse: db2 groupadd groupname Grant on the group: db2 grant update on table schema.tablename to group groupname
  4. lydiap

    SQL to Out File

    What about putting your sql in a file and running the file as such: db2 -tvf filename.sql -r results.txt >>logname.txt If this is on Windows, it can be put into a batch file..let me know if you need help with this.

Part and Inventory Search

Back
Top