Hello, In promo video tutorial for Zeppelin ( http://www.youtube.com/watch?v=_PQbVH_aO5E&feature=youtu.be) I see demonstration of how to declare table 'bank' in one note and query this table in another note. I tried doing this and it did not work.
I have one notebook with two notes: Note #1: // basically all data definition for second note eventsDF.registerTempTable("events") Note #2: // querying defined table %sql select * from events limit 10 Note #1 gets executed okay, Note #2 fails org.apache.spark.sql.AnalysisException: no such table events; How should I proceed to make my table be available for Note #2? Thanks! -- Best regards, Eugene.