Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: alter view???
Sounds like you are trying update a table column within a view. Oracle will not let you do that. You can only chage the underlying table. Then this will filter thru to the view.
Also, you are trying to change the column type of wk_end. Cant do that in a table either. You will have to basically drop the column and add it back in.
An easy way to do this is to:
This process is easy just time consuming.
hajir_at_my-deja.com wrote:
>
> does this work?
>
> ALTER VIEW HAJIR4 MODIFY WK_END (DATE)
>
> ERROR at line 1:
> ORA-00922: missing or invalid option
>
> currently in view HAJIR4, WK_END is in VARCHAR format.
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Wed Sep 27 2000 - 16:51:54 CDT
![]() |
![]() |