What I meant was, this UPDATE statement below will populate the new and adjust the old:
update <table>
set new_col = substring(old_col,charindex(old_col,'-')+1)
, old_col = substring(old_col,1,charindex(old_col,'-')-1)
;
** Substitute your actual table name for <table name>
** Substitute the column currently containing the data for "old_col"
** Substitute the newly added column for "new_col"
You would create the new column using Enterprise Manager (or ask a DBA if you have one).
You would run the UPDATE statement in Query Analyzer.
"Helping others to help themselves..."
=================================
Thomas V. Flaherty Jr.
Birch Hill Technology Group, Inc.