This image shows the partial "Load Data from Oracle Database Table" paragraph in the "HDFS and Oracle Database Data Analysis" note. It contains the following lines of code: Line 1: val jdbcDF = sqlContext.read .format("jdbc").options( Line 2: Map( Line 3: "url" -> "jdbc:oracle:thin:@//blurred", Line 4: "dbtable" -> "BDM_DEMO.USERS", Line 5: "user" -> "BDM_DEMO", Line 6: "password" -> "blurred" , Line 7: "Driver" -> "oracle.jdbc.OracleDriver" Line 8: ) Line 9: ).load() Line 10: jdbcDF.registerTempTable("USERS") Notes: - The "url" field value that is displayed on Line 3 is partially blurred to hide the host name and port # for security reasons. - The "password" value that is displayed on line 6 is blurred for security reasons.