Projet

Général

Profil

US #1017 » Insert-quiz3.sql

ahlem belgacem, 30/04/2025 13:57

 
1
use  socle;
2

    
3
--  Insert into solution_quiz for Quiz 3 Attraction, Rétention et fin de contrat
4
INSERT INTO solution_quiz (id, quizCode, quiz_image, averagetime)
5
VALUES
6
  (3, 'quiz_3_Attraction_Retention_and_Termination',
7
   'Questionnaire 3 -Attraction, Rétention et fin de contrat.jpg',
8
   15);
9

    
10
-- Insert into solution_quiz_translate for Quiz 3 (French & English)
11
INSERT INTO solution_quiz_translate (quizCode, title, description, short_description, languageId)
12
VALUES
13
  ('quiz_3_Attraction_Retention_and_Termination',
14
   'Questionnaire 3 -Attraction, Rétention et fin de contrat',
15
   'Évaluation des stratégies d\'attraction et de rétention des talents, ainsi que des processus de fin de contrat',
16
   'Évaluation des stratégies d\'attraction, rétention et fin de contrat', 2),
17
  ('quiz_3_Attraction_Retention_and_Termination',
18
   'Quiz 3 - Talent Attraction, Retention & Offboarding',
19
   'Assessment of talent attraction and retention strategies, and employee offboarding processes',
20
   'Assessment of attraction, retention & offboarding strategies', 1);
21

    
22
-- Insert into solution_quiz_section for Quiz 3
23
INSERT INTO solution_quiz_section (sectionCode, quizCode, section_order)
24
VALUES
25
  ('Talent_Attraction_Strategies','quiz_3_Attraction_Retention_and_Termination', 1),
26
  ('Talent_Retention_Strategies','quiz_3_Attraction_Retention_and_Termination', 2),
27
  ('Employment_Termination_Process', 'quiz_3_Attraction_Retention_and_Termination', 3);
28

    
29
--  Insert translations for those sections
30
INSERT INTO solution_quiz_section_translate (sectionCode, title, languageId)
31
VALUES
32
  -- English
33
  ('Talent_Attraction_Strategies', 'Talent Attraction Strategies', 1),
34
  ('Talent_Retention_Strategies', 'Talent Retention Strategies', 1),
35
  ('Employment_Termination_Process', 'Employment Termination Process', 1),
36
  -- French
37
  ('Talent_Attraction_Strategies', 'Stratégies d\'Attraction des Talents', 2),
38
  ('Talent_Retention_Strategies',  'Stratégies de Rétention des Talents', 2),
39
  ('Employment_Termination_Process','Cessation d\'Emploi', 2);
40

    
41
-- Insert questions for each section
42
INSERT INTO solution_quiz_section_questions
43
  (quizCode, questionCode, sectionCode, idparent, type, question_order, echartType)
44
VALUES
45
  -- Section 1: Talent_Attraction_Strategies (Q3-ATS-1 → Q3-ATS-4)
46
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-1', 'Talent_Attraction_Strategies', NULL, 'CM', 1, 'Bar'),
47
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-2', 'Talent_Attraction_Strategies', NULL, 'CM', 2, 'Bar'),
48
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-3', 'Talent_Attraction_Strategies', NULL, 'CM', 3, 'Bar'),
49
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ATS-4', 'Talent_Attraction_Strategies', NULL, 'CM', 4, 'Bar'),
50

    
51
  -- Section 2: Talent_Retention_Strategies (Q3-RTS-5 → Q3-RTS-9)
52
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-5', 'Talent_Retention_Strategies', NULL,      'CM', 5, 'Bar'),
53
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-6', 'Talent_Retention_Strategies', NULL,      'CM', 6, 'Bar'),
54
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-7', 'Talent_Retention_Strategies', NULL,      'CU', 7, 'Pie'),
55
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-8', 'Talent_Retention_Strategies', 'Q3-RTS-7', 'CU', 8, 'Bar'),
56
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-RTS-9', 'Talent_Retention_Strategies', NULL,      'CM', 9, 'Bar'),
57

    
58
  -- Section 3: Employment_Termination_Process (Q3-ET-10 → Q3-ET-14)
