USP_INSTALLATIONINFO_GETBLANKSINQUERYDEFAULT
Retrieves the BLANKSINQUERYDEFAULT value from the INSTALLATIONINFO table.
Definition
Copy
create procedure dbo.[USP_INSTALLATIONINFO_GETBLANKSINQUERYDEFAULT]
as
set nocount on;
select [BLANKSINQUERYDEFAULT]
from dbo.[INSTALLATIONINFO]
where [ID] = 1;
return 0;