USP_REPORTSERVERCREDENTIALS_LOAD
Loads the report server credentials
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@USERNAME | nvarchar(1024) | INOUT |
Definition
Copy
create procedure dbo.USP_REPORTSERVERCREDENTIALS_LOAD
(
@USERNAME nvarchar(1024) = null output
)
as
begin
select top 1 @USERNAME = USERNAME from dbo.REPORTSERVERCREDENTIALS;
end