Viewing 15 posts - 16 through 30 (of 117 total)
Sean Lange (5/2/2012)
That can't possibly be the entire code for your proc. It is selecting data from temp tables that are not declared inside the proc.
Let's go from this code:
ALTER...
May 2, 2012 at 9:22 am
R.P.Rozema (4/27/2012)
with cteRates as (
select o.emp_id,
row_number() over (partition by o.emp_id...
May 2, 2012 at 9:13 am
Sean Lange (4/27/2012)
The only thing I changed from your original was to remove the extra temp table....
April 27, 2012 at 3:02 pm
But let's continue with the original stored proc code I gave you:
ALTER PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@ORG_LEVEL_ID INT,
@EMP_ID INT
)
AS
BEGIN
DECLARE @x XML;
CREATE TABLE #RATE_HISTORY
(
EMP_NAME...
April 27, 2012 at 2:54 pm
Sean Lange (4/27/2012)
April 27, 2012 at 2:49 pm
Sean Lange (4/27/2012)
njdevils39 (4/27/2012)
Sean Lange (4/27/2012)
April 27, 2012 at 2:42 pm
Sean Lange (4/27/2012)
April 27, 2012 at 1:52 pm
We have some major misunderstandings and we have reached many impasses on this topic, ok here is my DDL and Sample DATA. I have decided that we need a fresh...
April 27, 2012 at 1:27 pm
Lynn Pettis (4/9/2012)
njdevils39 (4/9/2012)
Sean Lange (4/9/2012)
The code Lutz posted about 20-30 posts ago was more than 99% of what you...
April 9, 2012 at 2:25 pm
Sean Lange (4/9/2012)
The code Lutz posted about 20-30 posts ago was more than 99% of what you needed.
declare @emp_id int...
April 9, 2012 at 2:12 pm
Sean Lange (4/9/2012)
select 1 as RowNum, 3 as EMP_ID, 'Whitehead, Molly' as EMP_NAME, 'Silver Manor'...
April 9, 2012 at 1:54 pm
Sean Lange (4/9/2012)
April 9, 2012 at 1:37 pm
Sean Lange (4/9/2012)
April 9, 2012 at 1:26 pm
Lynn Pettis (4/9/2012)
njdevils39 (4/9/2012)
By the way, I also do not work yet or get paid. I am an unpaid intern learning to advance my programming knowledge.
And those of us trying...
April 9, 2012 at 12:46 pm
By the way, I also do not work yet or get paid. I am an unpaid intern learning to advance my programming knowledge.
April 9, 2012 at 12:38 pm
Viewing 15 posts - 16 through 30 (of 117 total)