Hi there. Have you seen this link? https://medium.com/@mrpowers/manually-creating-spark-dataframes-b14dae906393
It shows you multiple ways to manually create a dataframe. Hope it helps. Regards, Shahab On Wed, Sep 26, 2018 at 8:02 AM Kuttaiah Robin <kutta...@gmail.com> wrote: > 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 >