Skip to Content
0
Jul 31, 2019 at 10:14 PM

Cyclic dependency found in a runtime procedure

480 Views

CREATE PROCEDURE dataPreprocessing LANGUAGE SQLSCRIPT AS

BEGIN

EXEC 'ALTER TABLE my_table ADD (RESPONSE_RATE INT)';

Error message is: Cyclic dependency found in a runtime procedure: Not allowed to call/modify runtime procedure during its execution. The affected line is the exec line.. Why is this happening? How can I resolve this issue?