USP_INSTALLATIONINFO_GETFORMATPHONESSETTING

Retrieves the FORMATPHONES value from the INSTALLATIONINFO table.

Definition

Copy


            create procedure dbo.USP_INSTALLATIONINFO_GETFORMATPHONESSETTING
            with execute as caller
            as

                set NOCOUNT on;

                select FORMATPHONES
                from dbo.INSTALLATIONINFO
                where [ID] = 1;

            return 0;