what is shell?

Answer Posted / gyana

shell is an executable program which handles all the
requests given to the kernel.it simply a program execution
file.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an oracle transaction?

588


I have some query regarding Report generation from Oracle Apps "PO module". I have to generate a report where table columns are as below: Vendor_name Invoice No PO Number Item_Quantity Value of Goods Date of Shipping Name_of_the_transport Date_of_receipt_issued. Now my questions is :from which table/column I can get the information of "Name_of_the_transport" column. Thanks in advance.

2890


How to turn on or off recycle bin for the session?

610


How to delete multiple rows from a table in oracle?

565


What is the difference between substr & instr functions?

597






> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1572


What are advantages of dateset in datastage?

1749


What is where clause in oracle?

534


What language does oracle use?

601


What are the components of logical database structure in oracle database?

584


What is a schema in oracle?

548


What is the difference between sharding and replication?

479


What do you mean by merge in oracle?

594


What are the database administrators utilities available?

580


How do I know if oracle is installed on windows?

488