Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> DELETE ident_arr PL/SQL table
I'm getting an error when I try to delete an entry from a PL/SQL table:
"PLS-00363: expression 'FT_CORRECT' cannot be used as an assignment target"
The relevant code is as follows:
PROCEDURE my_procedure( ft_correct IN owa_util.ident_arr )
IS
BEGIN
.
.
.
ft_correct.DELETE( ft_correct.LAST );
.
.
![]() |
![]() |