$ show system
OpenVMS V8.3  on node DEIMOS   8-MAR-2008 16:15:25.04  Uptime  0 13:09:50
Time to install a database server on this box :-). And nothing says "database" quite like Oracle Rdb (ex DEC product btw).
Grab Oracle Rdb, unzip it (unzip SYS$SYSROOT:[SYSMGR.RDBKIT]rdbv72200kit_amv.zip;1), and install it :-).
@SYS$UPDATE:VMSINSTAL RDBV72200AM SYS$SYSROOT:[SYSMGR.rdbkit]
Now we can restart the service, and create our database.
$ @SYS$MANAGER:RMONSTOP72.com
$ @SYS$STARTUP:RMONSTART72.COM
$ UCX show services
Service             Port  Proto    Process          Address            State
BIND                  53  TCP,UDP  TCPIP$BIND       0.0.0.0             Disabled
FTP                   21  TCP      TCPIP$FTP        0.0.0.0             Enabled
IMAP                 143  TCP      TCPIP$IMAP       0.0.0.0             Enabled
POP                  110  TCP      TCPIP$POP        0.0.0.0             Enabled
RDBSERVER            611  TCP      RDB72            0.0.0.0             Enabled
SSH                   22  TCP      TCPIP$SSH        0.0.0.0             Enabled
TELNET                23  TCP      not defined      0.0.0.0             Enabled
$ run SYS$SYSTEM:SQL$72.exe
SQL> SHOW VERSION
Current version of SQL is: Oracle Rdb SQL V7.2-200
SQL> DROP DATABASE filename PRODUCTS;
SQL> CREATE DATABASE filename PRODUCTS;
SQL> CREATE TABLE clients
cont> (
cont>  ClientID char(9)
cont>   CONSTRAINT CL_ID
cont>   PRIMARY KEY,
cont>  FirstName varchar(25),
cont>  LastName varchar(25)
cont> );
SQL> INSERT INTO clients VALUES ('1','Some','Guy');
1 row inserted
SQL> INSERT INTO clients VALUES
('2','Other','Bloke');
1 row inserted
SQL> SELECT * from clients;
CLIENTID    FIRSTNAME                   LASTNAME
1           Some                        Guy
2           Other                       Bloke
2 rows selected
SQL>
All we have to do now is fire up Phobos and cluster them :-).
If you install SQL Services on the database server, you can install the Rdb Client on your Windows box in order to administer Oracle Rdb on OpenVMS.
Saturday, March 08, 2008
Kicking it up a gear with Oracle Rdb Server on OpenVMS
Posted by
cmihai
at
4:09 PM
 
Labels: Databases, Enterprise, OpenVMS, Oracle
Subscribe to:
Post Comments (Atom)


0 comments:
Post a Comment