Viewing 15 posts - 16 through 30 (of 147 total)
That's a good idea Sean, I hadn't though of that. I will investigate it.
What is the best way to find the ID of date record I need if I only...
November 19, 2015 at 4:18 pm
Thanks for the reply. Have figured it out - was a mistake in my code!
November 19, 2015 at 2:44 pm
Hi SQLSlacker,
That's pretty similar to what I've come up with (and is working)...
;WITH
cteJobQualificationTypeIDs
AS
(
SELECTA.[QualificationTypeID]
FROM[OM_Master_Job_Sub_Type_Competency] A
WHEREA.[JobCompetencyID] IN (SELECT [splitstring] FROM udf_parse_string_into_integer_table(@JobCompetencyIDs)) -- JobSubTypeIDs --
),
cteEmployeeQualifications
AS
(
SELECTA.[LinkedToPersonID]
FROM GC_Person_Qualification A...
October 28, 2014 at 3:04 pm
Yes you are correct about table b, I've adjusted that now 🙂
Regards Exist, how would I use it to solve this issue?
Many thanks
Charlotte
October 28, 2014 at 1:02 pm
Thanks for the response...
I think I'll just return the 3 datasets and process them in a loop from the front-end...
June 12, 2014 at 5:40 am
wolfkillj (9/23/2013)
Charlottecb (9/20/2013)
Many thanks to you also for taking the time to respond to my question. Unfortunately it doesn't seem to give me the correct result - all 3...
September 23, 2013 at 8:43 am
Hi dwain.c,
Yep that works for me - I'll scale up my data to see how it performs against the other solutions.
Many thanks for responding.:-D
September 23, 2013 at 2:46 am
Hi Wolfkillj,
Many thanks to you also for taking the time to respond to my question. Unfortunately it doesn't seem to give me the correct result - all 3 customers have...
September 20, 2013 at 3:44 pm
Thanks Ed, that's given me what I needed. Many thanks.
😀
September 19, 2013 at 5:39 am
Hi ChrisM,
Many thanks for taking the time to do this - I'll try out your version to see how much quicker it performs.:-D
September 11, 2013 at 6:59 am
Just ran EXEC sp_updatestats and the problem has gone away! 😀
September 11, 2013 at 5:38 am
Hi, I originally had between clauses on the SP but I removed them as I thought that might be the issue but it's the same regardless?
Any other ideas?
Thanks.
September 11, 2013 at 5:35 am
Chris, You're a star! That worked perfectly and has helped me out of a jam. Many thanks for all your help - much appreciated.:-D
July 31, 2013 at 2:13 am
Hi Chris,
Firstly, thanks again for taking the time to help me...
The final script you wrote doesn't quite give me what I need - If I add an order for a...
July 30, 2013 at 9:54 am
Thanks ChrisM, that's great - it fixed my issue. Many thanks for your help.
Final question, any idea how to modify this to group by the week instead of the individual...
July 30, 2013 at 8:18 am
Viewing 15 posts - 16 through 30 (of 147 total)