ORA-00257: archiver is stuck. CONNECT INTERNAL only, until freed
The Problem Your database is in archive log mode and archiving works fine until suddenly connecting via SQLPLUS generates the following error:
The Problem Your database is in archive log mode and archiving works fine until suddenly connecting via SQLPLUS generates the following error:
Although you cannot use any positional parameter name on the left side of an assignment statement, you can still assign …
Functions in the Shell A function is a set of one or more statements that act as a complete routine. Each function must …
Understanding “$@” and “$*” Positional Parameters in Shell Script The Values of the …
Korn Shell Arrays Arrays are variables that contain more than one value. Don’t declare arrays explicitly or explicitly …
Processing Script Options With the getopts Statement Options or switches are single-letter characters preceded by a + …
Variable Types In the Bourne shell, there are two variable types: strings and constants. In the Korn shell, there are …
The “here” Document Frequently, a script might call on another script or utility that requires input. To run a script …
File Input and Output A script can receive input from a file and send output to a file so that the script can run …
Input and Output in a Script While some scripts run without any interaction with the user, many scripts require input …
Use the print statement to provide output. Use it wherever you would use the echo statement. It is more versatile than …