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?