Code:
sql file: abc.sql
insert into tbl values ('ABC','Very Long Text here');
SP: SP_TEST
CREATE PROCEDURE SP_TEST()
language sql
BEGIN
--Read and run from C:\MyPath\abc.sql
END@
sql file: abc.sql
insert into tbl values ('ABC','Very Long Text here');
SP: SP_TEST
CREATE PROCEDURE SP_TEST()
language sql
BEGIN
--Read and run from C:\MyPath\abc.sql
END@