#!/bin/sh

psql -h ctd2 oscon <<_EOF_
	insert into customer values (4, 'Dave Driver', '123.000.0000');
	update customer set c_phone = 'unreachable' where c_id = 2;
_EOF_

