USP_INSTALLEDPRODUCTS_PRODUCTIS
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PRODUCTCODE | uniqueidentifier | IN | |
@ISINSTALLED | bit | INOUT |
Definition
Copy
create procedure [dbo].[USP_INSTALLEDPRODUCTS_PRODUCTIS]
@PRODUCTCODE uniqueidentifier,
@ISINSTALLED bit output
with execute as caller
as
--pdg 4.30.2012 changed this to a non-clr implementation to optimize performance
select @ISINSTALLED = dbo.UFN_INSTALLEDPRODUCTS_PRODUCTIS(@PRODUCTCODE);
return 0;