catcon.pl: Base for log file names must be supplied
I run oracle Databse 19.13 in Windows and get this error when i want install DBMS_CLOUD Package use catcon.pl
see "DBMS_CLOUD : Installation on 19c and 21c On-Prem Databases":
C:\Oracle\product\19.0.0\dbhome_1\perl\bin\perl
C:\Oracle\product\19.0.0\dbhome_1\rdbms\admin\catcon.pl -u sys/****** --force_pdb_mode 'READ WRITE' -b dbms_cloud_install -d "C:\app" -l "C:\app" dbms_cloud_install.sql
Followed by the error
Base for log file names must be supplied at C:\Oracle\product\19.0.0\dbhome_1\rdbms\admin\catcon.pl line 482.
I'm not sure how to fix the problem
Solution 1:
Judging by the argument information provided here, you need to provide the mandatory -b
argument
-b
(Mandatory) The base name for log file names
You can see that argument used in the link you provided in your question
$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl \
...
-b dbms_cloud_install \
...