Gli errori che si verificano a seguito della ricompilazione batch dopo la risoluzione dei nomi posticipata non possono essere rilevati allo stesso livello in cui si è verificato l'errore. Una soluzione alternativa consiste nel racchiudere il DDL in SQL dinamico:
BEGIN TRY
EXEC(N'ALTER TABLE [dbo].[my_table_name] ADD PRIMARY KEY ([id]);');
END TRY
BEGIN CATCH
IF ERROR_NUMBER() = 1779
BEGIN
--handle expected errors
PRINT 'Primary Key already exists. ';
END
ELSE
BEGIN
--raise other unexpected errors
THROW;
END;
END CATCH;