Hello,

Currently I have Oracle database table with description as shown below;

Table INSIGHT_ID_FED_IDENTIFIERS
-------------------- ---- -------------
CURRENT_INSTANCE_ID       VARCHAR2(100)
PREVIOUS_INSTANCE_ID      VARCHAR2(100)


Sample values in the table basically output of select * from
INSIGHT_ID_FED_IDENTIFIERS. For simplicity I have put only one row.


CURRENT_INSTANCE_ID           PREVIOUS_INSTANCE_ID
-------------------                               -------------------
curInstanceId1                      prevInstanceId1


I have the spark schema associated with it.


Now I need to create a Spark row(org.apache.spark.sql.Row) out of it.

Can someone help me understanding on how this can be achieved?

regards,
Robin Kuttaiah

Reply via email to