Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select and return PK value
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Divers
Thread ID:
01673328
Message ID:
01673342
Vues:
37
The problem is that even when no record is found, the value of @EquipPK is set to 0 (default) in the following SQL Select
select @EquipPk = EQUIP_PK from EQ_FILE where EQUIP_ID = 'BOGUSID'
I should have not assigned the default value to the @EquipPk. My mistake.

>In that case my original code should have worked - it checks for value not being NULL or empty.
>
>You can add
>
>PRINT 'Equpment Id = ' + coalesce(@EquipmentId,'');
>
>to be sure it's passed
>
>>The @EqupmentId is a char(15) type.
>>
>>>What is the type of the @EqupmentId variable? If it's integer, then you may want
>>>
>>>if COALESCE(@EquipmentId, 0) !=0 -- this tests for value being not null and not 0
>>>
>>>
>>>
>>>>>Why does it have to be one line?
>>>>>
>>>>>if COALESCE(@EquipmentId,'') !=''
>>>>>   begin
>>>>>   select @Pk = equip_pk from dbo.eq_file where Id_Number = @EquipmentId;
>>>>>   if @Pk==null
>>>>>             begin
>>>>>                 raieserror ...
>>>>>                 return 
>>>>>             end
>>>>>     end
>>>>
>>>>I don't know how COALESCE() works but in my test, when I pass a value to @EquipmentId, the code never goes to SELECT ..
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform