Hi EveryOne
I'm using SQL 7.0 and Have a table that I need to add columns to within a stored procedure. For example:
The current table is:
IcData (table Name)
MIN (column name)
MOU (column name)
What I need to do is insert two new columns (Home, Carrier Code) using SQL within a stored procedure so that the table looks like:
IcData (table Name)
MIN (column name)
MOU (column name)
Home (column name)
Carrier code (column name)
The only command that I can find in SQL Server Books on Line is object.InsertColumn(Column,InsertBeforeColumn)
Can't get this to work.
Thanks For all your help!
Cathy
I'm using SQL 7.0 and Have a table that I need to add columns to within a stored procedure. For example:
The current table is:
IcData (table Name)
MIN (column name)
MOU (column name)
What I need to do is insert two new columns (Home, Carrier Code) using SQL within a stored procedure so that the table looks like:
IcData (table Name)
MIN (column name)
MOU (column name)
Home (column name)
Carrier code (column name)
The only command that I can find in SQL Server Books on Line is object.InsertColumn(Column,InsertBeforeColumn)
Can't get this to work.
Thanks For all your help!
Cathy