Hi
This should work:
select convert(numeric, column) from table
Does the column contain any non numeric data?
eg. '-', '/'
If it does then it becomes harder and you might not be able to convert it if there are non-numeric characters in the column.
John