|
1
|
use socle;
|
|
2
|
-- Insert into solution_quiz for Quiz 3 Attraction, Rétention et fin de contrat
|
|
3
|
INSERT INTO solution_quiz (id, quizCode, quiz_image, averagetime)
|
|
4
|
VALUES
|
|
5
|
(3, 'quiz_3_Attraction_Retention_and_Termination',
|
|
6
|
'Questionnaire 3 -Attraction, Rétention et fin de contrat.jpg',
|
|
7
|
15);
|
|
8
|
-- Insert into solution_quiz_translate for Quiz 3 (French & English)
|
|
9
|
INSERT INTO solution_quiz_translate (quizCode, title, description, short_description, languageId)
|
|
10
|
VALUES
|
|
11
|
('quiz_3_Attraction_Retention_and_Termination',
|
|
12
|
'Questionnaire 3 -Attraction, Rétention et fin de contrat',
|
|
13
|
'Évaluation des stratégies d\'attraction et de rétention des talents, ainsi que des processus de fin de contrat',
|
|
14
|
'Évaluation des stratégies d\'attraction, rétention et fin de contrat', 2),
|
|
15
|
('quiz_3_Attraction_Retention_and_Termination',
|
|
16
|
'Quiz 3 - Talent Attraction, Retention & Offboarding',
|
|
17
|
'Assessment of talent attraction and retention strategies, and employee offboarding processes',
|
|
18
|
'Assessment of attraction, retention & offboarding strategies', 1);
|
|
19
|
-- Insert into solution_quiz_section for Quiz 3
|
|
20
|
INSERT INTO solution_quiz_section (sectionCode, quizCode, section_order)
|
|
21
|
VALUES
|
|
22
|
('Talent_Attraction_Strategies','quiz_3_Attraction_Retention_and_Termination', 1),
|
|
23
|
('Talent_Retention_Strategies','quiz_3_Attraction_Retention_and_Termination', 2),
|
|
24
|
('Employment_Termination_Process', 'quiz_3_Attraction_Retention_and_Termination', 3);
|
|
25
|
-- Insert translations for those sections
|
|
26
|
INSERT INTO solution_quiz_section_translate (sectionCode, title, languageId)
|
|
27
|
VALUES
|
|
28
|
-- English
|
|
29
|
('Talent_Attraction_Strategies', 'Talent Attraction Strategies', 1),
|
|
30
|
('Talent_Retention_Strategies', 'Talent Retention Strategies', 1),
|
|
31
|
('Employment_Termination_Process', 'Employment Termination Process', 1),
|
|
32
|
-- French
|
|
33
|
('Talent_Attraction_Strategies', 'Stratégies d\'Attraction des Talents', 2),
|
|
34
|
('Talent_Retention_Strategies', 'Stratégies de Rétention des Talents', 2),
|
|
35
|
('Employment_Termination_Process','Cessation d\'Emploi', 2);
|
|
36
|
-- Insert questions for each section
|
|
37
|
INSERT INTO solution_quiz_section_questions
|
|
38
|
(quizCode, questionCode, sectionCode, idparent, type, question_order, echartType)
|
|
39
|
VALUES
|
|
40
|
-- Section 1: Talent_Attraction_Strategies (Q3-ATS-1 → Q3-ATS-4)
|
|
41
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-1', 'Talent_Attraction_Strategies', NULL, 'CM', 1, 'Bar'),
|
|
42
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-2', 'Talent_Attraction_Strategies', NULL, 'CM', 2, 'Bar'),
|
|
43
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-3', 'Talent_Attraction_Strategies', NULL, 'CM', 3, 'Bar'),
|
|
44
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-4', 'Talent_Attraction_Strategies', NULL, 'CM', 4, 'Bar'),
|
|
45
|
-- Section 2: Talent_Retention_Strategies (Q3-RTS-5 → Q3-RTS-9)
|
|
46
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-5', 'Talent_Retention_Strategies', NULL, 'CM', 5, 'Bar'),
|
|
47
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-6', 'Talent_Retention_Strategies', NULL, 'CM', 6, 'Bar'),
|
|
48
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-7', 'Talent_Retention_Strategies', NULL, 'CU', 7, 'Pie'),
|
|
49
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-8', 'Talent_Retention_Strategies', 'Q3-RTS-7', 'CU', 8, 'Pie'),
|
|
50
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-9', 'Talent_Retention_Strategies', NULL, 'CM', 9, 'Bar'),
|
|
51
|
-- Section 3: Employment_Termination_Process (Q3-ET-10 → Q3-ET-14)
|
|
52
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-10', 'Employment_Termination_Process', NULL, 'CM', 10, 'Bar'),
|
|
53
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-11', 'Employment_Termination_Process', NULL, 'CU', 11, 'Pie'),
|
|
54
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-12', 'Employment_Termination_Process', 'Q3-ET-11', 'CM', 12, 'Bar'),
|
|
55
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-13', 'Employment_Termination_Process', NULL, 'CM', 13, 'Bar'),
|
|
56
|
('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-14', 'Employment_Termination_Process', NULL, 'CU', 14, 'Pie');
|
|
57
|
-- Insert translations for all questions (English & French)
|
|
58
|
INSERT INTO solution_quiz_section_questions_translate (questionCode, title, languageId)
|
|
59
|
VALUES
|
|
60
|
-- English
|
|
61
|
('Q3-ATS-1', 'Which recruitment channels do you use to attract new talent?',1),
|
|
62
|
('Q3-ATS-2', 'Which aspects of your company are most attractive to potential hires?', 1),
|
|
63
|
('Q3-ATS-3', 'What initiatives do you implement to onboard new employees?',1),
|
|
64
|
('Q3-ATS-4', 'How do you enhance your employer brand?', 1),
|
|
65
|
('Q3-RTS-5', 'What factors drive employee satisfaction and engagement?', 1),
|
|
66
|
('Q3-RTS-6', 'Which programs have you implemented to retain key talent?',1),
|
|
67
|
('Q3-RTS-7', 'Do you conduct employee satisfaction and engagement surveys?', 1),
|
|
68
|
('Q3-RTS-8', 'How often do you run these surveys?',1),
|
|
69
|
('Q3-RTS-9', 'How are outstanding employee performances recognized and rewarded?', 1),
|
|
70
|
('Q3-ET-10','What are the most common reasons employees leave your company?',1),
|
|
71
|
('Q3-ET-11','Do you conduct exit interviews to understand departure reasons?',1),
|
|
72
|
('Q3-ET-12','How do you use the insights gathered from exit interviews?', 1),
|
|
73
|
('Q3-ET-13','What measures have you implemented to prevent voluntary turnover?', 1),
|
|
74
|
('Q3-ET-14','Do you have a succession plan for key-role departures?', 1),
|
|
75
|
-- French
|
|
76
|
('Q3-ATS-1', 'Quels canaux de recrutement utilisez-vous pour attirer de nouveaux talents ?', 2),
|
|
77
|
('Q3-ATS-2', 'Quels éléments de votre entreprise sont les plus attractifs pour les candidats potentiels ?', 2),
|
|
78
|
('Q3-ATS-3', 'Quelles initiatives mettez-vous en place pour faciliter l’intégration des nouveaux employés ?', 2),
|
|
79
|
('Q3-ATS-4', 'Comment travaillez-vous à améliorer la marque employeur de votre entreprise ?', 2),
|
|
80
|
('Q3-RTS-5', 'Quels sont les principaux éléments qui contribuent à la satisfaction et à l’engagement des employés ?', 2),
|
|
81
|
('Q3-RTS-6', 'Quels programmes spécifiques avez-vous mis en place pour retenir vos talents clés ?', 2),
|
|
82
|
('Q3-RTS-7', 'Réalisez-vous des enquêtes de satisfaction et d’engagement des employés ?', 2),
|
|
83
|
('Q3-RTS-8', 'À quelle fréquence réalisez-vous ces enquêtes ?', 2),
|
|
84
|
('Q3-RTS-9', 'Comment les performances exceptionnelles des employés sont-elles reconnues et récompensées ?', 2),
|
|
85
|
('Q3-ET-10','Quels sont les motifs les plus courants pour lesquels les employés quittent votre entreprise ?', 2),
|
|
86
|
('Q3-ET-11','Menez-vous des entretiens de départ pour comprendre les raisons du départ des employés ?', 2),
|
|
87
|
('Q3-ET-12','Comment utilisez-vous les informations recueillies lors des entretiens de départ ?', 2),
|
|
88
|
('Q3-ET-13','Quelles mesures avez-vous mises en place pour prévenir les départs volontaires ?', 2),
|
|
89
|
('Q3-ET-14','Avez-vous un plan de succession en place pour assurer la continuité des activités en cas de départ d’un employé clé ?', 2);
|
|
90
|
-- all items codes & names
|
|
91
|
INSERT INTO solution_reponses_items (itemCode, itemName)
|
|
92
|
VALUES
|
|
93
|
-- Q3-ATS-1
|
|
94
|
('online_job_sites', 'Online job sites (Indeed, Monster, etc.)'),
|
|
95
|
('internal_referrals', 'Internal referrals'),
|
|
96
|
('external_agencies', 'External recruitment agencies'),
|
|
97
|
('job_fairs', 'Job fairs & recruiting events'),
|
|
98
|
('university_partnerships', 'University / school partnerships'),
|
|
99
|
-- Q3-ATS-2
|
|
100
|
('company_culture', 'Company culture (values, mission)'),
|
|
101
|
('career_opportunities', 'Career development opportunities'),
|
|
102
|
('competitive_compensation', 'Competitive pay & benefits'),
|
|
103
|
('work_flexibility', 'Work flexibility (remote, hours)'),
|
|
104
|
('brand_reputation', 'Employer brand & reputation'),
|
|
105
|
('innovation_tech', 'Innovation & technology used'),
|
|
106
|
-- Q3-ATS-3
|
|
107
|
('formal_onboarding', 'Formal onboarding programs'),
|
|
108
|
('mentoring_program', 'Mentoring / buddy programs'),
|
|
109
|
('initial_training', 'Initial training sessions'),
|
|
110
|
('welcome_meetings', 'Welcome meetings with leadership'),
|
|
111
|
-- Q3-ATS-4
|
|
112
|
('employer_rankings', 'Participation in employer rankings'),
|
|
113
|
('internal_ambassadors', 'Internal ambassador programs'),
|
|
114
|
('social_media_campaigns', 'Social media employer campaigns'),
|
|
115
|
('employee_testimonials', 'Employee testimonials'),
|
|
116
|
-- Q3-RTS-5
|
|
117
|
('recognition_rewards', 'Recognition & rewards'),
|
|
118
|
('career_development', 'Career development paths'),
|
|
119
|
('positive_culture', 'Positive work culture'),
|
|
120
|
('benefits', 'Employee benefits'),
|
|
121
|
('work_life_balance', 'Work-life balance'),
|
|
122
|
('leadership_quality', 'Leadership & management quality'),
|
|
123
|
-- Q3-RTS-6
|
|
124
|
('personalized_plans', 'Personalized career plans'),
|
|
125
|
('performance_increases', 'Performance-based salary increases'),
|
|
126
|
('stock_options', 'Stock option / equity plans'),
|
|
127
|
('mentorship_programs', 'Mentorship & development programs'),
|
|
128
|
('wellness_programs', 'Wellness & well-being programs'),
|
|
129
|
('flexible_benefits', 'Flexible benefits'),
|
|
130
|
-- Q3-RTS-8
|
|
131
|
('semi_annually', 'Semi-annually'),
|
|
132
|
-- Q3-RTS-9
|
|
133
|
('monetary_rewards', 'Monetary rewards'),
|
|
134
|
('public_recognition', 'Public recognition'),
|
|
135
|
('training_opportunities', 'Training & development opportunities'),
|
|
136
|
('promotions_internal', 'Promotions & internal mobility'),
|
|
137
|
-- Q3-ET-10
|
|
138
|
('better_opportunity', 'Better opportunity elsewhere'),
|
|
139
|
('salary_dissatisfaction', 'Salary dissatisfaction'),
|
|
140
|
('career_stagnation', 'Lack of career progression'),
|
|
141
|
('internal_conflict', 'Internal conflicts'),
|
|
142
|
('burnout', 'Burnout or stress'),
|
|
143
|
('worklife_search', 'Seeking better work-life balance'),
|
|
144
|
-- Q3-ET-11
|
|
145
|
('yes_systematically', 'Yes, systematically'),
|
|
146
|
('yes_not_for_all_departures', 'Yes, but not for all departures'),
|
|
147
|
('no_formal', 'No, not in a formal way'),
|
|
148
|
-- Q3-ET-12
|
|
149
|
('adjust_hr_practices', 'To adjust HR practices'),
|
|
150
|
('review_talent_policies', 'To review talent policies'),
|
|
151
|
('improve_work_conditions', 'To improve working conditions'),
|
|
152
|
('inform_future_retention', 'To inform future retention strategies'),
|
|
153
|
-- Q3-ET-13
|
|
154
|
('preventive_measures', 'Preventive turnover measures'),
|
|
155
|
('improve_conditions', 'Improve working conditions'),
|
|
156
|
('wellness_initiatives', 'Wellness & well-being initiatives'),
|
|
157
|
('regular_hr_reviews', 'Regular HR policy reviews'),
|
|
158
|
-- Q3-ET-14
|
|
159
|
('succession_for_all', 'Yes, for all critical roles'),
|
|
160
|
('succession_selective', 'Yes, but only for select roles'),
|
|
161
|
('no_plan', 'No formal succession plan'),
|
|
162
|
|
|
163
|
('social_networks','Social networks (LinkedIn, Facebook, etc.)');
|
|
164
|
|
|
165
|
-- Link items to questions
|
|
166
|
INSERT INTO solution_quiz_section_questions_items
|
|
167
|
(itemCode, questionCode, itemParentId, isOther)
|
|
168
|
VALUES
|
|
169
|
-- Q3-ATS-1
|
|
170
|
('social_networks', 'Q3-ATS-1', NULL, 0),
|
|
171
|
('online_job_sites','Q3-ATS-1', NULL, 0),
|
|
172
|
('internal_referrals', 'Q3-ATS-1', NULL, 0),
|
|
173
|
('external_agencies', 'Q3-ATS-1', NULL, 0),
|
|
174
|
('job_fairs', 'Q3-ATS-1', NULL, 0),
|
|
175
|
('university_partnerships', 'Q3-ATS-1', NULL, 0),
|
|
176
|
('other-please-specify', 'Q3-ATS-1', NULL, 1),
|
|
177
|
-- Q3-ATS-2
|
|
178
|
('company_culture', 'Q3-ATS-2', NULL, 0),
|
|
179
|
('career_opportunities', 'Q3-ATS-2', NULL, 0),
|
|
180
|
('competitive_compensation','Q3-ATS-2', NULL, 0),
|
|
181
|
('work_flexibility', 'Q3-ATS-2', NULL, 0),
|
|
182
|
('brand_reputation','Q3-ATS-2', NULL, 0),
|
|
183
|
('innovation_tech','Q3-ATS-2', NULL, 0),
|
|
184
|
('other-please-specify', 'Q3-ATS-2', NULL, 1),
|
|
185
|
-- Q3-ATS-3
|
|
186
|
('formal_onboarding','Q3-ATS-3', NULL, 0),
|
|
187
|
('mentoring_program','Q3-ATS-3', NULL, 0),
|
|
188
|
('initial_training','Q3-ATS-3', NULL, 0),
|
|
189
|
('welcome_meetings','Q3-ATS-3', NULL, 0),
|
|
190
|
('other-please-specify', 'Q3-ATS-3', NULL, 1),
|
|
191
|
-- Q3-ATS-4
|
|
192
|
('employer_rankings','Q3-ATS-4', NULL, 0),
|
|
193
|
('internal_ambassadors','Q3-ATS-4', NULL, 0),
|
|
194
|
('social_media_campaigns', 'Q3-ATS-4', NULL, 0),
|
|
195
|
('employee_testimonials', 'Q3-ATS-4', NULL, 0),
|
|
196
|
('other-please-specify', 'Q3-ATS-4', NULL, 1),
|
|
197
|
-- Q3-RTS-5
|
|
198
|
('recognition_rewards', 'Q3-RTS-5', NULL, 0),
|
|
199
|
('career_development', 'Q3-RTS-5', NULL, 0),
|
|
200
|
('positive_culture', 'Q3-RTS-5', NULL, 0),
|
|
201
|
('benefits', 'Q3-RTS-5', NULL, 0),
|
|
202
|
('work_life_balance','Q3-RTS-5', NULL, 0),
|
|
203
|
('leadership_quality','Q3-RTS-5', NULL, 0),
|
|
204
|
('other-please-specify', 'Q3-RTS-5', NULL, 1),
|
|
205
|
-- Q3-RTS-6
|
|
206
|
('personalized_plans','Q3-RTS-6', NULL, 0),
|
|
207
|
('performance_increases','Q3-RTS-6', NULL, 0),
|
|
208
|
('stock_options','Q3-RTS-6', NULL, 0),
|
|
209
|
('mentorship_programs','Q3-RTS-6', NULL, 0),
|
|
210
|
('wellness_programs','Q3-RTS-6', NULL, 0),
|
|
211
|
('flexible_benefits', 'Q3-RTS-6', NULL, 0),
|
|
212
|
('other-please-specify','Q3-RTS-6', NULL, 1),
|
|
213
|
-- Q3-RTS-7
|
|
214
|
('yes','Q3-RTS-7', NULL, 0),
|
|
215
|
('no','Q3-RTS-7', NULL, 0),
|
|
216
|
-- Q3-RTS-8
|
|
217
|
('quarterly','Q3-RTS-8', 'yes', 0),
|
|
218
|
('semi_annually','Q3-RTS-8', 'yes', 0),
|
|
219
|
('annually','Q3-RTS-8', 'yes', 0),
|
|
220
|
('other-please-specify', 'Q3-RTS-8', 'yes', 1),
|
|
221
|
-- Q3-RTS-9
|
|
222
|
('monetary_rewards','Q3-RTS-9', NULL, 0),
|
|
223
|
('public_recognition', 'Q3-RTS-9', NULL, 0),
|
|
224
|
('training_opportunities', 'Q3-RTS-9', NULL, 0),
|
|
225
|
('promotions_internal', 'Q3-RTS-9', NULL, 0),
|
|
226
|
('other-please-specify','Q3-RTS-9', NULL, 1),
|
|
227
|
-- Q3-ET-10
|
|
228
|
('better_opportunity', 'Q3-ET-10', NULL, 0),
|
|
229
|
('salary_dissatisfaction', 'Q3-ET-10', NULL, 0),
|
|
230
|
('career_stagnation','Q3-ET-10', NULL, 0),
|
|
231
|
('internal_conflict','Q3-ET-10', NULL, 0),
|
|
232
|
('burnout','Q3-ET-10', NULL, 0),
|
|
233
|
('worklife_search','Q3-ET-10', NULL, 0),
|
|
234
|
('other-please-specify', 'Q3-ET-10', NULL, 1),
|
|
235
|
-- Q3-ET-11
|
|
236
|
('yes_systematically', 'Q3-ET-11',NULL, 0),
|
|
237
|
('yes_not_for_all_departures', 'Q3-ET-11', NULL,0),
|
|
238
|
('no_formal', 'Q3-ET-11',NULL ,0),
|
|
239
|
-- Q3-ET-12
|
|
240
|
('adjust_hr_practices', 'Q3-ET-12','yes_systematically', 0),
|
|
241
|
('review_talent_policies', 'Q3-ET-12', 'yes_systematically', 0),
|
|
242
|
('improve_work_conditions', 'Q3-ET-12','yes_systematically', 0),
|
|
243
|
('inform_future_retention', 'Q3-ET-12', 'yes_systematically', 0),
|
|
244
|
('other-please-specify', 'Q3-ET-12', 'yes_systematically', 1),
|
|
245
|
-- Q3-ET-13
|
|
246
|
('preventive_measures','Q3-ET-13', NULL, 0),
|
|
247
|
('improve_conditions', 'Q3-ET-13', NULL, 0),
|
|
248
|
('wellness_initiatives','Q3-ET-13', NULL, 0),
|
|
249
|
('regular_hr_reviews', 'Q3-ET-13', NULL, 0),
|
|
250
|
('other-please-specify', 'Q3-ET-13', NULL, 1),
|
|
251
|
-- Q3-ET-14
|
|
252
|
('succession_for_all', 'Q3-ET-14', NULL, 0),
|
|
253
|
('succession_selective', 'Q3-ET-14', NULL, 0),
|
|
254
|
('no_plan', 'Q3-ET-14', NULL, 0);
|
|
255
|
-- Insert translations for each item ( French)
|
|
256
|
INSERT INTO solution_quiz_question_items_translate (itemCode, itemValue, languageId)
|
|
257
|
VALUES
|
|
258
|
-- Q3-ATS-1
|
|
259
|
('online_job_sites', 'Sites de recrutement en ligne (LinkedIn, etc.)', 2),
|
|
260
|
('internal_referrals', 'Recommandations internes', 2),
|
|
261
|
('external_agencies', 'Cabinets de recrutement externes', 2),
|
|
262
|
('job_fairs', 'Foires et événements de recrutement', 2),
|
|
263
|
('university_partnerships', 'Partenariats avec universités/écoles', 2),
|
|
264
|
-- Q3-ATS-2
|
|
265
|
('company_culture', 'Culture d''entreprise (valeurs, mission, vision)', 2),
|
|
266
|
('career_opportunities','Opportunités de développement de carrière (promotions, mobilité interne)', 2),
|
|
267
|
('competitive_compensation','Rémunération compétitive et avantages sociaux (assurance, retraite, etc.)',2),
|
|
268
|
('work_flexibility', 'Flexibilité du travail (télétravail, horaires)', 2),
|
|
269
|
('brand_reputation', 'Réputation et image de marque de l''entreprise', 2),
|
|
270
|
('innovation_tech','Innovation et technologies utilisées', 2),
|
|
271
|
-- Q3-ATS-3
|
|
272
|
('formal_onboarding', 'Programmes d''intégration formels', 2),
|
|
273
|
('mentoring_program','Parrainage ou mentorat', 2),
|
|
274
|
('initial_training','Sessions de formation initiale', 2),
|
|
275
|
('welcome_meetings','Réunions d''accueil avec la direction', 2),
|
|
276
|
-- Q3-ATS-4
|
|
277
|
('employer_rankings', 'Participation à des classements d''employeurs', 2),
|
|
278
|
('internal_ambassadors', 'Programme d''ambassadeurs internes', 2),
|
|
279
|
('social_media_campaigns', 'Campagnes de communication sur les réseaux sociaux', 2),
|
|
280
|
('employee_testimonials', 'Témoignages de salariés', 2),
|
|
281
|
-- Q3-RTS-5
|
|
282
|
('recognition_rewards', 'Reconnaissance et récompenses (bonus, primes, etc.)', 2),
|
|
283
|
('career_development', 'Possibilités d’évolution de carrière (promotions, formation continue)', 2),
|
|
284
|
('positive_culture', 'Culture de travail positive (collaboration, esprit d''équipe)', 2),
|
|
285
|
('benefits', 'Avantages sociaux (assurances, congés, etc.)', 2),
|
|
286
|
('work_life_balance','Équilibre travail-vie privée (flexibilité des horaires, télétravail)',2),
|
|
287
|
('leadership_quality', 'Leadership et gestion de la direction', 2),
|
|
288
|
-- Q3-RTS-6
|
|
289
|
('personalized_plans', 'Plans de carrière personnalisés', 2),
|
|
290
|
('performance_increases', 'Augmentations salariales basées sur la performance', 2),
|
|
291
|
('stock_options', 'Plans de stock-options ou participation', 2),
|
|
292
|
('mentorship_programs', 'Programmes de mentorat et de développement', 2),
|
|
293
|
('wellness_programs', 'Programmes de bien-être (activités physiques, soutien psychologique)', 2),
|
|
294
|
('flexible_benefits', 'Avantages flexibles (congés supplémentaires, télétravail)', 2),
|
|
295
|
-- Q3-RTS-8
|
|
296
|
('quarterly', 'Trimestriellement', 2),
|
|
297
|
('semi_annually', 'Semestriellement',2),
|
|
298
|
|
|
299
|
-- Q3-RTS-9
|
|
300
|
('monetary_rewards', 'Récompenses monétaires (primes, bonus)', 2),
|
|
301
|
('public_recognition','Reconnaissance publique (cérémonies, communications internes)', 2),
|
|
302
|
('training_opportunities', 'Opportunités de formation ou de développement personnel', 2),
|
|
303
|
('promotions_internal', 'Promotions et mobilité interne', 2),
|
|
304
|
-- Q3-ET-10
|
|
305
|
('better_opportunity', 'Meilleure opportunité ailleurs',2),
|
|
306
|
('salary_dissatisfaction', 'Insatisfaction salariale', 2),
|
|
307
|
('career_stagnation', 'Manque de progression', 2),
|
|
308
|
('internal_conflict','Conflits internes', 2),
|
|
309
|
('burnout', 'Épuisement professionnel',2),
|
|
310
|
('worklife_search', 'Recherche d''équilibre travail-vie privée', 2),
|
|
311
|
|
|
312
|
-- Q3-ET-11
|
|
313
|
('yes_systematically', 'Oui, systématiquement', 2),
|
|
314
|
('yes_not_for_all_departures', 'Oui, mais pas pour tous les départs', 2),
|
|
315
|
('no_formal', 'Non, pas de manière formelle', 2),
|
|
316
|
|
|
317
|
-- Q3-ET-12
|
|
318
|
('adjust_hr_practices', 'Pour ajuster les pratiques RH',2),
|
|
319
|
('review_talent_policies', 'Pour revoir les politiques de gestion des talents', 2),
|
|
320
|
('improve_work_conditions', 'Pour améliorer les conditions de travail', 2),
|
|
321
|
('inform_future_retention', 'Pour informer les stratégies de rétention futures',2),
|
|
322
|
-- Q3-ET-13
|
|
323
|
('preventive_measures', 'Augmentations salariales basées sur la performance', 2),
|
|
324
|
('improve_conditions', 'Amélioration des conditions de travail', 2),
|
|
325
|
('wellness_initiatives', 'Programmes de bien-être', 2),
|
|
326
|
('regular_hr_reviews', 'Révisions régulières des politiques RH', 2),
|
|
327
|
-- Q3-ET-14
|
|
328
|
('succession_for_all', 'Oui, pour tous les postes critiques',2),
|
|
329
|
('succession_selective', 'Oui, mais uniquement pour certains postes', 2),
|
|
330
|
('no_plan','Non, pas de plan de succession formel',2),
|
|
331
|
('social_networks', 'Réseaux sociaux (LinkedIn, Facebook, etc.)', 2);
|
|
332
|
|
|
333
|
|
|
334
|
INSERT INTO solution_quiz_question_items_translate (itemCode, itemValue, languageId)
|
|
335
|
VALUES
|
|
336
|
-- Q3-ATS-1
|
|
337
|
('online_job_sites', 'Online job sites (Indeed, Monster, etc.)', 1),
|
|
338
|
('internal_referrals', 'Internal referrals', 1),
|
|
339
|
('external_agencies', 'External recruitment agencies', 1),
|
|
340
|
('job_fairs', 'Job fairs & recruiting events', 1),
|
|
341
|
('university_partnerships', 'University / school partnerships',1),
|
|
342
|
-- Q3-ATS-2
|
|
343
|
('company_culture', 'Company culture (values, mission)', 1),
|
|
344
|
('career_opportunities', 'Career development opportunities', 1),
|
|
345
|
('competitive_compensation','Competitive pay & benefits', 1),
|
|
346
|
('work_flexibility','Work flexibility (remote, hours)',1),
|
|
347
|
('brand_reputation', 'Employer brand & reputation',1),
|
|
348
|
('innovation_tech', 'Innovation & technology used',1),
|
|
349
|
-- Q3-ATS-3
|
|
350
|
('formal_onboarding', 'Formal onboarding programs', 1),
|
|
351
|
('mentoring_program','Mentoring / buddy programs', 1),
|
|
352
|
('initial_training','Initial training sessions', 1),
|
|
353
|
('welcome_meetings', 'Welcome meetings with leadership', 1),
|
|
354
|
-- Q3-ATS-4
|
|
355
|
('employer_rankings', 'Participation in employer rankings', 1),
|
|
356
|
('internal_ambassadors', 'Internal ambassador programs', 1),
|
|
357
|
('social_media_campaigns','Social media employer campaigns', 1),
|
|
358
|
('employee_testimonials','Employee testimonials', 1),
|
|
359
|
-- Q3-RTS-5
|
|
360
|
('recognition_rewards','Recognition & rewards',1),
|
|
361
|
('career_development', 'Career development paths', 1),
|
|
362
|
('positive_culture', 'Positive work culture', 1),
|
|
363
|
('benefits', 'Employee benefits', 1),
|
|
364
|
('work_life_balance', 'Work–life balance',1),
|
|
365
|
('leadership_quality','Leadership & management quality',1),
|
|
366
|
-- Q3-RTS-6
|
|
367
|
('personalized_plans', 'Personalized career plans',1),
|
|
368
|
('performance_increases', 'Performance-based salary increases', 1),
|
|
369
|
('stock_options', 'Stock option / equity plans', 1),
|
|
370
|
('mentorship_programs', 'Mentorship & development programs', 1),
|
|
371
|
('wellness_programs', 'Wellness & well-being programs', 1),
|
|
372
|
('flexible_benefits', 'Flexible benefits', 1),
|
|
373
|
-- Q3-RTS-8
|
|
374
|
('quarterly', 'Quarterly', 1),
|
|
375
|
('semi_annually','Semi-annually', 1),
|
|
376
|
-- Q3-RTS-9
|
|
377
|
('monetary_rewards','Monetary rewards', 1),
|
|
378
|
('public_recognition', 'Public recognition', 1),
|
|
379
|
('training_opportunities', 'Training & development opportunities',1),
|
|
380
|
('promotions_internal', 'Promotions & internal mobility',1),
|
|
381
|
-- Q3-ET-10
|
|
382
|
('better_opportunity','Better opportunity elsewhere',1),
|
|
383
|
('salary_dissatisfaction', 'Salary dissatisfaction',1),
|
|
384
|
('career_stagnation', 'Lack of career progression',1),
|
|
385
|
('internal_conflict', 'Internal conflicts',1),
|
|
386
|
('burnout', 'Burnout or stress', 1),
|
|
387
|
('worklife_search', 'Seeking better work–life balance',1),
|
|
388
|
-- Q3-ET-11
|
|
389
|
('yes_systematically', 'Yes, systematically', 1),
|
|
390
|
('yes_not_for_all_departures', 'Yes, but not for all departures', 1),
|
|
391
|
('no_formal', 'No, not in a formal way', 1),
|
|
392
|
-- Q3-ET-12
|
|
393
|
('adjust_hr_practices', 'To adjust HR practices', 1),
|
|
394
|
('review_talent_policies', 'To review talent policies', 1),
|
|
395
|
('improve_work_conditions', 'To improve working conditions',1),
|
|
396
|
('inform_future_retention', 'To inform future retention strategies', 1),
|
|
397
|
-- Q3-ET-13
|
|
398
|
('preventive_measures', 'Preventive turnover measures', 1),
|
|
399
|
('improve_conditions', 'Improve working conditions', 1),
|
|
400
|
('wellness_initiatives', 'Wellness & well-being initiatives', 1),
|
|
401
|
('regular_hr_reviews', 'Regular HR policy reviews', 1),
|
|
402
|
-- Q3-ET-14
|
|
403
|
('succession_for_all','Yes, for all critical roles', 1),
|
|
404
|
('succession_selective','Yes, but only for select roles',1),
|
|
405
|
('social_networks', 'Social networks (LinkedIn, Facebook, etc.)', 1),
|
|
406
|
('no_plan','No formal succession plan',1);
|