Hi
I've never used the macro facility yet. What I need to do is insert a commit line after every 10,000 records. The macro I have so far is as follows.
InsertMode
ColumnModeOff
HexOff
UnixReOff
Loop
GotoLine 10000 1
"commit;
"
EndLoop
So this works for the first insert at line 10,000, now how do I go through the rest of the file and then add a commit at 20,000, 30,000 until I reach the end of file?
I've never used the macro facility yet. What I need to do is insert a commit line after every 10,000 records. The macro I have so far is as follows.
InsertMode
ColumnModeOff
HexOff
UnixReOff
Loop
GotoLine 10000 1
"commit;
"
EndLoop
So this works for the first insert at line 10,000, now how do I go through the rest of the file and then add a commit at 20,000, 30,000 until I reach the end of file?