I need an oracle query for convert Char to Integer?. Can any
one help me how to do this?
Answers were Sorted based on User's Feedback
Answer / moorthy g
Hi Jey,
Please see the below procedures (integer to varchar or char).
SQL> CREATE TABLE DEPT1 AS SELECT *FROM DEPT
SQL> Truncate table dept1;
SQL> alter table dept1 modify(deptno varchar2(20));
SQL>insert into dept1 select *from dept;
SQL> SELECT *FROM DEPT1
Note:
1. If you want to modify in information please the load type
truncate load or not. (May it will be truncate load only)
Best Regards,
Moorthy. G
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ankit kansal
First of all Oracle supports implicit conversion between char to number if the specified text is of number type only.
*********************************************
Lets say sql>select '111'+1 as ans from dual;
ans
---
112
*********************************************
Here, 112 is the output you received it does not matter '112' as string.
But For precautions you can write your query as
***********************************************
sql>select to_number(trim('111'))+1 from dual;
***********************************************
| Is This Answer Correct ? | 0 Yes | 0 No |
which transformation uses cache?
How to create Target definition for flat files?
Explain the flow of data in Iinformatica?
following table source name gender a1 male a2 female how to change 'male' to 'female' and 'female' to 'male'
In What Situations we can use MappingParameters ,Mapping Variables AND Session Parameters in REAL TIME.
i have different sources in different databases ,that sources may be 100 tables i want to load these tables in to single target how to pearform the task
Two relational tables are connected to SQ Trans,what are the possible errors it will be thrown?
Using Expression transformation how to remove duplicate records from a relational source?
How can we use mapping variables in informatica? Where do we use them?
Can we create multiple integration service on single repository?
Hi experts, can anyone tell how much we use plsql in real time
why dimenstion tables are denormalized in nature ?