Hi, I'm trying to get this to work (as a bulk update). I'm using Ora 10 via SQL Developer
UPDATE mun474t.odf_ca_project
SET dh_product_2 = 'Adhoc insights'
WHERE EXISTS (dh_product_2 = 'CI - Brand Loyalty Activator');,
'CI - Brand Loyalty Analysis/Migration',
'CI - Brand Loyalty Lab',
'CI - Buyer Flow',
'CI - Client Database/Panel Match & Analysis',
'CI - Client Database/Panel Match Only',
'CI - Custom Behavioral Segmentation Analysis',
'CI - Custom Latino/Hispanic Analysis',
'CI - Custom Panel Creation',
'CI - Integrated Category Analysis',
'CI - Integrated Segmentation Analysis',
'CI - Market Structure',
'CI - Multiple Product/Service Solution',
'CI - Other Integrated Analysis',
'CI - Other Shelf Analysis',
'CI - Sample/Demo Analysis',
'CI - Shopper Profiling',
'CI - Test/Control',
'CI - Test/Control HH Analysis Only',
'CI - Test/Control HH Match & Analysis',
'CI - Test/Control HH Match Only',
'Initiatives - c-Store',
'Initiatives - ROM',
'Insights - Behavior Segmentation (not specific)',
'Insights - Brand Loyalty Analysis',
'Insights - Consumer Assortment Suite',
'Insights - Consumer Needs States (Behavior & Attitude Studies)',
'Insights - Consumer Profiling',
'Insights - Consumer Promotion Suite',
'Insights - Core Consumer Guardrails',
'Insights - CRM Program Effectiveness',
'Insights - Custom',
'Insights - Market Structure',
'Insights - Other',
'Insights - Pricing Analysis',
'Internal - Other / Non-Product')
It works fine if I do this (product update) individually, but I get ORA00928 - missing select keyword. This is not my normal function, just something I need to do as part of something bigger, so any help wld b a big bonus. Thanks in advance.
B
UPDATE mun474t.odf_ca_project
SET dh_product_2 = 'Adhoc insights'
WHERE EXISTS (dh_product_2 = 'CI - Brand Loyalty Activator');,
'CI - Brand Loyalty Analysis/Migration',
'CI - Brand Loyalty Lab',
'CI - Buyer Flow',
'CI - Client Database/Panel Match & Analysis',
'CI - Client Database/Panel Match Only',
'CI - Custom Behavioral Segmentation Analysis',
'CI - Custom Latino/Hispanic Analysis',
'CI - Custom Panel Creation',
'CI - Integrated Category Analysis',
'CI - Integrated Segmentation Analysis',
'CI - Market Structure',
'CI - Multiple Product/Service Solution',
'CI - Other Integrated Analysis',
'CI - Other Shelf Analysis',
'CI - Sample/Demo Analysis',
'CI - Shopper Profiling',
'CI - Test/Control',
'CI - Test/Control HH Analysis Only',
'CI - Test/Control HH Match & Analysis',
'CI - Test/Control HH Match Only',
'Initiatives - c-Store',
'Initiatives - ROM',
'Insights - Behavior Segmentation (not specific)',
'Insights - Brand Loyalty Analysis',
'Insights - Consumer Assortment Suite',
'Insights - Consumer Needs States (Behavior & Attitude Studies)',
'Insights - Consumer Profiling',
'Insights - Consumer Promotion Suite',
'Insights - Core Consumer Guardrails',
'Insights - CRM Program Effectiveness',
'Insights - Custom',
'Insights - Market Structure',
'Insights - Other',
'Insights - Pricing Analysis',
'Internal - Other / Non-Product')
It works fine if I do this (product update) individually, but I get ORA00928 - missing select keyword. This is not my normal function, just something I need to do as part of something bigger, so any help wld b a big bonus. Thanks in advance.
B