I was asked by my friend few days back that "What will happen to Java, in Oracle's hands ?"
My answer was.. INSERT INTO "Oracle" SELECT * FROM "Sun"
'...Open source will continue at Oracle - along with Java. It could even profit. Just don't expect it to help anybody else.'
It will help. Oracle has more money than SUN.
I don't think it will become more proprietary. IBM, Redhat, Apache etc. will not allow that.
Java is OK. JVM is not OK. But at least we have CacaoVM and some opensource implementations, once Oracle will bastardize it. On the other hand, I don't think they want to screw it up on a main trunk. They did this to RedHat clone, called Oracle Linux, that is completely rubbish distribution. I would more worry about OpenSolaris — there might be started some unpleasant "fun" from Oracle... :-(
Java became popular because of open policies of Sun. Any attempt to commercialize or make Java more proprietary will turn out to be a bad move for technology.
I think Oracle will try to make more money from Java licenses and try to control Java and use it for competitive advantage, which will make other Java vendors insecure and will eventually move away from Java. In a free market Oracle is free to do this, but it will not be good for the technology.
Use it if you like it, don't try to own it
I just hope there won't appear String2 that is null and an empty string at the same time, as they did to VARCHAR... :-)
Cheers,
Ujjwal Soni
-- In Dreams And In Love There Are No Impossibilities --
Showing posts with label oracle. Show all posts
Showing posts with label oracle. Show all posts
Monday, September 5, 2011
Thursday, November 18, 2010
Blocking developers from using TOAD and other tools on production databases
Today, I’ve seen a nice example at www.psoug.org on how to prevent users from using additional tools to connect to production database. This is the AFTER LOGON trigger create ON DATABASE as follows:
CONNECT / AS SYSDBA; CREATE OR REPLACE TRIGGER block_tools_from_prod AFTER LOGON ON DATABASE DECLARE v_prog sys.v_$session.program%TYPE; BEGIN SELECT program INTO v_prog FROM sys.v_$session WHERE audsid = USERENV('SESSIONID') AND audsid != 0 -- Don't Check SYS Connections AND ROWNUM = 1; -- Parallel processes will have the same AUDSID's IF UPPER(v_prog) LIKE '%TOAD%' OR UPPER(v_prog) LIKE '%T.O.A.D%' OR -- Toad UPPER(v_prog) LIKE '%SQLNAV%' OR -- SQL Navigator UPPER(v_prog) LIKE '%PLSQLDEV%' OR -- PLSQL Developer UPPER(v_prog) LIKE '%BUSOBJ%' OR -- Business Objects UPPER(v_prog) LIKE '%EXCEL%' -- MS-Excel plug-in THEN RAISE_APPLICATION_ERROR(-20000, 'Development tools are not allowed here.'); END IF; END; / SHOW ERRORS
http://www.psoug.org/snippet/Block_TOAD_and_other_tools_516.htm
Cheers!!!
Ujjwal B Soni
Subscribe to:
Posts (Atom)