Viewing 3 posts - 1 through 4 (of 4 total)
My intent is not to drive people crazy with this. I'm sorry you feel that way, Scott.
My intent is to see if anyone has been able to...
July 17, 2012 at 11:39 am
Here is my pseudocode:
create PROCEDURE [dbo].[spUpdateTableA]
@TableAPK int, --only required parameter
@ColumnA nvarchar(50) = 'undefined',
@ColumnB int = -1
as
begin
SET NOCOUNT ON
SET XACT_ABORT ON
declare @ErrorMessage nvarchar(4000);
begin try
--Start the...
July 17, 2012 at 10:13 am
Unfortunately, I can't use look up tables because a default value for a parameter MUST be a constant, meaning either a literal value or a @@ constant. So, I'm...
July 17, 2012 at 8:41 am
Viewing 3 posts - 1 through 4 (of 4 total)