USP_DATALIST_VANITYURL_URLSWITHNODOT

Returns a list of the Vanity URLs that contain a dot.

Definition

Copy


                CREATE procedure dbo.USP_DATALIST_VANITYURL_URLSWITHNODOT
                as
                    set nocount on;

                    select VanityURL, ClientSitesID from dbo.VanityURL where VanityURL like '%.%'