Hi,
A proc was running today, doing an insert to a table. At a certain point, the disk space filled up so the insert statement couldn't complete. SQL Server then issued an error to that effect (as shown in my job history), but the proc kept running (as evidenced by other actions that occurred after the error).
Shouldn't the proc abort after a serious error such as this one? Or am I forced to use a try-catch block here?
Thanks much
A proc was running today, doing an insert to a table. At a certain point, the disk space filled up so the insert statement couldn't complete. SQL Server then issued an error to that effect (as shown in my job history), but the proc kept running (as evidenced by other actions that occurred after the error).
Shouldn't the proc abort after a serious error such as this one? Or am I forced to use a try-catch block here?
Thanks much