Viewing 9 posts - 16 through 24 (of 24 total)
Hi osxman, I've updated my reply. It should work.
October 4, 2018 at 9:29 am
Try this:
SELECT a.EmployeeId, a.Forename, a.Surname, a.DateOfBirth, a.leaver, a.EmployeeStartDate, a.LeftDate,
row_number() over (partition by a.forname, a.surname, a.dob order by a.empid) as rn, b.count_reemployed
FROM (
SELECT *, ROW_NUMBER()...
October 4, 2018 at 8:33 am
Great! Thanks a lot.
September 26, 2018 at 9:26 am
Thanks. The front end is custom by developers. It was suggested that the stored procedure needs to be updated to use the linked server to connect to the database. There...
September 26, 2018 at 9:15 am
August 8, 2018 at 10:05 am
August 8, 2018 at 9:08 am
August 8, 2018 at 8:58 am
August 8, 2018 at 8:57 am
I tried to add SET ANSI_WARNINGS OFF, but executing the stored procedure raises this. " August 8, 2018 at 6:46 am
Viewing 9 posts - 16 through 24 (of 24 total)