SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_host_upload_dup_claim_retrieve]
@m_retrieve_id1 varchar(20), /* Account # */
@m_retrieve_id2 varchar(11), /* Soc Sec # */
@m_retrieve_id3 numeric(10,2), /* w/o Balance */
@m_retrieve_id4 numeric(10,2), /* Cur Balance */
@m_retrieve_id5 datetime /* Post Date */
AS
BEGIN
SET NOCOUNT ON;
SELECT claim_id FROM host_claims
WHERE h_account_no = @m_retrieve_id1
and h_socsec = @m_retrieve_id2
and h_wo_balance = @m_retrieve_id3
and h_cur_balance = @m_retrieve_id4
and h_post_date = @m_retrieve_id5
END
GO
|