Stored Procedures [dbo].[MssWebUnsetAccountProfilePrimaryContact]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@orderIdint4
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
CREATE PROCEDURE [dbo].[MssWebUnsetAccountProfilePrimaryContact]
    @orderId int
AS
begin
set nocount on
    delete from AccountProfileOrderPrimaryContact where OrderFID = @orderId
end
GO
GRANT EXECUTE ON  [dbo].[MssWebUnsetAccountProfilePrimaryContact] TO [MssExec]
GO
Uses