> Is it possible to add more than one column to a > table > with a single command a la:
Not in R:Base. You need to do a CREATE TABLE with the new structure, append the old to the new, drop the old, and rename the new to the old. Otherwise you need sequential ALTER TABLES, each of which will pump a table's worth of unused space into the RB2 file until you pack. -- Larry

