Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: deployment in ssrs

    You will have to give atleast Report browser permission to the limited user account in Report manager-> security.

  • RE: 2 number subtraction in ssis

    Use lookup...Join on EmployeeId...modify advanced query to something like

    select top 1 * from

    (select * from [dbo].[Employees]) [refTable]

    where [refTable].[Id]< ? Order by Id desc

    (there are other...

  • RE: 2 number subtraction in ssis

    For this problem, best solution will be to modify sql query

    If you still want to go SSIS way, use a Lookup, modify the query in advanced query to get...

  • RE: Need to show all dimension values

    Thanks Steve...I'll try this approach...

Viewing 4 posts - 1 through 4 (of 4 total)