USP_INSTALLATIONINFO_GETREPORTDATASOURCE
Definition
Copy
create procedure dbo.USP_INSTALLATIONINFO_GETREPORTDATASOURCE
with execute as caller
as
set NOCOUNT on;
select REPORTDATASOURCE
from dbo.INSTALLATIONINFO
where [ID] = 1;
return 0;