As stated on my first post on this blog, I’m a MySQL DBA
trying to draw a map of this new (to me) world called Oracle. The
other day I was trying different things with Oracle, like (but
not limited to) issuing kill -9 to random Oracle
processes to see what would happen (on my own box of course!).
The purpose? To study STARTUP statements and recovery techniques,
and to get to know a little better the Oracle SQL dialect.
I was a little surprised by the results. They’re probably no news for most of you guys, but it is new to me, and I’d like to share my findings with other MySQL guys around the planet.
I created a simple test table:
SQL> CREATE TABLE names ( name_id NUMBER NOT NULL PRIMARY KEY, name VARCHAR2(6) NOT NULL ); 2 3 4 Table created.
So far, so good, until I saw a …
[Read more]