Click Start Button -> Run -> type cmd Hit Enter
xcopy Source Destination /o /x /e /h /k
1) ALTER SEQUENCE TableName_seq RESTART WITH 1;
Query (1) is for Resting new Sequence Start Value.
2) UPDATETableNameSET ColumnName = nextval('TableName_seq');
Query (2) will update sequence values.