Friday, June 29, 2012

CELL-01519 during execution onecommand

During the process of installing new Exadata we have got the message in the Storage Cell:
"
CELL-01519: Cannot talk to the Management Server (MS). Error: ; nested exception is:
HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: localhost: localhost
"

This message appears by itself.
We only ran onecommand on the DB node, nothin more.
We tried "cellcli list cell" in command line - and got this message again.


The reason is simple: line "127.0.0.1 localhost.localdomain localhost" was absent in /etc/hosts.
We think that onecommand did it.
After inserting "127.0.0.1 localhost.localdomain localhost" in /etc/hosts  the cellcli was working well.

Exadata Simulator

Как разрабатывать приложение не имея Экзадаты ?
Как узнать, получит ли ваше приложение пользу от переноса на Экзадату?
 
Exadata Simulator - вот кто делает это.
Exadata Simulator - это новый функционал, появившийся в 11.2 в рамках пакета SQL Performance Analyzer. Он может предсказать в каких SQL и в каких шагах плана выполнения может быть использован Smart Scan и насколько сократится DBTime в целом для всей БД после перехода на Экзадату.
 

Доступ к Exadata Simulator возможен в текстовом режиме из SQLPLUS:

DBMS_SQLPA.SET_ANALYSIS_TASK_PARAMETER 
(
 Parameter => ‘CELL_SIMULATION_ENABLED’ -- Set it to 'TRUE' to simulate Exadata Cell effect on SQL tuning set
)


Но гораздо удобнее пользоваться через DB Control: 
Advisory Central -> Exadata Simulation


Does DEALLOCATE UNUSED or SHRINK SPACE will free space occupied by LOB segment?

Lets check how it works. My env is DB 19.20@Linux-x64 1) I created the table with 4 LOB columns of 4 different LOB types: BASICFILE BLOB, BA...