Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Problem with some simple PL/SQL.
Paul schrieb:
>
>
> Rene Nyffenegger <rene.nyffenegger_at_gmx.ch> wrote:
>
>
>>Try: >>alter system set utl_file_dir='c:\temp' scope = spfile; >>Then restart the database.
To see whether you can modify a paraameter for scope MEMORY , you should query:
SELECT issys_modifiable
FROM v$parameter
WHERE NAME = 'your desired parameter'
If you issue this query for 'utl_file_dir', you would get FALSE, that means , it is not modifiable (for scope MEMORY) . You can also make the change only by writing into spfile (resp. init.ora) and restarting instance.
> I've tried googling, but can't seem to find it.
>
>
>
>>Rene
Here you can read in detail about this:
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_2012.htm#sthref3536
Best regards
Maxim Received on Mon Jul 25 2005 - 12:23:13 CDT
![]() |
![]() |