cat /proc/102433/smaps | grep -i pss | awk '{Total+=$2} END {print Total/1024" MB"}'
499.514 MB
cat /proc/102433/smaps | grep -i rss | awk '{Total+=$2} END {print Total/1024" MB"}'
506.32 MB
jmap
pmap
To learn more about smaps, read here https://jameshunt.us/writings/smaps.html
Thursday, November 28, 2019
Tuesday, November 19, 2019
Saturday, November 16, 2019
rats, in OracleXE DB a create user no longer works unless....
create user PIPPO IDENTIFIED BY PIPPO
googling around I find that you must preceed the commmand with:
alter session set "_ORACLE_SCRIPT"=true;
create user PIPPO IDENTIFIED BY PIPPO;
grant create session to PIPPO;
GRANT CONNECT, RESOURCE, CREATE VIEW TO PIPPO;
GRANT ALL PRIVILEGES to PIPPO;
create table USERS (id NUMBER GENERATED BY DEFAULT AS IDENTITY, name varchar(100) );
This is simply ridiculous.
Fehlerbericht -
ORA-65096: Ungültiger allgemeiner Benutzer- oder Rollenname
65096. 00000 - "invalid common user or role name"
*Cause: An attempt was made to create a common user or role with a name
that was not valid for common users or roles. In addition to
the usual rules for user and role names, common user and role
names must start with C## or c## and consist only of ASCII
characters.
*Action: Specify a valid common user or role name.
googling around I find that you must preceed the commmand with:
alter session set "_ORACLE_SCRIPT"=true;
create user PIPPO IDENTIFIED BY PIPPO;
grant create session to PIPPO;
GRANT CONNECT, RESOURCE, CREATE VIEW TO PIPPO;
GRANT ALL PRIVILEGES to PIPPO;
create table USERS (id NUMBER GENERATED BY DEFAULT AS IDENTITY, name varchar(100) );
This is simply ridiculous.
Labels:
oracledb
Subscribe to:
Posts (Atom)