shell> ssh 172.20.2.253
Password:
Last login: Mon Nov 7 12:08:00 2005 from shell.cs.und.no
Sun Microsystems Inc. SunOS 5.10 Generic January 2005
$ sqlplus userid/password
SQL*Plus: Release 9.2.0.1.0 - Production on Thu Nov 10 11:55:15 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL> create table memento (
2 time varchar(32) not null,
3 temp number not null,
4 message varchar(128) not null);
Table created.
SQL> insert into memento
2 select to_char( sysdate, 'HH:MI:SS, DY, MM/DD/YYYY'),
3 52, 'NCAA playoff——Sioux and Bulldogs' from dual;
1 row created.
SQL> commit;
SQL> exit;
Disconnected from Oracle9i Enterprise Edition Release 9.2.0.1.0 -
64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
$
|
|