Question : Call a PL/SQL Anonymous Block file from SQL PLUS

Here is my file contents. I want to call it from a sql plus session in Oracle. The question is syntax in the file itself.
How do you make this work? Y can pretty much see what I'm trying to do.
Code Snippet:
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:
begin
for loop_index in 167 .. 241
loop
insert into table1
            (POSITION, WORKORDERID)
     VALUES (1, loop_index)
/
insert into table1
            (POSITION, WORKORDERID)
     VALUES (2, loop_index)
/
insert into table1
            (POSITION, WORKORDERID)
     VALUES (3, loop_index)
/
insert into table1
            (POSITION, WORKORDERID)
     VALUES (4, loop_index)
/
insert into table1
            (POSITION, WORKORDERID)
     VALUES (5, loop_index)
/
end loop;
end
Open in New Window Select All

Answer : Call a PL/SQL Anonymous Block file from SQL PLUS

here we go:;
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:
begin
for loop_index in 167 .. 241
loop
insert into table1
            (POSITION, WORKORDERID)
     VALUES (1, loop_index)
;
insert into table1
            (POSITION, WORKORDERID)
     VALUES (2, loop_index)
;
insert into table1
            (POSITION, WORKORDERID)
     VALUES (3, loop_index)
;
insert into table1
            (POSITION, WORKORDERID)
     VALUES (4, loop_index)
;
insert into table1
            (POSITION, WORKORDERID)
     VALUES (5, loop_index)
;
end loop;
end;
/
Open in New Window Select All
Random Solutions  
 
programming4us programming4us