Hi,
I am creating SSRS reports connecting to Oracle View. In select statement below is the only computation I have,
Oracle Query -
Select ...
DB Name."View Name"."Table 1|| ' ' || DB Name."View Name"."Table 2" alias name,
...FROM Oracle table name
WHERE .... ORDER BY ....
SQL Query in DataSet (SSRS) I changed the concatenation,
Select ...
DB Name."View Name"."Table 1 + DB Name."View Name"."Table 2" AS alias name, (Table 1 + Table 2 AS alias name)
...FROM Oracle table name
WHERE .... ORDER BY ....
I am getting the ORA-01722: invalid number error.
When I checked the Oracle View --> Table 1 data type is Varchar2(49) and Table 2 is Varchar2(40).
I tried using Convert and it dint work. I would appreciate if anyone could help.