Why required to run root.sh at the time of installation and
what exactly it will do
Answer / harikrishna ravipati
For Oracle installation on unix/linux, we will be prompted to run a script 'root.sh' from the oracle inventory directory.
this script needs to run the first time only when any oracle product is installed on the server.
It creates the additional directories and sets appropriate ownership and permissions on files for root user.
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain about achiever in sql?
Create table Employee ( Employee_Id varchar2(8) Constraint emp_id_pk primary key, FirstName varchar2(50), LastName varchar2(50), DeptID Number(5) Constraint dept_id_fk Foreign Key(DeptId) References Department(DeptId) ) Error I am getting: Constraint specification are not allowed here
How to use like conditions in oracle?
How to delete a column in an existing table?
Can a View based on another View ?
What are the limitations of check constraint?
How to create a testing table in oracle?
What is a server parameter file in oracle?
Explain an index?
what is the exact definition for pointer?
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
Given two table employee and department EMP ---------------- empid deptid(fk) Dept --------------------- deptid(pk) deptname que-Write a query to find count of employee in each department. Expected Output- deptid countofEmployee --------------------------- 10 57 20 20 30 15