|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: |
SELECT l.learner_number , NVL (a.offering_delivery_method, 'Ad-hoc') AS delivery_type ,
Case
when substr(o.offering_id,1,5) = 'dowbt'
then o.wbt4
else o.ilt4
END Delivery_Development_Type , sum (a.learning_hours)
FROM (SELECT a.learner_id, a.delivery_id, a.course_vendor_name,
a.completion_date, a.action_status, a.completion_status,
a.offering_template_id, a.offering_id, a.DURATION,
a.course_title, a.course_number, a.learning_hours,
CASE
WHEN a.delivery_id IS NULL
AND LOWER (a.course_vendor_name) LIKE '%skl%st%'
THEN 'E-Learning'
WHEN a.delivery_id IS NOT NULL
THEN a.offering_delivery_method
END offering_delivery_method
FROM usa.dtv_bv_offering_action a) a
JOIN
usa.dtv_bv_learners l ON l.learner_id = a.learner_id
LEFT OUTER JOIN
usa.dtv_bv_offerings o ON o.offering_id = a.offering_id
WHERE a.completion_status = 'Successful'
AND a.action_status = 'Completed'
AND a.completion_date >= TO_DATE ('2009/05/31 00:00:00', 'YYYY/MM/DD hh24:mi:ss')
AND a.completion_date <= TO_DATE ('2009/06/24 23:59:59', 'YYYY/MM/DD hh24:mi:ss')
AND LENGTH (TRIM (TRANSLATE (a.learning_hours, '.0123456789', ' '))) IS NULL
GROUP BY l.learner_number,nvl(a.offering_delivery_method,'Ad-hoc'),
Case when substr(o.offering_id,1,5) = 'dowbt' then o.wbt4 else o.ilt4 END;
|
Advertisement
| Hall of Fame |