更改 DB2 身份以添加循环缓存和特定的重新启动值

Alter DB2 identity to add Cycle Cache and a specific restart value

我想更改 db2 身份以循环缓存并使其以特定值(重新)开始,例如:

更改 TABLE 更改列
    将生成的始终设置为标识(循环缓存 100)重新启动 32323

有没有办法做到这一点,以便我可以添加循环缓存并使其从特定编号重新启动?

您看到了什么错误? DB2 的版本和平台是什么?

以下针对 IBM i 7.1 的 DB2 作品

alter table mytable       
alter column mycolumn     
  set generated always    
  set cycle               
  set cache 100           
  restart with 32323      

这也有效

alter table mytable                
alter column mycolumn              
  set generated always as identity 
  set cycle                        
  set cache 100                    
  restart with 32323