59
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-10', 'Employment_Termination_Process', NULL,      'CM', 10, 'Bar'),
60
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-11', 'Employment_Termination_Process', NULL,      'CU', 11, 'Pie'),
61
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-12', 'Employment_Termination_Process', 'Q3-ET-11', 'CM', 12, 'Bar'),
62
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-13', 'Employment_Termination_Process', NULL,      'CM', 13, 'Bar'),
63
  ('quiz_3_Attraction_Retention_and_Termination', 'Q3-ET-14', 'Employment_Termination_Process', NULL,      'CU', 14, 'Pie');
64

    
65

    
66
--  Insert translations for all questions (English & French)
67
INSERT INTO solution_quiz_section_questions_translate (questionCode, title, languageId)
68
VALUES
69
  -- English
70
  ('Q3-ATS-1', 'Which recruitment channels do you use to attract new talent?',1),
71
  ('Q3-ATS-2', 'Which aspects of your company are most attractive to potential hires?', 1),
72
  ('Q3-ATS-3', 'What initiatives do you implement to onboard new employees?',1),
73
  ('Q3-ATS-4', 'How do you enhance your employer brand?', 1),
74

    
75
  ('Q3-RTS-5', 'What factors drive employee satisfaction and engagement?', 1),
76
  ('Q3-RTS-6', 'Which programs have you implemented to retain key talent?',1),
77
  ('Q3-RTS-7', 'Do you conduct employee satisfaction and engagement surveys?', 1),
78
  ('Q3-RTS-8', 'How often do you run these surveys?',1),
79
  ('Q3-RTS-9', 'How are outstanding employee performances recognized and rewarded?', 1),
80

    
81
  ('Q3-ET-10','What are the most common reasons employees leave your company?',1),
82
  ('Q3-ET-11','Do you conduct exit interviews to understand departure reasons?',1),
83
  ('Q3-ET-12','How do you use the insights gathered from exit interviews?', 1),
84
  ('Q3-ET-13','What measures have you implemented to prevent voluntary turnover?', 1),
85
  ('Q3-ET-14','Do you have a succession plan for key-role departures?', 1),
86

    
87
  -- French
88
  ('Q3-ATS-1', 'Quels canaux de recrutement utilisez-vous pour attirer de nouveaux talents ?', 2),
89
  ('Q3-ATS-2', 'Quels éléments de votre entreprise sont les plus attractifs pour les candidats potentiels ?', 2),
90
  ('Q3-ATS-3', 'Quelles initiatives mettez-vous en place pour faciliter l’intégration des nouveaux employés ?', 2),
91
  ('Q3-ATS-4', 'Comment travaillez-vous à améliorer la marque employeur de votre entreprise ?', 2),
92

    
93
  ('Q3-RTS-5', 'Quels sont les principaux éléments qui contribuent à la satisfaction et à l’engagement des employés ?', 2),
94
  ('Q3-RTS-6', 'Quels programmes spécifiques avez-vous mis en place pour retenir vos talents clés ?', 2),
95
  ('Q3-RTS-7', 'Réalisez-vous des enquêtes de satisfaction et d’engagement des employés ?', 2),
96
  ('Q3-RTS-8', 'À quelle fréquence réalisez-vous ces enquêtes ?', 2),
97
  ('Q3-RTS-9', 'Comment les performances exceptionnelles des employés sont-elles reconnues et récompensées ?', 2),
98

    
99
  ('Q3-ET-10','Quels sont les motifs les plus courants pour lesquels les employés quittent votre entreprise ?', 2),
100
  ('Q3-ET-11','Menez-vous des entretiens de départ pour comprendre les raisons du départ des employés ?', 2),
101
  ('Q3-ET-12','Comment utilisez-vous les informations recueillies lors des entretiens de départ ?', 2),
102
  ('Q3-ET-13','Quelles mesures avez-vous mises en place pour prévenir les départs volontaires ?', 2),
