How to convert the date format from dd/mm/yyyy to
mm/dd/yyyy. (for eg). 22/05/2008 to 05/22/2008.
when u use to_char(), it tells the month is invalid. how to
resolve this problem.tel with eg.
Answers were Sorted based on User's Feedback
Answer / prabhu
1* select
to_char(to_date('22/05/2008','dd/mm/yyyy'),'mm/dd/yyyy')
from dual
SQL> /
TO_CHAR(TO
----------
05/22/2008
| Is This Answer Correct ? | 21 Yes | 2 No |
after installatio of ORACLE 8i, work properly, but after restarting the system, it throw an error ORA 01034: ORACLE not availble
When do you get a .pll extension in oracle? Explain its importance
how to produce numbers from 1 to 10 using dual table
What is a package ? What are the advantages of package ?
I have a table emp. There is only one column in the table. In that , there are only three rows in that column. The value in the first row is 'A' and the value in the second row is 'B' and the third row is 'C'. Now, my question is , How will you write a select query to display the output as B C A Note: order by cannot be used coz it gives us output as CBA. But the output should be BCA.
difference between oracle8i and oracle9i
what is pragma?
Anyone have the Latest Oracle Dumbs?While u have please forard to narain1411@gmail.com
I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?
Is there a function to split a string in plsql?
What is an Index ? How it is implemented in Oracle Database ?
If a table column has is UNIQUE and has NOT NULL, is it equivalent to a PRIMARY KEY column?