I just tried sqlite. It is ultra-light and support SQL commands. Just try this $ sqlite3 test.db SQLite version 3.26.0 2018-12-01 12:34:55 Enter ".help" for usage hints. sqlite> create table t(x number); sqlite> insert into t values(1); sqlite> select * from t; 1 sqlite> $ du -h test.db 8.0K test.db I just created a database, […]| Laurent Schneider
Long long time ago, back in SunOS ages and shell Bourne, I saw this code| Laurent Schneider
Let’s try with the identified by values (as I wrote long time ago there alter-user-identified-by-values-in-11g )| Laurent Schneider
select| Laurent Schneider
Using the latest instant client, the Easy Connect Plus improvement let you parametrise your jdbc url more intensively| Laurent Schneider
( | Laurent Schneider
if you want to grep anything except foo, use grep -v or negative lookahead echo -e 'foo\nbar\nboz'|grep -P '^(?!.*foo).*$' bar boz it is just so beautiful ! e.g. get IP address except localhost in /etc/hosts grep -Po '^(?!127.0.0.1)[0-9.]+' /etc/hosts 192.168.1.1 192.168.1.2 if you have no grep -P, use perl| Laurent Schneider
this blog is no longer maintained. go there : OEM patch | LaurentSchneider.Com (wordpress.com)| Laurent Schneider
new post on https://laurentschneider.wordpress.com/2023/07/31/wlst/ this blog is no longer maintained| Laurent Schneider
Back in early 2005 I started this blog on Blogspot. Not being unserious about blogging, I bought this domain later in 2006 with paid hosting. I can recommend my GoDaddy provider for their support and attractive rates, but nowadays, I am no longer an active blogger. I’ll keep posting things occasionally on laurentschneider.wordpress.com. Saad posted […]| Laurent Schneider