Neoview Script Guide (R2.2)

SQL> set schema neo.sch;
--- SQL operation complete.
SQL> INSERT INTO COURSE1 VALUES
+> ('C11','INTRO TO CS','FOR ROOKIES',3, 100, 'CIS');
---1 row(s) inserted.
SQL> INSERT INTO COURSE1 VALUES
+> ('C55','COMPUTER ARCH.','VON NEUMANN''S MACH.',3,100,'CIS');
---1 row(s) inserted.
SQL> history;
1> show histopt
2> obey e:\scripts\nobey\insert2.sql
3> history;
4> set histopt all
5> set schema neo.sch;
6> INSERT INTO COURSE1 VALUES
('C11','INTRO TO CS','FOR ROOKIES',3, 100, 'CIS');
7> INSERT INTO COURSE1 VALUES
('C55','COMPUTER ARCH.','VON NEUMANN''S MACH.',3,100,'CIS');
SET IDLETIMEOUT Command
The SET IDLETIMEOUT command sets the idle timeout value for the current session. The idle
timeout value of a session determines when the session expires after a period of inactivity. The
default is 30 minutes.
Syntax
SET IDLETIMEOUT value
value
is an integer representing the idle timeout value in minutes. Zero represents an infinite
amount of time, meaning that the session never expires.
Considerations
In the Neoview Script interface, you must enter the command on one line. The command
does not require an SQL terminator.
If you execute this command in a script file, it affects the session in which the script file runs.
You can specify this command in PRUN script files. However, running this command from
a PRUN script file does not affect the idle timeout value for the current session.
To reset the default timeout value, enter this command:
SET IDLETIMEOUT 30
Examples
This command sets the idle timeout value to four hours:
SQL>set idletimeout 240
This command sets the idle timeout value to an infinite amount of time so that the session
never expires:
SQL>set idletimeout 0
To reset the idle timeout to the default, enter this command:
SET IDLETIMEOUT Command 109