You can also add new column in Your table<br><br><span style="font-family: courier new,monospace;">SELECT AddGeometryColumn('','table_name','new_column_name','new_SRID','POINT',2);</span><br>
<br>after that jst do:<br><br><span style="font-family: courier new,monospace;">UPDATE table_name set new_column_name = Transform(old_geom_column,new_SRID);</span><br><br>after that query You will have 2 columnt: first with old SRID ald second with new SRID so You can just DROP old column.<br>
<br>Simon<br><br>