Be carefull when using vi for very large files.

It will fil the /var directory.

You can also use the sed command to change something :

cat MyFileToChange | sed "s/<from>/<into>/[g: optional]"

you want to change every line that begins with SQLSERVER to ORACLE

cat MyFile | sed "s/^SQLSERVER/ORACLE/"

Hope this helps
Gert