Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
sqlplus "/as sysdba"
or
sqlplus '/as sysdba'
sql> show parameter sessions
sql> show parameter processes
sql> show parameter transactions
select count(*) from v$process;
select count(*) from v$session;
select count(*) from v$transaction;
processes=x
sessions=x*1.1+5
transactions=sessions*1.1
why I'm really confused what can be the reason if the Talend uses only one JDBC connection for several processes
#!/bin/bash
# Script has symlink from directories /etc/cron.*, function is determined by their names.
# For example symlink with name AUTO_P01_Synchronizace_Ciselniku_NAV.sh calls script
# /ip/talend/jobs/AUTO_P01_Synchronizace_Ciselniku_NAV/AUTO_P01_Synchronizace_Ciselniku_NAV/AUTO_P01_Synchronizace_Ciselniku_NAV_run.sh
# Skript first check if it's executed on active node of the cluster
HOSTNAME=$(/bin/hostname)
/usr/sbin/crm_resource -W -r Shared-IP-Address 2>/dev/null | /bin/grep -sq $HOSTNAME || exit
script=$(basename ${0%.sh}) # name of script without '.sh'
exec >>/ip/log/talend/${script}.log 2>&1 # write STDOUT and STDERR into log
date "+=== %Y/%m/%d %H:%M:%S %z Node $HOSTNAME ==="
su -s /bin/bash iprun -c "sh /ip/talend/jobs/${script}/${script}/${script}_run.sh"