Re: alter table with sequence

2015-09-21 Thread Mike Bayer
On 9/21/15 10:18 AM, Ofir Herzas wrote: rename_table operation does not rename sequences if they exist. This causes a problem that the renamed table is unusable since the sequence is missing. In Oracle, a simple rename works well (RENAME old_seq_name TO new_seq_name;) although it says

alter table with sequence

2015-09-21 Thread Ofir Herzas
rename_table operation does not rename sequences if they exist. This causes a problem that the renamed table is unusable since the sequence is missing. In Oracle, a simple rename works well (RENAME old_seq_name TO new_seq_name;) although it says "table renamed". Is there a sequence rename