Great thank you, still the is an compile error:
ORA-01756:quoted string not properly terminated
Below is the executed statement. (Had to modify it a bit to my real env.)
Main Topics
Browse All Topicsneed help with some oracle sql updates.
I have to repeat this task (see code) for these fields:
F50B ... F63B (F50BY ... F63BY)
F50C ... F63C (F50CY ... F63CY)
Is these an easier way then doing it manually.
Thank you,
Tolomir
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: flow01Posted on 2009-06-19 at 06:34:24ID: 24666168
declare varchar2, p_criterium_field varchar2) is
procedure mass_update(p_target_field
v_statement varchar2(4000);
begin
v_statement := 'UPDATE MSTR.V_MS_BASISDATA_2' || chr(10) ||
' SET ' || p_target_field || ' = ''Y'' || chr(10) ||
' WHERE ' || p_criterium_field || ' >= 1';
execute immediate v_statement;
end;
begin
for i1 in 50 .. 63 loop
mass_update( 'F' || i1 || 'BY','F' || i1 || 'B');
mass_update( 'F' || i1 || 'CY','F' || i1 || 'C');
end loop;
end;
/