drop table $user\g

create table $user (
   rbr		integer,
   name		char(30),
   surname	char(30),
   titula	char(20),
   jobtitle	char(20),
   company	char(30),
   dept		char(30),
   h_street	char(40),
   h_city	char(20),
   h_zip	char(10),
   h_country	char(20),
   h_phone	char(30),
   w_street	char(40),
   w_city	char(20),
   w_zip	char(10),
   w_country	char(20),
   w_phone	char(30),
   mailing_addr	char(1),
   pager	char(30),
   mobil_phone	char(30),
   email	char(70),
   home_page	char(70),
   categories	char(4),
   public	char(1),
   fax		char(20),
   account	char(50),
   w_account	char(50)
)\g
