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 uses of a database trigger?
State the various uses of dbcc command?
What is the cache hit ratio, what impact does it have on performance of an Oracle database and what is involved in tuning it?
What is a database table in oracle?
What is an anonymous block?
How to update values in a table in oracle?
What to do if dba lost the system password?
How to sort output in descending order in oracle?
How to run create database statement?
What are group functions in oracle?
What are the differences between primary key and unique key?
What is an oracle transaction?
Explain the difference between sap and oracle?
1) Does oracle have any table which contain all the exceptions and it's code internally?
How to open a cursor variable?