Hello all,
This is my assignment on shell scripting, can anyone help
me regarding this ?
Create a shell script which connects to the database
In second shell script include the first script for the DB
connection
Create a table (PRADEEP_DATA) with 2 columns (name, value)
In Third shell script include the first script for the DB
connection
And insert/delete the values from the Table, by accepting
input from the user
This functionality should be a menu driven Program:
1) Insert to the database
a. Name
b. value
2)Delete from the database
a.Name
b.value
Exception handling needs to be taken care.
Print a given number, in reverse order using a shell script such that the input is provided using command line argument only.
How do I run a shell script in powershell?
What is shell and terminal?
I want to create a directory such that anyone in the group can create a file and access any person's file in it but none should be able to delete a file other than the one created by himself.
wats the deinitions for shell utility and filter?
What is the syntax of "expr" command?
How to find duplicate record in file using shell script?
0 Answers IBM, Saama Tech, Wipro,
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
What is a shell in operating system?
Why should we use shell scripts?
how can you execute the shell scripts?
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?