Search for words in db2 tables
by Hikkemikke
I just figured out a easy way to search for words in a database table.. using grep in *nix.. I SSH in to a db server, we use db2.. connect to the database and run a sql query.. to search for a particularly word just grep for it at the end..
[hikkemikke@linux hikkemikke]$ db2 "select * from db2table" |grep produkter
where produkter is the word I'm searching for.. probably a well known way to do it, but just figured it out by my self, so I'm documenting it..
2007-10-24 13:00:46, 