Activating command history

By default, the command history feature is off. Activate it by using the --history command line option. --history loads the contents of the command history log file, if it exists, when isql starts.

Syntax

isql [--history [p]history_length [--history_file history_filename]]

Parameters

Examples

Example 1 Deletes myaseHistory.log after loading its contents to memory. The session’s command history is not stored:

isql -Uguest -Ppassword -Smyase --history 1024 
   --history_file myaseHistory.log

Example 2 Loads and saves the command history using the default log file:

isql -Uguest -Ppassword -Smyase --history p1024

Usage