CREATE PROCEDURE dbo.spname
AS
BEGIN
BEGIN TRANSACTION;
BEGIN TRY
/*
YOUR COMMAND
/*
END TRY
BEGIN CATCH
IF @@TRANCOUNT > 0
ROLLBACK TRANSACTION;
END CATCH;
IF @@TRANCOUNT > 0
COMMIT TRANSACTION;
END;
Cheers!
Uma
Cheers!
Uma
Hi Uma,
ReplyDeleteSince I have limited RAM(4/5 GB for Talend Sandbox), I can't run the latest Talend Sanbox, which requires min of 8GB.
So Can you please share with me older version of Talend, which runs in 4/5GB RAM?