103
  ('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);
104

    
105
--   all item codes & names 
106
INSERT INTO solution_reponses_items (itemCode, itemName)
107
VALUES
108
  -- Q3-ATS-1
109
  ('online_job_sites',          'Online job sites (Indeed, Monster, etc.)'),
110
  ('internal_referrals',        'Internal referrals'),
111
  ('external_agencies',         'External recruitment agencies'),
112
  ('job_fairs',                 'Job fairs & recruiting events'),
113
  ('university_partnerships',   'University / school partnerships'),
114
  ('other_attraction',          'Other (please specify)'),
115

    
116
  -- Q3-ATS-2
117
  ('company_culture',           'Company culture (values, mission)'),
118
  ('career_opportunities',      'Career development opportunities'),
119
  ('competitive_compensation',  'Competitive pay & benefits'),
120
  ('work_flexibility',          'Work flexibility (remote, hours)'),
121
  ('brand_reputation',          'Employer brand & reputation'),
122
  ('innovation_tech',           'Innovation & technology used'),
123
  ('other_attractive',          'Other (please specify)'),
124

    
125
  -- Q3-ATS-3
126
  ('formal_onboarding',         'Formal onboarding programs'),
127
  ('mentoring_program',         'Mentoring / buddy programs'),
128
  ('initial_training',          'Initial training sessions'),
129
  ('welcome_meetings',          'Welcome meetings with leadership'),
130
  ('other_onboarding',          'Other (please specify)'),
131

    
132
  -- Q3-ATS-4
133
  ('employer_rankings',         'Participation in employer rankings'),
134
  ('internal_ambassadors',      'Internal ambassador programs'),
135
  ('social_media_campaigns',    'Social media employer campaigns'),
136
  ('employee_testimonials',     'Employee testimonials'),
137
  ('other_employer_brand',      'Other (please specify)'),
138

    
139
  -- Q3-RTS-5
140
  ('recognition_rewards',       'Recognition & rewards'),
141
  ('career_development',        'Career development paths'),
142
  ('positive_culture',          'Positive work culture'),
143
  ('benefits',                  'Employee benefits'),
144
  ('work_life_balance',         'Work-life balance'),
145
  ('leadership_quality',        'Leadership & management quality'),
146
  ('other_retention',           'Other (please specify)'),
147

    
148
  -- Q3-RTS-6
149
  ('personalized_plans',        'Personalized career plans'),
150
  ('performance_increases',     'Performance-based salary increases'),
151
  ('stock_options',             'Stock option / equity plans'),
152
  ('mentorship_programs',       'Mentorship & development programs'),
153
  ('wellness_programs',         'Wellness & well-being programs'),
154
  ('flexible_benefits',         'Flexible benefits'),
155
  ('other_retention_programs',  'Other (please specify)'),
156

    
157
  -- Q3-RTS-8
158
  ('semi_annually',             'Semi-annually'),
159
  ('other_survey_frequency',    'Other (please specify)'),
160

    
161
  -- Q3-RTS-9
162
  ('monetary_rewards',          'Monetary rewards'),
163
  ('public_recognition',        'Public recognition'),
164
  ('training_opportunities',    'Training & development opportunities'),
165
  ('promotions_internal',       'Promotions & internal mobility'),
166
  ('other_rewards',             'Other (please specify)'),
167

    
168
  -- Q3-ET-10
169
  ('better_opportunity',        'Better opportunity elsewhere'),
170
  ('salary_dissatisfaction',    'Salary dissatisfaction'),
171
  ('career_stagnation',         'Lack of career progression'),
172
  ('internal_conflict',         'Internal conflicts'),
173
  ('burnout',                   'Burnout or stress'),
174
  ('worklife_search',           'Seeking better work-life balance'),
175
  ('other_exit_reasons',        'Other (please specify)'),
176

    
177
  -- Q3-ET-12
178
  ('adjust_hr_practices',       'To adjust HR practices'),
179
  ('review_talent_policies',    'To review talent policies'),
180
  ('improve_work_conditions',   'To improve working conditions'),
181
  ('inform_future_retention',   'To inform future retention strategies'),
182
  ('other_exit_interview',      'Other (please specify)'),
183

    
184
  -- Q3-ET-13
185
  ('preventive_measures',       'Preventive turnover measures'),
186
  ('improve_conditions',        'Improve working conditions'),
187
  ('wellness_initiatives',      'Wellness & well-being initiatives'),
188
  ('regular_hr_reviews',        'Regular HR policy reviews'),
189
  ('other_preventive',          'Other (please specify)'),
190

    
191
  -- Q3-ET-14
192
  ('succession_for_all',        'Yes, for all critical roles'),
193
  ('succession_selective',      'Yes, but only for select roles'),
194
  ('no_plan',                   'No formal succession plan'),
195
  
196
  ('social_networks','Social networks (LinkedIn, Facebook, etc.)');
197

    
198
--  Link items to questions
199
INSERT INTO solution_quiz_section_questions_items
200
  (itemCode, questionCode, itemParentId, isOther)
201
VALUES
202
  -- Q3-ATS-1
203
  ('social_networks', 'Q3-ATS-1', NULL, 0),
204
  ('online_job_sites','Q3-ATS-1', NULL, 0),
205
  ('internal_referrals', 'Q3-ATS-1', NULL, 0),
206
  ('external_agencies',  'Q3-ATS-1', NULL, 0),
207
  ('job_fairs', 'Q3-ATS-1', NULL, 0),
208
  ('university_partnerships', 'Q3-ATS-1', NULL, 0),
209
  ('other_attraction', 'Q3-ATS-1', NULL, 1),
210

    
211
  -- Q3-ATS-2
212
  ('company_culture',  'Q3-ATS-2', NULL, 0),
213
  ('career_opportunities', 'Q3-ATS-2', NULL, 0),
214
  ('competitive_compensation','Q3-ATS-2', NULL, 0),
215
  ('work_flexibility', 'Q3-ATS-2', NULL, 0),
216
  ('brand_reputation','Q3-ATS-2', NULL, 0),
217
  ('innovation_tech','Q3-ATS-2', NULL, 0),
218
  ('other_attractive', 'Q3-ATS-2', NULL, 1),
219

    
220
  -- Q3-ATS-3
221
  ('formal_onboarding','Q3-ATS-3', NULL, 0),
222
  ('mentoring_program','Q3-ATS-3', NULL, 0),
223
  ('initial_training','Q3-ATS-3', NULL, 0),
224
  ('welcome_meetings','Q3-ATS-3', NULL, 0),
225
  ('other_onboarding', 'Q3-ATS-3', NULL, 1),
226

    
227
  -- Q3-ATS-4
228
  ('employer_rankings','Q3-ATS-4', NULL, 0),
229
  ('internal_ambassadors','Q3-ATS-4', NULL, 0),
230
  ('social_media_campaigns', 'Q3-ATS-4', NULL, 0),
231
  ('employee_testimonials', 'Q3-ATS-4', NULL, 0),
232
  ('other_employer_brand', 'Q3-ATS-4', NULL, 1),
233

    
234
  -- Q3-RTS-5
235
  ('recognition_rewards', 'Q3-RTS-5', NULL, 0),
236
  ('career_development', 'Q3-RTS-5', NULL, 0),
237
  ('positive_culture',   'Q3-RTS-5', NULL, 0),
238
  ('benefits', 'Q3-RTS-5', NULL, 0),
239
  ('work_life_balance','Q3-RTS-5', NULL, 0),
240
  ('leadership_quality','Q3-RTS-5', NULL, 0),
241
  ('other_retention',  'Q3-RTS-5', NULL, 1),
242

    
243
  -- Q3-RTS-6
244
  ('personalized_plans','Q3-RTS-6', NULL, 0),
245
  ('performance_increases','Q3-RTS-6', NULL, 0),
246
  ('stock_options','Q3-RTS-6', NULL, 0),
247
  ('mentorship_programs','Q3-RTS-6', NULL, 0),
248
  ('wellness_programs','Q3-RTS-6', NULL, 0),
249
  ('flexible_benefits', 'Q3-RTS-6', NULL, 0),
250
  ('other_retention_programs','Q3-RTS-6', NULL, 1),
251

    
252
  -- Q3-RTS-7
253
  ('yes','Q3-RTS-7', NULL, 0),
254
  ('no','Q3-RTS-7', NULL, 0),
255

    
256
  -- Q3-RTS-8
257
  ('quarterly','Q3-RTS-8', NULL, 0),
258
  ('semi_annually','Q3-RTS-8', NULL, 0),
259
  ('annually','Q3-RTS-8', NULL, 0),
260
  ('other_survey_frequency', 'Q3-RTS-8', NULL, 1),
261

    
262
  -- Q3-RTS-9
263
  ('monetary_rewards','Q3-RTS-9', NULL, 0),
264
  ('public_recognition', 'Q3-RTS-9', NULL, 0),
265
  ('training_opportunities', 'Q3-RTS-9', NULL, 0),
266
  ('promotions_internal', 'Q3-RTS-9', NULL, 0),
267
  ('other_rewards','Q3-RTS-9', NULL, 1),
268

    
269
  -- Q3-ET-10
270
  ('better_opportunity', 'Q3-ET-10', NULL, 0),
271
  ('salary_dissatisfaction',  'Q3-ET-10', NULL, 0),
272
  ('career_stagnation','Q3-ET-10', NULL, 0),
273
  ('internal_conflict','Q3-ET-10', NULL, 0),
274
  ('burnout','Q3-ET-10', NULL, 0),
275
  ('worklife_search','Q3-ET-10', NULL, 0),
276
  ('other_exit_reasons',  'Q3-ET-10', NULL, 1),
277

    
278
  -- Q3-ET-11
279
  ('yes', 'Q3-ET-11', NULL, 0),
280
  ('no', 'Q3-ET-11', NULL, 0),
281

    
282
  -- Q3-ET-12
283
  ('adjust_hr_practices',  'Q3-ET-12', NULL, 0),
284
  ('review_talent_policies',  'Q3-ET-12', NULL, 0),
285
  ('improve_work_conditions', 'Q3-ET-12', NULL, 0),
286
  ('inform_future_retention', 'Q3-ET-12', NULL, 0),
287
  ('other_exit_interview',    'Q3-ET-12', NULL, 1),
288

    
289
  -- Q3-ET-13
290
  ('preventive_measures','Q3-ET-13', NULL, 0),
291
  ('improve_conditions', 'Q3-ET-13', NULL, 0),
292
  ('wellness_initiatives','Q3-ET-13', NULL, 0),
293
  ('regular_hr_reviews', 'Q3-ET-13', NULL, 0),
294
  ('other_preventive',  'Q3-ET-13', NULL, 1),
295

    
296
  -- Q3-ET-14
297
  ('succession_for_all', 'Q3-ET-14', NULL, 0),
298
  ('succession_selective',  'Q3-ET-14', NULL, 0),
299
  ('no_plan', 'Q3-ET-14', NULL, 0);
300

    
301
-- Insert translations for each item ( French)
302
INSERT INTO solution_quiz_question_items_translate (itemCode, itemValue, languageId)
303
VALUES
304
  -- Q3-ATS-1
305
  ('online_job_sites',   'Sites de recrutement en ligne (Indeed, Monster, etc.)', 2),
306
  ('internal_referrals', 'Recommandations internes',  2),
307
  ('external_agencies', 'Cabinets de recrutement externes',   2),
308
  ('job_fairs',  'Foires et événements de recrutement',  2),
309
  ('university_partnerships', 'Partenariats avec universités/écoles', 2),
310
  ('other_attraction',        'Autre (précisez)',  2),
311

    
312
  -- Q3-ATS-2
313
  ('company_culture', 'Culture d''entreprise (valeurs, mission)', 2),
314
  ('career_opportunities','Opportunités de développement de carrière', 2),
315
  ('competitive_compensation','Rémunération compétitive et avantages sociaux',2),
316
  ('work_flexibility', 'Flexibilité du travail (télétravail, horaires)', 2),
317
  ('brand_reputation', 'Réputation et image de marque',    2),
318
  ('innovation_tech','Innovation et technologies utilisées',  2),
319
  ('other_attractive', 'Autre (précisez)',  2),
320

    
321
  -- Q3-ATS-3
322
  ('formal_onboarding', 'Programmes d''intégration formels', 2),
323
  ('mentoring_program','Parrainage ou mentorat',  2),
324
  ('initial_training','Sessions de formation initiale', 2),
325
  ('welcome_meetings','Réunions d''accueil avec la direction', 2),
326
  ('other_onboarding','Autre (précisez)',    2),
327

    
328
  -- Q3-ATS-4
329
  ('employer_rankings', 'Participation à des classements d''employeurs',  2),
330
  ('internal_ambassadors',    'Programme d''ambassadeurs internes', 2),
331
  ('social_media_campaigns',  'Campagnes sur les réseaux sociaux', 2),
332
  ('employee_testimonials',   'Témoignages de salariés', 2),
333
  ('other_employer_brand',    'Autre (précisez)',  2),
334

    
335
  -- Q3-RTS-5
336
  ('recognition_rewards',  'Reconnaissance et récompenses', 2),
337
  ('career_development', 'Possibilités d''évolution de carrière',   2),
338
  ('positive_culture', 'Culture de travail positive', 2),
339
  ('benefits',   'Avantages sociaux', 2),
340
  ('work_life_balance','Équilibre travail-vie privée',2),
341
  ('leadership_quality', 'Leadership et gestion',   2),
342
  ('other_retention',  'Autre (précisez)',   2),
343

    
344
  -- Q3-RTS-6
345
  ('personalized_plans', 'Plans de carrière personnalisés', 2),
346
  ('performance_increases', 'Augmentations basées sur la performance', 2),
347
  ('stock_options',           'Plans d''actions ou participation', 2),
348
  ('mentorship_programs',   'Programmes de mentorat',  2),
349
  ('wellness_programs',  'Programmes de bien-être',  2),
350
  ('flexible_benefits', 'Avantages flexibles', 2),
351
  ('other_retention_programs','Autre (précisez)',  2),
352

    
353
  -- Q3-RTS-8
354
  ('quarterly', 'Trimestriellement',  2),
355
  ('semi_annually', 'Semestriellement',2),
356
  ('other_survey_frequency',  'Autre (précisez)',   2),
357

    
358
  -- Q3-RTS-9
359
  ('monetary_rewards',  'Récompenses monétaires',  2),
360
  ('public_recognition','Reconnaissance publique', 2),
361
  ('training_opportunities',  'Opportunités de formation',  2),
362
  ('promotions_internal',  'Promotions et mobilité interne', 2),
363
  ('other_rewards',  'Autre (précisez)',2),
364

    
365
  -- Q3-ET-10
366
  ('better_opportunity',  'Meilleure opportunité ailleurs',2),
367
  ('salary_dissatisfaction',  'Insatisfaction salariale',  2),
368
  ('career_stagnation', 'Manque de progression', 2),
369
  ('internal_conflict','Conflits internes',  2),
370
  ('burnout', 'Épuisement professionnel',2),
371
  ('worklife_search', 'Recherche d''équilibre travail-vie privée',  2),
372
  ('other_exit_reasons', 'Autre (précisez)',2),
373

    
374
  -- Q3-ET-12
375
  ('adjust_hr_practices', 'Pour ajuster les pratiques RH',2),
376
  ('review_talent_policies',  'Pour revoir les politiques de talents', 2),
377
  ('improve_work_conditions', 'Pour améliorer les conditions de travail',  2),
378
  ('inform_future_retention', 'Pour informer les stratégies futures',2),
379
  ('other_exit_interview', 'Autre (précisez)', 2),
380

    
381
  -- Q3-ET-13
382
  ('preventive_measures', 'Mesures préventives contre le turnover',  2),
383
  ('improve_conditions',  'Amélioration des conditions', 2),
384
  ('wellness_initiatives', 'Initiatives bien-être', 2),
385
  ('regular_hr_reviews', 'Revue régulière des politiques RH',  2),
386
  ('other_preventive','Autre (précisez)', 2),
387

    
388
  -- Q3-ET-14
389
  ('succession_for_all', 'Oui, pour tous les postes critiques',2),
390
  ('succession_selective', 'Oui, mais seulement pour certains postes', 2),
391
  ('no_plan','Non, pas de plan formel',2),
392
    ('social_networks', 'Réseaux sociaux (LinkedIn, Facebook, etc.)', 2);
393

    
394
  
395
  
396
  
397
  INSERT INTO solution_quiz_question_items_translate (itemCode, itemValue, languageId)
398
VALUES
399
  -- Q3-ATS-1
400
  ('online_job_sites',  'Online job sites (Indeed, Monster, etc.)',   1),
401
  ('internal_referrals', 'Internal referrals',    1),
402
  ('external_agencies', 'External recruitment agencies',  1),
403
  ('job_fairs',  'Job fairs & recruiting events',   1),
404
  ('university_partnerships', 'University / school partnerships',1),
405
  ('other_attraction','Other (please specify)',  1),
406

    
407
  -- Q3-ATS-2
408
  ('company_culture', 'Company culture (values, mission)', 1),
409
  ('career_opportunities', 'Career development opportunities', 1),
410
  ('competitive_compensation','Competitive pay & benefits', 1),
411
  ('work_flexibility','Work flexibility (remote, hours)',1),
412
  ('brand_reputation', 'Employer brand & reputation',1),
413
  ('innovation_tech',  'Innovation & technology used',1),
414
  ('other_attractive', 'Other (please specify)',    1),
415

    
416
  -- Q3-ATS-3
417
  ('formal_onboarding', 'Formal onboarding programs', 1),
418
  ('mentoring_program','Mentoring / buddy programs',   1),
419
  ('initial_training','Initial training sessions',  1),
420
  ('welcome_meetings', 'Welcome meetings with leadership',  1),
421
  ('other_onboarding', 'Other (please specify)', 1),
422

    
423
  -- Q3-ATS-4
424
  ('employer_rankings',   'Participation in employer rankings',  1),
425
  ('internal_ambassadors', 'Internal ambassador programs', 1),
426
  ('social_media_campaigns','Social media employer campaigns', 1),
427
  ('employee_testimonials','Employee testimonials', 1),
428
  ('other_employer_brand','Other (please specify)',1),
429

    
430
  -- Q3-RTS-5
431
  ('recognition_rewards','Recognition & rewards',1),
432
  ('career_development', 'Career development paths', 1),
433
  ('positive_culture', 'Positive work culture', 1),
434
  ('benefits', 'Employee benefits', 1),
435
  ('work_life_balance', 'Work–life balance',1),
436
  ('leadership_quality','Leadership & management quality',1),
437
  ('other_retention',  'Other (please specify)', 1),
438

    
439
  -- Q3-RTS-6
440
  ('personalized_plans', 'Personalized career plans',1),
441
  ('performance_increases', 'Performance-based salary increases', 1),
442
  ('stock_options', 'Stock option / equity plans',  1),
443
  ('mentorship_programs', 'Mentorship & development programs', 1),
444
  ('wellness_programs',  'Wellness & well-being programs', 1),
445
  ('flexible_benefits', 'Flexible benefits',   1),
446
  ('other_retention_programs','Other (please specify)', 1),
447

    
448
  -- Q3-RTS-8
449
  ('quarterly',  'Quarterly', 1),
450
  ('semi_annually','Semi-annually', 1),
451
  ('other_survey_frequency',  'Other (please specify)',1),
452

    
453
  -- Q3-RTS-9
454
  ('monetary_rewards','Monetary rewards', 1),
455
  ('public_recognition',  'Public recognition', 1),
456
  ('training_opportunities',  'Training & development opportunities',1),
457
  ('promotions_internal', 'Promotions & internal mobility',1),
458
  ('other_rewards','Other (please specify)',1),
459

    
460
  -- Q3-ET-10
461
  ('better_opportunity','Better opportunity elsewhere',1),
462
  ('salary_dissatisfaction',  'Salary dissatisfaction',1),
463
  ('career_stagnation',  'Lack of career progression',1),
464
  ('internal_conflict', 'Internal conflicts',1),
465
  ('burnout', 'Burnout or stress',  1),
466
  ('worklife_search', 'Seeking better work–life balance',1),
467
  ('other_exit_reasons', 'Other (please specify)', 1),
468

    
469
  -- Q3-ET-12
470
  ('adjust_hr_practices', 'To adjust HR practices', 1),
471
  ('review_talent_policies', 'To review talent policies', 1),
472
  ('improve_work_conditions', 'To improve working conditions',1),
473
  ('inform_future_retention', 'To inform future retention strategies', 1),
474
  ('other_exit_interview',    'Other (please specify)',  1),
475

    
476
  -- Q3-ET-13
477
  ('preventive_measures', 'Preventive turnover measures', 1),
478
  ('improve_conditions', 'Improve working conditions',  1),
479
  ('wellness_initiatives',  'Wellness & well-being initiatives', 1),
480
  ('regular_hr_reviews', 'Regular HR policy reviews', 1),
481
  ('other_preventive', 'Other (please specify)', 1),
482

    
483
  -- Q3-ET-14
484
  ('succession_for_all','Yes, for all critical roles', 1),
485
  ('succession_selective','Yes, but only for select roles',1),
486
('social_networks', 'Social networks (LinkedIn, Facebook, etc.)', 1),
487
  ('no_plan','No formal succession plan',1);
488

    
    (1-1/1)