- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
Find the highest ID in the table:
select max(itrackinglogid) from nmstrackinglogrcp;
Then update sequence to start 1 higher:
alter sequence NmsTrackingLogId restart with 9000;
Thanks,
-Jon