select to_char('10','10')
from dual
This gives me an error oRA-1481 INVALID NUMBER FORMAT MODEL
why? pls help
Answer Posted / avinash
To_char function accepts only 1 parameter.
So the syntax should be as follows.
select TO_CHAR(10) from dual;
| Is This Answer Correct ? | 16 Yes | 6 No |
Post New Answer View All Answers
What are the types of trigger in oracle?
Why does for update in oracle 8 cause an ora-01002 error?
What is meant by a deadlock situation?
What happens to the current transaction if the session is killed?
Explain implicit cursor.
What do you mean by merge in oracle?
What is a sub query? Describe its types?
How to use regular expression in pattern match conditions in oracle?
What do you mean by merge in oracle and how can we merge two tables?
defination of bitmap index
Is it possible to insert comments into sql statements return in the data model editor ?
How to specify default values in insert statement using oracle?
What are the roles of dba?
Explain oracle’s system global area (sga).
Explain oracle left join with an example?