RE: Adding a Column to an existing table

2002-03-27 Thread Jienan Chen
- From: Ulrik Witschass [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 3:33 PM To: [EMAIL PROTECTED] Subject: Adding a Column to an existing table Hi, I'm new to this list, hopefully, I can contribute some wisdom :) At the moment, I have to update a large database to be multi

Adding a Column to an existing table

2002-03-26 Thread Ulrik Witschass
Hi, I'm new to this list, hopefully, I can contribute some wisdom :) At the moment, I have to update a large database to be multi-company-ready, so I basically have to add a Column Company_ID to nearly each table. What would be the easiest way to do this? I already thought about running a

RE: Adding a Column to an existing table

2002-03-26 Thread Andrew Hazen
]] Sent: Tuesday, March 26, 2002 3:33 PM To: [EMAIL PROTECTED] Subject: Adding a Column to an existing table Hi, I'm new to this list, hopefully, I can contribute some wisdom :) At the moment, I have to update a large database to be multi-company-ready, so I basically have to add a Column

Re: Adding a Column to an existing table

2002-03-26 Thread Brad Visscher
Run the following for each table: ALTER TABLE tableName ADD COLUMN Company_ID INT UNSIGNED NULL; Hope this helps. Ulrik Witschass wrote: Hi, I'm new to this list, hopefully, I can contribute some wisdom :) At the moment, I have to update a large database to be multi-company-ready, so I

RE: Adding a Column to an existing table

2002-03-26 Thread Steven Gearhart
the pdf version. I hope I have been of help. - Steve G. -Original Message- From: Ulrik Witschass [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 3:33 PM To: [EMAIL PROTECTED] Subject: Adding a Column to an existing table Hi, I'm new to this list, hopefully, I can contribute some

Re: Adding a Column to an existing table

2002-03-26 Thread BD
At 02:32 PM 3/26/2002, you wrote: Hi, I'm new to this list, hopefully, I can contribute some wisdom :) At the moment, I have to update a large database to be multi-company-ready, so I basically have to add a Column Company_ID to nearly each table. What would be the easiest way to do this? I