sql - Why is my ALTER SYSTEM command failing here? -


a colleague gave me code run. need set archive log location directory inside db_recovery_file_dest . using virtualbox vm , called "oracle developer days"

i'm trying run following command :

alter system set log_archive_dest_1 = '/home' scope=both; 

but it's generating error :

sql> alter system set log_archive_dest_1 = '/home' scope=both; alter system set log_archive_dest_1 = '/home' scope=both * error @ line 1: ora-32017: failure in updating spfile ora-16179: incremental changes "log_archive_dest_1" not allowed spfile   sql>  

what spfile ?

also , problem i'm using virtual machine ?

the correct syntax alter system set log_archive_dest_1 = 'location=/home' scope=both;. it's in docs: find out more.

you shouldn't setting /home. hope that's simplification you've made posting here.

"what spfile ?"

you need understand you're doing. please read documentation , learn basic concepts oracle database , being dba. find out more.


Comments

Popular posts from this blog

php - Zend Framework / Skeleton-Application / Composer install issue -

c# - Better 64-bit byte array hash -

python - PyCharm Type error Message -