Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

TSQL:crea un processo memorizzato all'interno di un'istruzione di transazione

prova a fare la create procedure in EXEC('...') , in questo modo:

Begin Try
Begin Transaction 
    -- do a bunch of add/alter tables here
    -- do a bunch of data manipulation/population here

    -- create a stored proc
  EXEC ('create procedure dbo.test
  as
  begin
    select * from some_table
  end')
Commit  
End Try
Begin Catch
    Rollback  
    Declare @Msg nvarchar(max)
    Select @Msg=Error_Message();
    RaisError('Error Occured: %s', 20, 101,@Msg) With Log;
End Catch

GO