sql server CDC报错:超出存储过程、函数、触发器的最大嵌套层数(最大层为32)

 sys.sp_MScdc_capture_job 
 RAISERROR(22801, 10, -1) 
 
 
--原本
go
sys.sp_MScdc_capture_job;
go 

--修改后
go 
sys.sp_cdc_scan @maxtrans=30,@maxscans =10,@continuous=1,@pollinginterval =1
go

 

  sql server CDC报错:超出存储过程、函数、触发器的最大嵌套层数(最大层为32)

  sql server CDC报错:超出存储过程、函数、触发器的最大嵌套层数(最大层为32)

 

 

相关文章:

  • 2022-01-02
  • 2022-03-02
  • 2021-09-27
  • 2021-07-19
  • 2022-02-05
  • 2021-07-16
  • 2022-12-23
猜你喜欢
  • 2022-02-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2021-10-07
  • 2021-08-30
相关资源
相似解决方案