USP_BBASUGGESTEDMEMBERSHIPLEVELSFILEIMPORT_SELECT

This procedure is used by the Target Analytics Suggested Membership Levels File Import Record Operation for saving the information from a Target Analytics Target Gift Ranges Import File to the database.

Definition

Copy


            create procedure dbo.USP_BBASUGGESTEDMEMBERSHIPLEVELSFILEIMPORT_SELECT as
                set nocount on;

                select
                    SML.ID id,
                    SML.SCORE score,
                    SML.RANGE valuerange
                from
                    dbo.SUGGESTEDMEMBERSHIPLEVEL SML;

                return 0;