I'm looking for a DB2 editor that can mass edit whole columns. Or are there any out there yet that can convert to/from a format like csv?
I'm looking for a DB2 editor that can mass edit whole columns. Or are there any out there yet that can convert to/from a format like csv?
Well, what you can do is use an ahk script to type a number and press down arrow, which is what I've done.
Activates on control apostrophe, will change a column to 0 and go down to the next column, 1000 times.Code:^':: Loop, 1000 { Send, 0{down} }