The Response on Process Task isn't getting deleted

The Response on Process Task isn't getting deleted as the response is used by one or more tasks

 
To delete the response we need to find the process tasks triggered with same response 
 
select MIL_KEY from MIL where MIL_NAME='';
find the response which need to delete
select * from RSC where MIL_KEY ='1084'; 
find the process tasks triggered uses this response code
select * from OSI where  RSC_KEY='' and MIL_KEY =''; 
delete the process tasks which uses this response code.
delete from OSI  where  RSC_KEY='' and MIL_KEY ='';
Now login to design console
and delete the response you wanted to delete
 

Oracle Analytics Publisher: 12C AdminServer.out is generating but logs are not writing logs to this file

AdminServer.out is of size 0 and nothing is writing to this file rather AdminServer.out00001, 000002 etc files getting created and those are getting written with server logs.

Root cause:

What was found in your setUserOverridesImpl.sh file is that you are starting the JVM with the parameter : weblogic.RotatingFileRedirector
that is causing the AdminServer.out to be empty.


This is the extract of the setUserOverridesImpl.sh file below:

#Add rotation of out files for weblogic servers
${JAVA_HOME}/bin/java -cp ${MW_HOME}/wlserver/server/lib/weblogic.jar weblogic.RotatingFileRedirector -configOverride baseLogFileName=${DOMAIN_HOME}/servers/${SERVER_NAME}/logs/${SERVER_NAME}.out -config ${MW_HOME}/bi/modules/oracle.bi.sysman/env/stdout_config.properties &


this bug 30011801 is an Oracle Business Intelligence Enterprise Edition / Analytics System Management bug, not a WebLogic Server defect.
This bug 30011801 is an Oracle Business Intelligence Enterprise Edition / Analytics System Management bug.

Solution:


Added the below mentioned parameters in stdout_config.properties

numberOfFilesLimited=false
rotationSize=5000
rotatedFileCount=10
baseLogFileName=AdminServer.out

Shutdown Adminserver

Clear all AdminServer.out files

and start the AdminServer

Basic Perfomance Tuning For stuck threads and response times

Documentation for performance tuning: https://docs.oracle.com/en/middleware/fusion-middleware/12.2.1.4/asper/redundant-cross-references-remo...