Viewing 4 posts - 1 through 4 (of 4 total)
You will have to give atleast Report browser permission to the limited user account in Report manager-> security.
November 2, 2011 at 1:22 am
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...
November 1, 2011 at 12:12 am
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...
October 31, 2011 at 11:25 pm
Thanks Steve...I'll try this approach...
July 8, 2011 at 2:26 am
Viewing 4 posts - 1 through 4 (of 4 total)