This image shows the partial "HDFS and Oracle Database Data Analysis" note and the two newly created paragraphs at the top of the note: "Load Data from Oracle Database Table" and "Count Number of Students". In the body of the note, the note's partial name is displayed as "HDFS and Oracle Database Data Analysis". The note's toolbar shows the following partial icons: "Run all paragraphs", "Show/hide the code", "Show/hide the output", "Clear output", "Clone this note", and "Export this note". The "Load Data from Oracle Database Table" paragraph is displayed at the top of the note. It contains the following lines of code: Line 1: val jdbcDF = sqlContext.read Line 2: .format("jdbc") Line 3: .options( Line 4: Map( Line 5: "url" -> "jdbc:oracle:thin:@//blurred", Note: The "url" field value that is displayed on Line 5 is partially blurred to hide the host name and port # for security reasons. Line 6: "dbtable" -> "BDM_DEMO.USERS", Line 7: "user" -> "", Line 8: "password" -> "" Line 9: ) Line 10: ) Line 11: .load() Line 12: jdbcDF.registerTempTable("USERS") The "Count Number of Students" paragraph is displayed below the "Load Data from Oracle Database Table" paragraph. It contains the following lines of code: Line 1: %sql Line 2: select count(*) from `USERS`