what is the need of the cursor attribute notfound..(because
using found attribute we can complete the task......found +
negation operator = not found )
Answer Posted / babu
The notfound attribute as far as i know is being used to
set the exit condition for the cursor.Yes,found with
negation like NOT(c1%found) can be used instead of notfound.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Are stored procedures faster than dynamic sql?
What is sql and db2?
what is the use of double ampersand (&&) in sql queries?
how to get a list of all tables in a database? : Sql dba
what is the difference between union and union all? : Sql dba
What are different types of sql?
What is pivot table in sql?
Is there any restriction on the use of union in embedded sql?
What are conditional predicates?
What does the acronym acid stand for in database management?
What is the difference between inner join and natural join?
How can you get sql*loader to commit only at the end of the load file? : aql loader
Explain the types of joins in sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
What does dml mean?