rasti.hil@hilandco.com +41 79 367-9677

Search This Blog

Swap two variables

Here is a small reminder to myself since, from time to time I spent some time thinking on it...


var a = 5,
    b = 3;
a = a + b;  // a = 5 + 3 = 8
b = a - b;  // b = 8 - 3 = 5
a = a - b;  // a = 8 - 5 = 3

console.log(a, b);
// 3 5

Install emcli interactive mode

https://host:port/em/public/emcli/kit/emcliadvancedkit.jar
  
set JAVA_HOME="C:\Oracle\MWJDEV\jdk160_24"
%JAVA_HOME%\bin\java -jar emcliadvancedkit.jar -install_dir=C:\Oracle\emcli

cd C:\Oracle\emcli
emcli setup -url="https://host:port/em" -username=sysman -password=******* -autologin

SOA, OSB Schema Names And Versions

select * from schema_version_registry;