what is the scripts in data base?
Answer / Anshuman Verma
Database scripts are a series of SQL commands used to create, modify, or manage database structures and data. They can be used for tasks like creating tables, inserting data, altering tables, and more.
| Is This Answer Correct ? | 0 Yes | 0 No |
difference between oracle8i and oracle9i
What is a Tablespace?
Why oracle is used?
What is Database Buffers ?
Explain the use of record length option in exp command.
> 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?
What is Index and different types of Indexes?
How to see free space of each tablespace?
What is the difference between Delete, Truncate and Drop in Oracle?
how to handle exceptions in post production
I have a table that log salary-increase-process have fields: autoid, old_salary, acctno and table EMP: acctno, name, salary I want to list count increase-salary of employees, each have old_salary, new_salary. Help me with SELECT statement, please!
Define 'view' advantage ?