0
我無法在我的數據庫中添加,因爲這些參數的200個多名數據文件:無法改變的Oracle參數
select records_total from v$controlfile_record_section where type = 'DATAFILE';
select value from v$parameter where name = 'db_files';
這兩個給我的200
輸出。我需要增加這400所以我曾嘗試:
alter system set records_total = 400 where name = 'db_files';
alter system set value= 400 where type = 'DATAFILE';
但我正在逐漸 小號
QL Error: ORA-02065: illegal option for ALTER SYSTEM
02065. 00000 - "illegal option for ALTER SYSTEM"
*Cause: The option specified for ALTER SYSTEM is not supported
*Action: refer to the user manual for option supported
我是否能夠改變這些參數,以及如何?
閱讀文檔:http://docs.oracle.com/cd/E11882_01/server.112/e41084/statements_2014.htm#SQLRF00902 ALTER SYSTEM命令中沒有「WHERE」選項..你的意思是「SCOPE 「?也許......但認真:如果你不是DBA,你應該和你的DBA交談......這是DBA的東西......如果你是DBA ......你需要更多的閱讀文檔並做好功課; ) 大聲笑 – Ditto