explain the options of myisamchk to improve the performance of a table. : Sql dba
No Answer is Posted For this Question
Be the First to Post Answer
what is subquery? : Sql dba
How to select unique records from a table?
what is the difference between a web-garden and a web-farm? : Sql dba
Does truncate free space?
Explain the the delete statements in sql?
What is bitemporal narrowing?
How do you get column names only for a table (sql server)?
Why do we create stored procedures & functions in pl/sql and how are they different?
what is a field in a database ? : Sql dba
What is the difference between delete and truncate commands?
What is a memo field?
Dear All, Question for this Week Find out possible error(s) (either at compile time or at runtime) in the following PL/SQL block. State the reason(s) and correct the errors. Declare Cursor C1 is select ename, sal, comm from emp; Begin For i in C1 Loop If i.comm between 299 and 999 then Dbms_output.put_line(i.Ename || ‘ ** Good Commission’); Elsif i.comm > 999 then Dbms_output.put_line(i.Empno || ‘ ** Very Good Commission’); close C1; Else Dbms_output.put_line(i.Ename || ‘ ** ’ ||nvl(i.comm,‘O’)); End if; End Loop; End;