This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KA7_ApacheZeppelinSparkSQL.json
1 lines (1 loc) · 72.8 KB
/
KA7_ApacheZeppelinSparkSQL.json
1
{"paragraphs":[{"text":"// Gerekli Spark SQL kutuphanelerinin import edilmesi\n\nimport org.apache.spark.sql.types.{StructType, StructField, StringType, IntegerType};\nimport org.apache.spark.sql.{DataFrame, Dataset, Encoders, SparkSession}","user":"anonymous","dateUpdated":"2019-06-04T21:52:50+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"import org.apache.spark.sql.types.{StructType, StructField, StringType, IntegerType}\nimport org.apache.spark.sql.{DataFrame, Dataset, Encoders, SparkSession}\n"}]},"apps":[],"jobName":"paragraph_1559674084798_-713971332","id":"20190604-214804_1476927733","dateCreated":"2019-06-04T21:48:04+0300","dateStarted":"2019-06-04T21:52:50+0300","dateFinished":"2019-06-04T21:52:50+0300","status":"FINISHED","progressUpdateIntervalMs":500,"focus":true,"$$hashKey":"object:17158"},{"text":"// Kesif Aktivitesi 2'de kullandigim acquisitions dataseti import edilmeden once tablo icin class olusturulmasi\n\ncase class c_acquisitions(AcquisitionID: String, AcquisitionMonth: String, AcquisitionMonthDate: Integer, AcquisitionYear: Integer, Company: String, Business: String, \nCountry: String, Value: Integer, Derived: String, ParentCompany: String)","user":"anonymous","dateUpdated":"2019-06-04T21:52:55+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"defined class c_acquisitions\n"}]},"apps":[],"jobName":"paragraph_1559674295503_1010163362","id":"20190604-215135_55350650","dateCreated":"2019-06-04T21:51:35+0300","dateStarted":"2019-06-04T21:52:55+0300","dateFinished":"2019-06-04T21:52:56+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17159"},{"text":"val schema: StructType = Encoders.product[c_acquisitions].schema","user":"anonymous","dateUpdated":"2019-06-04T21:53:09+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"schema: org.apache.spark.sql.types.StructType = StructType(StructField(AcquisitionID,StringType,true), StructField(AcquisitionMonth,StringType,true), StructField(AcquisitionMonthDate,IntegerType,true), StructField(AcquisitionYear,IntegerType,true), StructField(Company,StringType,true), StructField(Business,StringType,true), StructField(Country,StringType,true), StructField(Value,IntegerType,true), StructField(Derived,StringType,true), StructField(ParentCompany,StringType,true))\n"}]},"apps":[],"jobName":"paragraph_1559674375237_-1959006349","id":"20190604-215255_1230236838","dateCreated":"2019-06-04T21:52:55+0300","dateStarted":"2019-06-04T21:53:09+0300","dateFinished":"2019-06-04T21:53:12+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17160"},{"text":"// acquisitions datasetinin DataFrame olarak import edilmesi ve tablo olarak kaydedilmesi \n\nval df = sqlContext.read.schema(schema).csv(\"/home/oguz/Downloads/bigdata/datasets/acquisitions.csv\")\ndf.registerTempTable(\"acquisitions\")","user":"anonymous","dateUpdated":"2019-06-04T21:53:55+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"warning: there was one deprecation warning; re-run with -deprecation for details\ndf: org.apache.spark.sql.DataFrame = [AcquisitionID: string, AcquisitionMonth: string ... 8 more fields]\n"}]},"apps":[],"jobName":"paragraph_1559674389378_1129194617","id":"20190604-215309_82323192","dateCreated":"2019-06-04T21:53:09+0300","dateStarted":"2019-06-04T21:53:55+0300","dateFinished":"2019-06-04T21:53:59+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17161"},{"text":"// Tablo sutunlari\n\ndf.columns","user":"anonymous","dateUpdated":"2019-06-04T21:54:21+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"res2: Array[String] = Array(AcquisitionID, AcquisitionMonth, AcquisitionMonthDate, AcquisitionYear, Company, Business, Country, Value, Derived, ParentCompany)\n"}]},"apps":[],"jobName":"paragraph_1559674435665_-1161568636","id":"20190604-215355_1323323009","dateCreated":"2019-06-04T21:53:55+0300","dateStarted":"2019-06-04T21:54:07+0300","dateFinished":"2019-06-04T21:54:08+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17162"},{"text":"df.printSchema","user":"anonymous","dateUpdated":"2019-06-04T21:54:28+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"root\n |-- AcquisitionID: string (nullable = true)\n |-- AcquisitionMonth: string (nullable = true)\n |-- AcquisitionMonthDate: integer (nullable = true)\n |-- AcquisitionYear: integer (nullable = true)\n |-- Company: string (nullable = true)\n |-- Business: string (nullable = true)\n |-- Country: string (nullable = true)\n |-- Value: integer (nullable = true)\n |-- Derived: string (nullable = true)\n |-- ParentCompany: string (nullable = true)\n\n"}]},"apps":[],"jobName":"paragraph_1559674447874_-1161368634","id":"20190604-215407_42656058","dateCreated":"2019-06-04T21:54:07+0300","dateStarted":"2019-06-04T21:54:28+0300","dateFinished":"2019-06-04T21:54:29+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17163"},{"text":"%sql --- Problem 2: Veritabanında ilk 12 satırı gösteriniz. ---\nselect * from acquisitions limit 12","user":"anonymous","dateUpdated":"2019-06-04T21:56:53+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionID":"string","AcquisitionMonth":"string","AcquisitionMonthDate":"string","AcquisitionYear":"string","Company":"string","Business":"string","Country":"string","Value":"string","Derived":"string","ParentCompany":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionID\tAcquisitionMonth\tAcquisitionMonthDate\tAcquisitionYear\tCompany\tBusiness\tCountry\tValue\tDerived\tParentCompany\nnull\tnull\tnull\tnull\tnull\tnull\tnull\tnull\tnull\tnull\nACQ99\tNovember\t11\t2015\tbebop\tCloud software\tUSA\t380000000\tGoogle Cloud Platform\tGoogle\nACQ98\tNovember\t11\t2015\tFly Labs\tVideo editing\tUSA\tnull\tGoogle Photos\tGoogle\nACQ97\tDecember\t8\t2015\tClearleap\tCloud-based video management\tUSA\tnull\tnull\tIBM\nACQ96\tDecember\t18\t2015\tMetanautix\tBig Data Analytics\tUSA\tnull\tnull\tMicrosoft\nACQ95\tDecember\t21\t2015\tTalko, Inc.\tMobile communications\tUSA\tnull\tnull\tMicrosoft\nACQ94\tJanuary\t7\t2016\tEmotient\tEmotion recognition\tUSA\tnull\tFace ID, Animoji[100]\tApple\nACQ93\tJanuary\t15\t2016\tIris Analytics\tReal time transaction fraud detection\tGER\tnull\tnull\tIBM\nACQ92\tJanuary\t19\t2016\tTeacher Gaming LLC\tEducation software\tFIN\tnull\tnull\tMicrosoft\nACQ915\tJuly\t30\t1987\tForethought, Inc.\tComputer software\tUSA\t14000000\tnull\tMicrosoft\nACQ914\tMarch\t2\t1988\tNetwork Innovations\tSoftware\tUSA\tnull\tnull\tApple\nACQ913\tJune\t7\t1988\tOrion Network Systems\tSatellite communication systems\tUSA\tnull\tnull\tApple\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=0"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674468596_1505222686","id":"20190604-215428_317578053","dateCreated":"2019-06-04T21:54:28+0300","dateStarted":"2019-06-04T21:55:06+0300","dateFinished":"2019-06-04T21:55:10+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17164"},{"text":"%sql --- Problem 3: Google şirketinin yaptığı satın almaları gösteriniz. ---\nselect * from acquisitions where ParentCompany=\"Google\"","user":"anonymous","dateUpdated":"2019-06-04T21:56:33+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionID":"string","AcquisitionMonth":"string","AcquisitionMonthDate":"string","AcquisitionYear":"string","Company":"string","Business":"string","Country":"string","Value":"string","Derived":"string","ParentCompany":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionID\tAcquisitionMonth\tAcquisitionMonthDate\tAcquisitionYear\tCompany\tBusiness\tCountry\tValue\tDerived\tParentCompany\nACQ99\tNovember\t11\t2015\tbebop\tCloud software\tUSA\t380000000\tGoogle Cloud Platform\tGoogle\nACQ98\tNovember\t11\t2015\tFly Labs\tVideo editing\tUSA\tnull\tGoogle Photos\tGoogle\nACQ831\tFebruary\t12\t2001\tDeja\tUsenet\tUSA\tnull\tGoogle Groups\tGoogle\nACQ82\tFebruary\t12\t2016\tBandPage\tPlatform for musicians\tUSA\tnull\tYouTube\tGoogle\nACQ818\tSeptember\t20\t2001\tOutride\tWeb search engine\tUSA\tnull\tGoogle Personalized Search\tGoogle\nACQ81\tFebruary\t18\t2016\tPie\tEnterprise communications\tSGP\tnull\tSpaces (app)\tGoogle\nACQ793\tFebruary\tnull\t2003\tPyra Labs\tWeblog software\tUSA\tnull\tBlogger\tGoogle\nACQ789\tApril\tnull\t2003\tApplied Semantics\tOnline advertising\tUSA\t102000000\tAdSense, AdWords\tGoogle\nACQ788\tApril\tnull\t2003\tNeotonic Software\tCustomer relationship management\tUSA\tnull\tGoogle Groups, Gmail\tGoogle\nACQ779\tSeptember\t30\t2003\tKaltix\tWeb search engine\tUSA\tnull\tiGoogle\tGoogle\nACQ778\tOctober\tnull\t2003\tGenius Labs\tBlogging\tUSA\tnull\tBlogger\tGoogle\nACQ777\tOctober\tnull\t2003\tSprinks\tOnline advertising\tUSA\tnull\tAdSense, AdWords\tGoogle\nACQ766\tMay\t10\t2004\tIgnite Logic\tHTML editor\tUSA\tnull\tGoogle Sites\tGoogle\nACQ763\tJuly\t13\t2004\tPicasa\tImage organizer\tUSA\tnull\tPicasa, Blogger\tGoogle\nACQ759\tSeptember\tnull\t2004\tZipDash\tTraffic analysis\tUSA\tnull\tGoogle Maps\tGoogle\nACQ757\tOctober\tnull\t2004\tWhere2\tMap analysis\tAUS\tnull\tGoogle Maps\tGoogle\nACQ753\tOctober\t27\t2004\tKeyhole, Inc\tMap analysis\tUSA\tnull\tGoogle Maps, Google Earth\tGoogle\nACQ739\tMarch\t28\t2005\tUrchin Software Corporation\tWeb analytics\tUSA\tnull\tGoogle Analytics\tGoogle\nACQ732\tMay\t12\t2005\tDodgeball\tSocial networking service\tUSA\tnull\tGoogle Latitude\tGoogle\nACQ73\tMay\t2\t2016\tSynergyse\tInteractive tutorials\tCAN\tnull\tGoogle Docs\tGoogle\nACQ726\tJuly\tnull\t2005\tReqwireless\tMobile browser\tCAN\tnull\tGoogle Mobile\tGoogle\nACQ725\tJuly\t19\t2005\tAkwan Information Technologies\tSearch engines\tBRA\tnull\tInternet backbone\tGoogle\nACQ720\tAugust\t17\t2005\tAndroid Inc.\tMobile operating system\tUSA\t50000000\tAndroid\tGoogle\nACQ712\tNovember\tnull\t2005\tSkia Inc.\tGraphics library\tUSA\tnull\tSkia\tGoogle\nACQ704\tDecember\t27\t2005\tPhatbits\tWidget engine\tUSA\tnull\tGoogle Desktop\tGoogle\nACQ703\tDecember\t31\t2005\tbruNET GmbH\tMobile software\tGER\tnull\tGoogle Mobile\tGoogle\nACQ702\tDecember\t31\t2005\tallPAY GmbH\tMobile software\tGER\tnull\tGoogle Mobile\tGoogle\nACQ700\tJanuary\t17\t2006\tdMarc Broadcasting\tAdvertising\tUSA\t102000000\tAdSense\tGoogle\nACQ692\tFebruary\t14\t2006\tMeasure Map\tWeblog software\tUSA\tnull\tGoogle Analytics\tGoogle\nACQ688\tMarch\t9\t2006\tUpstartle\tWord processor\tUSA\tnull\tGoogle Docs\tGoogle\nACQ687\tMarch\t14\t2006\t@Last Software\t3D modeling software\tUSA\tnull\tGoogle Sketchup\tGoogle\nACQ684\tApril\t9\t2006\tOrion\tWeb search engine\tAUS\tnull\tGoogle Search\tGoogle\nACQ68\tJune\t22\t2016\tWebpass\tInternet service provider\tUSA\tnull\tGoogle Fiber\tGoogle\nACQ676\tJune\t1\t2006\t2Web Technologies\tOnline spreadsheets\tUSA\tnull\tGoogle Spreadsheet\tGoogle\nACQ67\tJuly\t6\t2016\tMoodstocks\tImage recognition\tFRA\tnull\tGoogle Photos\tGoogle\nACQ668\tAugust\t15\t2006\tNeven Vision Germany GmbH\tComputer vision\tGER\tnull\tPicasa, Google Goggles\tGoogle\nACQ661\tOctober\t9\t2006\tYouTube\tVideo sharing\tUSA\t1650000000\tYouTube\tGoogle\nACQ66\tJuly\t8\t2016\tAnvato\tCloud-based video services\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ654\tOctober\t31\t2006\tJotSpot\tWeb application\tUSA\tnull\tGoogle Sites\tGoogle\nACQ65\tJuly\t12\t2016\tKifi\tLink management\tUSA\tnull\tSpaces (app)\tGoogle\nACQ649\tDecember\t18\t2006\tEndoxon\tMapping\tCHE\t28000000\tGoogle Maps\tGoogle\nACQ645\tFebruary\t16\t2007\tAdscape\tIn-game advertising\tUSA\t23000000\tAdSense\tGoogle\nACQ642\tMarch\t16\t2007\tTrendalyzer\tStatistical software\tSWE\tnull\tGoogle Analytics\tGoogle\nACQ64\tJuly\t27\t2016\tLaunchKit\tMobile tool maker\tUSA\tnull\tAndroid\tGoogle\nACQ638\tApril\t17\t2007\tTonic Systems\tPresentation program\tUSA\tnull\tGoogle Docs\tGoogle\nACQ637\tApril\t19\t2007\tMarratech\tVideoconferencing\tSWE\t15000000\tGoogle Talk, Google Hangouts\tGoogle\nACQ631\tMay\t11\t2007\tGreenBorder\tComputer security\tUSA\tnull\tGoogle Chrome\tGoogle\nACQ630\tMay\t28\t2007\tCrusix\tSocial networking service\tUSA\tnull\tYouTube\tGoogle\nACQ629\tJune\t1\t2007\tPanoramio\tPhoto sharing\tESP\tnull\tPanoramio\tGoogle\nACQ628\tJune\t3\t2007\tFeedBurner\tWeb feed\tUSA\t100000000\tFeedBurner\tGoogle\nACQ626\tJune\t5\t2007\tPeakStream\tParallel processing\tUSA\tnull\tAndroid\tGoogle\nACQ624\tJune\t19\t2007\tZenter\tPresentation program\tUSA\tnull\tGoogle Docs\tGoogle\nACQ621\tJuly\t2\t2007\tGrandCentral\tVoice over IP\tUSA\t45000000\tGoogle Voice\tGoogle\nACQ620\tJuly\t9\t2007\tPostini\tCommunications security\tUSA\t625000000\tGmail\tGoogle\nACQ618\tJuly\t20\t2007\tImageAmerica\tAerial photography\tUSA\tnull\tGoogle Maps\tGoogle\nACQ61\tAugust\t8\t2016\tOrbitera\tCloud software\tUSA\t100000000\tGoogle Cloud Platform\tGoogle\nACQ607\tSeptember\t27\t2007\tZingku\tSocial networking service\tUSA\tnull\tGoogle Mobile\tGoogle\nACQ604\tOctober\t9\t2007\tJaiku\tMicroblogging\tFIN\tnull\tGoogle Mobile\tGoogle\nACQ58\tSeptember\t8\t2016\tApigee\tAPI management and predictive analytics\tUSA\t625000000\tGoogle Cloud Platform\tGoogle\nACQ57\tSeptember\t15\t2016\tUrban Engines\tLocation-based analytics\tUSA\tnull\tGoogle Maps\tGoogle\nACQ566\tJuly\t30\t2008\tOmnisio\tOnline video\tUSA\t15000000\tYouTube\tGoogle\nACQ564\tSeptember\t12\t2008\tTNC\tWeblog software\tKOR\tnull\tBlogger\tGoogle\nACQ56\tSeptember\t19\t2016\tAPI.AI\tNatural language processing\tUSA\tnull\tGoogle Assistant\tGoogle\nACQ550\tAugust\t5\t2009\tOn2\tVideo compression\tUSA\t133000000\tWebM, YouTube\tGoogle\nACQ547\tSeptember\t16\t2009\treCAPTCHA\tSecurity\tUSA\tnull\tGoogle Books\tGoogle\nACQ544\tNovember\t9\t2009\tGizmo5\tVoice over IP\tUSA\t30000000\tGoogle Talk, Google Hangouts\tGoogle\nACQ543\tNovember\t9\t2009\tAdMob\tMobile advertising\tUSA\t750000000\tDoubleClick, Invite Media\tGoogle\nACQ542\tNovember\t23\t2009\tTeracent\tOnline advertising\tUSA\tnull\tAdSense\tGoogle\nACQ540\tDecember\t4\t2009\tAppJet\tCollaborative real-time editor\tUSA\tnull\tGoogle Wave, Google Docs\tGoogle\nACQ531\tFebruary\t12\t2010\tAardvark\tSocial search\tUSA\t50000000\tAardvark\tGoogle\nACQ529\tFebruary\t17\t2010\treMail\tEmail search\tUSA\tnull\tGmail\tGoogle\nACQ527\tMarch\t1\t2010\tPicnik\tPhoto editing\tUSA\tnull\tPicasa\tGoogle\nACQ525\tMarch\t5\t2010\tDocVerse\tMicrosoft Office files sharing site\tUSA\t25000000\tGoogle Docs\tGoogle\nACQ523\tApril\t2\t2010\tEpisodic\tOnline video platform start-up\tUSA\tnull\tYouTube\tGoogle\nACQ521\tApril\t12\t2010\tPlinkArt\tVisual search engine\tUK\tnull\tGoogle Goggles\tGoogle\nACQ520\tApril\t20\t2010\tAgnilux\tServer CPUs\tUSA\tnull\tAndroid\tGoogle\nACQ518\tApril\t27\t2010\tLabPixies\tGadgets\tISR\tnull\tiGoogle, Android\tGoogle\nACQ515\tApril\t30\t2010\tBumpTop\tDesktop environment\tCAN\t30000000\tAndroid\tGoogle\nACQ511\tMay\t18\t2010\tGlobal IP Solutions\tVideo and audio compression\tUSA\t68200000\tWebRTC\tGoogle\nACQ51\tOctober\t11\t2016\tFameBit\tBranded content\tnull\tnull\tYouTube\tGoogle\nACQ509\tMay\t20\t2010\tSimplify Media\tMusic streaming\tUSA\tnull\tAndroid\tGoogle\nACQ508\tMay\t21\t2010\tRuba.com\tTravel\tUSA\tnull\tiGoogle\tGoogle\nACQ504\tJune\t3\t2010\tInvite Media\tAdvertising\tUSA\t81000000\tDoubleClick\tGoogle\nACQ50\tOctober\t24\t2016\tEyefluence\tEye tracking, virtual reality\tnull\tnull\tGoogle VR\tGoogle\nACQ498\tJuly\t16\t2010\tMetaweb\tSemantic search\tUSA\tnull\tGoogle Search\tGoogle\nACQ496\tAugust\tnull\t2010\tZetawire\tMobile payment, NFC\tCAN\tnull\tAndroid, Google Wallet, Google Checkout\tGoogle\nACQ495\tAugust\t4\t2010\tInstantiations\tJava/Eclipse/AJAX developer tools\tUSA\tnull\tGoogle Web Toolkit\tGoogle\nACQ494\tAugust\t5\t2010\tSlide.com\tSocial gaming\tUSA\t228000000\tGoogle+, Orkut, Google Play\tGoogle\nACQ493\tAugust\t10\t2010\tJambool\tSocial Gold payment\tUSA\t70000000\tGoogle+, Orkut\tGoogle\nACQ490\tAugust\t15\t2010\tLike.com\tVisual search engine\tUSA\t100000000\tGoogle Shopping\tGoogle\nACQ487\tAugust\t30\t2010\tSocialDeck, Inc.\tSocial gaming\tCAN\tnull\tGoogle, Google+\tGoogle\nACQ486\tAugust\t30\t2010\tAngstro\tSocial networking service\tUSA\tnull\tGoogle, Google Alert\tGoogle\nACQ485\tSeptember\t13\t2010\tQuiksee\tOnline video\tISR\t10000000\tGoogle Maps\tGoogle\nACQ48\tNovember\t5\t2016\tLeapDroid\tAndroid Emulator\tUSA\tnull\tAndroid\tGoogle\nACQ479\tSeptember\t28\t2010\tPlannr\tSchedule management\tUSA\tnull\tGoogle+\tGoogle\nACQ478\tOctober\t1\t2010\tBlindType\tTouch typing\tGRE\tnull\tAndroid\tGoogle\nACQ470\tDecember\t3\t2010\tWidevine Technologies\tDRM\tUSA\tnull\tGoogle TV\tGoogle\nACQ469\tDecember\t3\t2010\tPhonetic Arts\tSpeech synthesis\tUK\tnull\tGoogle Voice, Google Translate\tGoogle\nACQ467\tJanuary\t13\t2011\teBook Technologies\tE-book\tUSA\tnull\tGoogle Books\tGoogle\nACQ465\tJanuary\t25\t2011\tSayNow\tVoice recognition\tUSA\tnull\tGoogle Voice\tGoogle\nACQ463\tMarch\t1\t2011\tZynamics\tSecurity\tGER\tnull\tProject Zero (Google)\tGoogle\nACQ461\tMarch\t7\t2011\tNext New Networks\tOnline video\tUSA\tnull\tYouTube\tGoogle\nACQ460\tMarch\t7\t2011\tBeatThatQuote.com\tPrice comparison service\tUK\t65000000\tGoogle Shopping\tGoogle\nACQ459\tMarch\t16\t2011\tGreen Parrot Pictures\tDigital video\tIRL\tnull\tYouTube\tGoogle\nACQ455\tApril\t8\t2011\tPushLife\tService provider\tCAN\t25000000\tGoogle Play\tGoogle\nACQ454\tApril\t12\t2011\tITA Software\tTravel technology\tUSA\t676000000\tGoogle Flights\tGoogle\nACQ452\tApril\t26\t2011\tTalkBin\tMobile software\tUSA\tnull\tAndroid\tGoogle\nACQ45\tNovember\t21\t2016\tQwiklabs\tCloud based hands-on training platform\tnull\tnull\tGoogle Cloud Platform\tGoogle\nACQ449\tMay\t23\t2011\tSparkbuy\tProduct search\tUSA\tnull\tGoogle Shopping\tGoogle\nACQ446\tJune\t3\t2011\tPostRank\tSocial media analytics service\tCAN\tnull\tGoogle+ Google Analytics\tGoogle\nACQ444\tJune\t9\t2011\tAdmeld\tOnline advertising\tUSA\t400000000\tDoubleClick, Invite Media\tGoogle\nACQ441\tJune\t18\t2011\tSageTV\tMedia center\tUSA\tnull\tGoogle TV, Google Fiber, Android TV\tGoogle\nACQ439\tJuly\t8\t2011\tPunchd\tLoyalty program\tUSA\tnull\tGoogle Offers\tGoogle\nACQ438\tJuly\t21\t2011\tFridge\tSocial groups\tUSA\tnull\tGoogle+\tGoogle\nACQ437\tJuly\t23\t2011\tPittPatt\tFacial recognition system\tUSA\tnull\tAndroid\tGoogle\nACQ436\tAugust\t1\t2011\tDealmap\tOne deal a day service\tUSA\tnull\tGoogle Offers\tGoogle\nACQ429\tSeptember\t7\t2011\tZave Networks\tDigital coupons\tUSA\tnull\tGoogle Offers\tGoogle\nACQ428\tSeptember\t8\t2011\tZagat\tRestaurant reviews\tUSA\t151000000\tGoogle Places, Google Maps\tGoogle\nACQ427\tSeptember\t19\t2011\tDailyDeal\tOne deal a day service\tGER\t114000000\tGoogle Offers\tGoogle\nACQ423\tOctober\t11\t2011\tSocialGrapple\tSocial media analytics service\tCAN\tnull\tGoogle+ Google Analytics\tGoogle\nACQ419\tNovember\t10\t2011\tApture\tInstantaneous search\tUSA\tnull\tGoogle Search\tGoogle\nACQ418\tNovember\t14\t2011\tKatango\tSocial circle organization\tUSA\tnull\tGoogle+\tGoogle\nACQ412\tDecember\t9\t2011\tRightsFlow\tMusic rights management\tUSA\tnull\tYouTube\tGoogle\nACQ411\tDecember\t13\t2011\tClever Sense\tLocal recommendations app\tUSA\tnull\tGoogle Maps\tGoogle\nACQ41\tDecember\t13\t2016\tCronologics\tSmartwatches\tUSA\tnull\tAndroid Wear\tGoogle\nACQ408\tnull\tnull\t2012\tWIMM Labs\tAndroid-powered smartwatches\tUSA\tnull\tAndroid Wear\tGoogle\nACQ400\tMarch\t16\t2012\tMilk, Inc\tSoftware company\tUSA\tnull\tGoogle+\tGoogle\nACQ40\tJanuary\t5\t2017\tLimes Audio\tVoice communication\tSWE\tnull\tGoogle Duo, Google Hangouts\tGoogle\nACQ399\tApril\t2\t2012\tTxVia\tOnline payments\tUSA\tnull\tGoogle Wallet, Google Checkout\tGoogle\nACQ387\tJune\t4\t2012\tMeebo\tSocial networking\tUSA\t100000000\tGoogle+\tGoogle\nACQ385\tJune\t5\t2012\tQuickoffice\tMobile office suite\tUSA\tnull\tGoogle Docs\tGoogle\nACQ380\tJuly\t20\t2012\tSparrow\tMobile apps\tFRA\t25000000\tGmail\tGoogle\nACQ377\tAugust\t1\t2012\tWildfire Interactive\tSocial media marketing\tUSA\t450000000\tGoogle, Google+\tGoogle\nACQ372\tSeptember\t7\t2012\tVirusTotal.com\tSecurity\tESP\tnull\tnull\tGoogle\nACQ371\tSeptember\t17\t2012\tNik Software, Inc.\tPhotography\tUSA\tnull\tGoogle, Android\tGoogle\nACQ37\tJanuary\t19\t2017\tFabric\tCrash analytics\tUSA\tnull\tFirebase\tGoogle\nACQ368\tOctober\t1\t2012\tViewdle\tFacial recognition\tUKR\t45000000\tAndroid\tGoogle\nACQ360\tNovember\t28\t2012\tIncentive Targeting Inc.\tDigital coupons\tUSA\tnull\tGoogle Offers\tGoogle\nACQ359\tNovember\t30\t2012\tBufferBox\tPackage delivery\tCAN\t17000000\tGoogle Shopping, Android\tGoogle\nACQ35\tMarch\t8\t2017\tKaggle\tData science\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ349\tFebruary\t6\t2013\tChannel Intelligence\tProduct ecommerce\tUSA\t125000000\tGoogle Shopping\tGoogle\nACQ343\tMarch\t12\t2013\tDNNresearch Inc.\tDeep Neural Networks\tCAN\tnull\tGoogle, X\tGoogle\nACQ341\tMarch\t15\t2013\tTalaria Technologies\tCloud computing\tUSA\tnull\tGoogle Cloud\tGoogle\nACQ34\tMarch\t9\t2017\tAppBridge\tProductivity suite\tUSA\tnull\tGoogle Docs\tGoogle\nACQ336\tApril\t12\t2013\tBehavio\tSocial Prediction\tUSA\tnull\tGoogle Now\tGoogle\nACQ334\tApril\t23\t2013\tWavii\tNatural Language Processing\tUSA\t30000000\tGoogle Knowledge Graph\tGoogle\nACQ324\tMay\t23\t2013\tMakani Power\tAirborne wind turbines\tUSA\tnull\tX\tGoogle\nACQ320\tJune\t11\t2013\tWaze\tGPS navigation software\tISR\t966000000\tGoogle Maps , Waze\tGoogle\nACQ295\tSeptember\t16\t2013\tBump\tMobile software\tUSA\tnull\tGoogle Photos\tGoogle\nACQ291\tOctober\t2\t2013\tFlutter\tGesture recognition technology\tUSA\t40000000\tGoogle, Android, X\tGoogle\nACQ29\tMay\t10\t2017\tOwlchemy Labs\tVirtual reality studio\tUSA\tnull\tGoogle VR\tGoogle\nACQ285\tOctober\t22\t2013\tFlexyCore\tDroidBooster App for Android\tFRA\t23000000\tAndroid\tGoogle\nACQ279\tDecember\t2\t2013\tSCHAFT, Inc.\tRobotics, humanoid robots\tJPN\tnull\tX\tGoogle\nACQ276\tDecember\t3\t2013\tIndustrial Perception\tRobotic arms, computer vision\tUSA\tnull\tX\tGoogle\nACQ274\tDecember\t4\t2013\tRedwood Robotics\tRobotic arms\tUSA\tnull\tX\tGoogle\nACQ273\tDecember\t5\t2013\tMeka Robotics\tRobots\tUSA\tnull\tX\tGoogle\nACQ272\tDecember\t6\t2013\tHolomni\tRobotic wheels\tUSA\tnull\tX\tGoogle\nACQ270\tDecember\t7\t2013\tBot & Dolly\tRobotic cameras\tUSA\tnull\tX\tGoogle\nACQ269\tDecember\t8\t2013\tAutofuss\tAds and Design\tUSA\tnull\tX\tGoogle\nACQ261\tJanuary\t4\t2014\tBitspin\tTimely App for Android\tCHE\tnull\tAndroid\tGoogle\nACQ254\tJanuary\t15\t2014\tImpermium\tInternet security\tUSA\tnull\tProject Zero (Google)\tGoogle\nACQ251\tJanuary\t26\t2014\tDeepMind Technologies\tArtificial intelligence\tUK\t625000000\tGoogle DeepMind\tGoogle\nACQ246\tFebruary\t16\t2014\tSlickLogin\tInternet Security\tISR\tnull\tProject Zero (Google)\tGoogle\nACQ244\tFebruary\t21\t2014\tspider.io\tAnti-click fraud\tUK\tnull\tDoubleClick, Adsense\tGoogle\nACQ240\tMarch\t12\t2014\tGreenThrottle\tGadgets\tUSA\tnull\tAndroid\tGoogle\nACQ233\tApril\t14\t2014\tTitan Aerospace\tHigh-altitude UAVs\tUSA\tnull\tProject Loon\tGoogle\nACQ23\tJuly\t12\t2017\tHalli Labs\tArtificial intelligence\tIND\tnull\tnull\tGoogle\nACQ228\tMay\t2\t2014\tRangespan\tE-commerce\tUK\tnull\tGoogle Shopping\tGoogle\nACQ226\tMay\t6\t2014\tAdometry\tOnline advertising attribution\tUSA\tnull\tGoogle Analytics AdSense\tGoogle\nACQ225\tMay\t7\t2014\tMyEnergy\tOnline energy usage monitoring\tUSA\tnull\tNest Labs\tGoogle\nACQ224\tMay\t7\t2014\tStackdriver\tCloud computing\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ223\tMay\t7\t2014\tAppetas\tRestaurant website creation\tUSA\tnull\tGoogle My Business\tGoogle\nACQ221\tMay\t16\t2014\tQuest Visual\tAugmented reality\tUSA\tnull\tGoogle Translate\tGoogle\nACQ220\tMay\t19\t2014\tDivide\tMobile device management\tUSA\tnull\tAndroid for Work\tGoogle\nACQ216\tJune\t10\t2014\tSkybox Imaging\tSatellite\tUSA\t500000000\tGoogle Maps, Project Loon\tGoogle\nACQ214\tJune\t19\t2014\tAlpental Technologies\tWireless\tUSA\tnull\tGoogle\tGoogle\nACQ213\tJune\t19\t2014\tmDialog\tOnline advertising\tCAN\tnull\tDoubleClick\tGoogle\nACQ211\tJune\t20\t2014\tDropcam\tHome monitoring\tUSA\t555000000\tNest Labs\tGoogle\nACQ210\tJune\t25\t2014\tAppurify\tAutomated application testing\tUSA\tnull\tAndroid\tGoogle\nACQ207\tJuly\t1\t2014\tSongza\tMusic streaming\tUSA\tnull\tGoogle Play, Android TV\tGoogle\nACQ201\tJuly\t23\t2014\tdrawElements\tGraphics compatibility testing\tFIN\tnull\tAndroid\tGoogle\nACQ20\tAugust\t16\t2017\tAIMatter\tComputer vision\tBLR\tnull\tYouTube\tGoogle\nACQ2\tMarch\t27\t2018\tTenor\tGIF image search\tUSA\tnull\tGoogle Images\tGoogle\nACQ195\tAugust\t6\t2014\tDirector\tMobile video\tUSA\tnull\tYouTube, Android\tGoogle\nACQ194\tAugust\t6\t2014\tEmu\tIM client\tUSA\tnull\tGoogle Hangouts, Google Now\tGoogle\nACQ19\tSeptember\t21\t2017\tHTC (portions)\tTalent and intellectual property licenses\tTWN\t1100000000\tGoogle Pixel\tGoogle\nACQ189\tAugust\t17\t2014\tJetpac\tArtificial intelligence, image recognition\tUSA\tnull\tPicasa\tGoogle\nACQ188\tAugust\t23\t2014\tGecko Design\tMechanical design\tUSA\tnull\tX\tGoogle\nACQ187\tAugust\t26\t2014\tZync Render\tCloud-based visual effects software\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ184\tSeptember\t10\t2014\tLift Labs\tLiftware\tUSA\tnull\tVerily\tGoogle\nACQ183\tSeptember\t11\t2014\tPolar\tSocial polling\tUSA\tnull\tGoogle+\tGoogle\nACQ179\tOctober\t21\t2014\tFirebase\tData synchronization\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ178\tOctober\t23\t2014\tDark Blue Labs & Vision Factory\tArtificial intelligence\tUK\tnull\tGoogle DeepMind\tGoogle\nACQ177\tOctober\t24\t2014\tRevolv\tHome automation\tUSA\tnull\tNest Labs\tGoogle\nACQ172\tNovember\t19\t2014\tRelativeWave\tMobile software prototyping\tUSA\tnull\tAndroid\tGoogle\nACQ17\tSeptember\t26\t2017\tBitium\tSingle sign-on and identity management\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ167\tDecember\t17\t2014\tVidmaker\tVideo editing\tUSA\tnull\tYouTube\tGoogle\nACQ158\tFebruary\t4\t2015\tLaunchpad Toys\tChild-friendly apps\tUSA\tnull\tYouTube for Kids\tGoogle\nACQ157\tFebruary\t8\t2015\tOdysee\tMultimedia sharing and storage\tUSA\tnull\tGoogle+\tGoogle\nACQ154\tFebruary\t23\t2015\tSoftcard\tMobile payments\tUSA\tnull\tAndroid Pay\tGoogle\nACQ153\tFebruary\t24\t2015\tRed Hot Labs\tApp advertising and discovery\tUSA\tnull\tGoogle Play\tGoogle\nACQ140\tApril\t16\t2015\tSkillman & Hackett\tVirtual reality software\tUSA\tnull\tTilt Brush\tGoogle\nACQ139\tApril\t16\t2015\tThrive Audio\tSurround sound technology\tIRL\tnull\tGoogle Cardboard\tGoogle\nACQ136\tMay\t4\t2015\tTimeful\tMobile software\tUSA\tnull\tGoogle Inbox, Google Calendar\tGoogle\nACQ134\tMay\t28\t2015\tPulse.io\tMobile app optimizer\tUSA\tnull\tAndroid\tGoogle\nACQ129\tJune\t18\t2015\tAgawi\tMobile application streaming\tUSA\tnull\tAndroid, Google Play\tGoogle\nACQ125\tJuly\t21\t2015\tPixate\tMobile software prototyping\tUSA\tnull\tAndroid\tGoogle\nACQ114\tSeptember\t21\t2015\tOyster\tE-book subscriptions\tUSA\tnull\tGoogle Play Books\tGoogle\nACQ111\tSeptember\t30\t2015\tJibe Mobile\tRich Communication Services\tUSA\tnull\tAndroid\tGoogle\nACQ11\tOctober\t9\t2017\tRelay Media\tAMP converter\tUSA\tnull\tAccelerated Mobile Pages\tGoogle\nACQ108\tOctober\t17\t2015\tDigisfera\t360-degree photography\tPOR\tnull\tStreet View\tGoogle\nACQ10\tOctober\t11\t2017\t60db\tPodcasts\tUSA\tnull\tGoogle Play Music\tGoogle\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=1"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674498344_-1862665669","id":"20190604-215458_1449035758","dateCreated":"2019-06-04T21:54:58+0300","dateStarted":"2019-06-04T21:55:35+0300","dateFinished":"2019-06-04T21:55:36+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17165"},{"text":"%sql --- Problem 4: Google ve Microsoft şirketlerinin bulut yazılım alanında yaptığı satın almaları gösteriniz. ---\nselect * from acquisitions where (ParentCompany=\"Microsoft\" or ParentCompany=\"Google\")\nand Business=\"Cloud software\"","user":"anonymous","dateUpdated":"2019-06-04T21:57:20+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionID":"string","AcquisitionMonth":"string","AcquisitionMonthDate":"string","AcquisitionYear":"string","Company":"string","Business":"string","Country":"string","Value":"string","Derived":"string","ParentCompany":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionID\tAcquisitionMonth\tAcquisitionMonthDate\tAcquisitionYear\tCompany\tBusiness\tCountry\tValue\tDerived\tParentCompany\nACQ99\tNovember\t11\t2015\tbebop\tCloud software\tUSA\t380000000\tGoogle Cloud Platform\tGoogle\nACQ61\tAugust\t8\t2016\tOrbitera\tCloud software\tUSA\t100000000\tGoogle Cloud Platform\tGoogle\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=2"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674531204_-947085159","id":"20190604-215531_89625325","dateCreated":"2019-06-04T21:55:31+0300","dateStarted":"2019-06-04T21:57:16+0300","dateFinished":"2019-06-04T21:57:16+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17166"},{"text":"%sql --- Problem 5: Genel olarak \"yazılım\" alanında yapılan tüm satın almaları gösteriniz. ---\nselect * from acquisitions where Business like \"%software%\"","user":"anonymous","dateUpdated":"2019-06-04T21:58:05+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionID":"string","AcquisitionMonth":"string","AcquisitionMonthDate":"string","AcquisitionYear":"string","Company":"string","Business":"string","Country":"string","Value":"string","Derived":"string","ParentCompany":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionID\tAcquisitionMonth\tAcquisitionMonthDate\tAcquisitionYear\tCompany\tBusiness\tCountry\tValue\tDerived\tParentCompany\nACQ99\tNovember\t11\t2015\tbebop\tCloud software\tUSA\t380000000\tGoogle Cloud Platform\tGoogle\nACQ92\tJanuary\t19\t2016\tTeacher Gaming LLC\tEducation software\tFIN\tnull\tnull\tMicrosoft\nACQ915\tJuly\t30\t1987\tForethought, Inc.\tComputer software\tUSA\t14000000\tnull\tMicrosoft\nACQ912\tJune\t27\t1988\tStyleware\tComputer software\tUSA\tnull\tAppleWorks GS\tApple\nACQ911\tJuly\t11\t1988\tClaris\tComputer software\tUSA\tnull\tFileMaker, iWork, iLife\tApple\nACQ910\tJanuary\t3\t1989\tCoral Software\tComputer software\tUSA\tnull\tMacintosh Common Lisp\tApple\nACQ908\tJune\t29\t1992\tFox Software\tPC database software\tUSA\tnull\tnull\tMicrosoft\nACQ907\tFebruary\t28\t1994\tSoftimage\tWholesale 3-D visualization software\tCAN\tnull\tnull\tMicrosoft\nACQ900\tNovember\t6\t1995\tNetwise\tComputer software\tUSA\tnull\tnull\tMicrosoft\nACQ894\tApril\t23\t1996\tAspect Software Engineering\tComputer software\tUSA\t14150000\tnull\tMicrosoft\nACQ890\tFebruary\t3\t1997\tNetCarta\tInternet software\tUSA\t20000000\tnull\tMicrosoft\nACQ889\tFebruary\t7\t1997\tNeXT\tUnix-like hardware and software platform\tUSA\t404000000\tMac OS X, iOS, macOS, tvOS, watchOS\tApple\nACQ888\tMarch\t3\t1997\tInterse\tInternet software\tUSA\tnull\tnull\tMicrosoft\nACQ884\tJune\t30\t1997\tLinkAge Software\tInternet software development\tCAN\tnull\tnull\tMicrosoft\nACQ883\tAugust\t5\t1997\tVXtreme\tInternet video software\tUSA\tnull\tnull\tMicrosoft\nACQ879\tDecember\t31\t1997\tHotmail\tInternet software\tUSA\t500000000\tnull\tMicrosoft\nACQ878\tFebruary\t23\t1998\tFlash Communications\tEnterprise instant messaging software\tUSA\tnull\tnull\tMicrosoft\nACQ876\tApril\t15\t1998\tFirefly\tRelationship management software\tUSA\t40000000\tnull\tMicrosoft\nACQ875\tApril\t28\t1998\tMESA Group\tData sharing software\tUSA\tnull\tnull\tMicrosoft\nACQ872\tJuly\t17\t1998\tWebcal\tCalendaring software\tUSA\t21000000\tYahoo Calendar\tYahoo\nACQ871\tAugust\t25\t1998\tValence Research\tInternet software\tUSA\tnull\tnull\tMicrosoft\nACQ866\tJanuary\t11\t1999\tFASA Interactive\tComputer game software\tUSA\tnull\tnull\tMicrosoft\nACQ862\tApril\t27\t1999\tInteractive Objects-Digital\tWeb music software\tUSA\tnull\tnull\tMicrosoft\nACQ857\tJune\t7\t1999\tShadowFactor Software\tWholesale computer software\tUSA\tnull\tnull\tMicrosoft\nACQ856\tJune\t15\t1999\tOmnibrowse\tInternet software\tUSA\tnull\tnull\tMicrosoft\nACQ855\tJune\t28\t1999\tIntrinsa\tDefect detection software\tUSA\t58900000\tnull\tMicrosoft\nACQ854\tJuly\t1\t1999\tSendit\tApplication software\tSWE\t125420000\tnull\tMicrosoft\nACQ853\tJuly\t7\t1999\tZoomit\tEncryption software\tCAN\tnull\tnull\tMicrosoft\nACQ852\tJuly\t21\t1999\tSTNC\tCommunity software\tUK\tnull\tnull\tMicrosoft\nACQ848\tJanuary\t7\t2000\tVisio Corporation\tWholesale drawing software\tUSA\t1375000000\tnull\tMicrosoft\nACQ847\tJanuary\t7\t2000\tNetSelector\tInternet software\tUSA\tnull\tnull\tApple\nACQ840\tJune\t19\t2000\tBungie Software\tComputer software\tUSA\tnull\tnull\tMicrosoft\nACQ832\tnull\tnull\t2001\tBluefish Labs\tProductivity software\tUSA\tnull\tiWork\tApple\nACQ828\tApril\t5\t2001\tGreat Plains Software\tBusiness management software\tUSA\t939884000\tnull\tMicrosoft\nACQ825\tMay\t31\t2001\tNCompass Labs\tInternet software\tCAN\t36000000\tnull\tMicrosoft\nACQ819\tJuly\t9\t2001\tSpruce Technologies[note 3]\tGraphics software\tUSA\t14900000\tDVD Studio Pro\tApple\nACQ815\tFebruary\t1\t2002\tNothing Real\tSpecial effects software\tUSA\t15000000\tShake\tApple\nACQ812\tApril\t4\t2002\tZayante\tFireWire chips and software\tUSA\t13000000\tFireWire\tApple\nACQ810\tJune\t11\t2002\tSilicon Grail Corp-Chalice[note 5][note 6]\tDigital effects software\tUSA\t20000000\tMotion\tApple\nACQ808\tJune\t21\t2002\tPrismo Graphics[note 6]\tSpecial-effects titling software for film and video\tUSA\t20000000\tLiveType (Final Cut Studio)\tApple\nACQ806\tJuly\t1\t2002\tEmagic\tMusic production software\tGER\t30000000\tLogic Pro, GarageBand\tApple\nACQ802\tSeptember\t10\t2002\tXDegrees\tSecurity software\tUSA\tnull\tnull\tMicrosoft\nACQ793\tFebruary\tnull\t2003\tPyra Labs\tWeblog software\tUSA\tnull\tBlogger\tGoogle\nACQ790\tMarch\t3\t2003\tDCG\tInternet software\tAUS\tnull\tnull\tMicrosoft\nACQ774\tDecember\t17\t2003\tGreen Pasture Software, Inc.\tContent management software\tUSA\tnull\tnull\tIBM\nACQ760\tJuly\t29\t2004\tCyanea Systems\tApplication management software\tUSA\tnull\tnull\tIBM\nACQ752\tNovember\t19\t2004\tSystemcorp ALG Ltd.\tProject Portfolio Management (PPM) software\tCAN\tnull\tnull\tIBM\nACQ737\tApril\t9\t2005\tGroove Networks\tCommunity software\tUSA\tnull\tnull\tMicrosoft\nACQ730\tJune\t14\t2005\tblo.gs\tWeblog software\tUSA\tnull\tYahoo! 360°\tYahoo\nACQ716\tSeptember\t19\t2005\tAlacris\tCertificate management software\tUSA\tnull\tnull\tMicrosoft\nACQ715\tOctober\t4\t2005\tUpcoming.org\tCalendaring software\tUSA\tnull\tYahoo! Local\tYahoo\nACQ711\tNovember\t1\t2005\tiPhrase Systems, Inc.\tInformation management software\tUSA\tnull\tnull\tIBM\nACQ703\tDecember\t31\t2005\tbruNET GmbH\tMobile software\tGER\tnull\tGoogle Mobile\tGoogle\nACQ702\tDecember\t31\t2005\tallPAY GmbH\tMobile software\tGER\tnull\tGoogle Mobile\tGoogle\nACQ696\tJanuary\t27\t2006\tARGUS Semiconductor Software From INFICON\tSemiconductor Manufacturing software\tUSA\tnull\tnull\tIBM\nACQ692\tFebruary\t14\t2006\tMeasure Map\tWeblog software\tUSA\tnull\tGoogle Analytics\tGoogle\nACQ690\tMarch\t7\t2006\tOnfolio\tInternet software\tUSA\tnull\tnull\tMicrosoft\nACQ687\tMarch\t14\t2006\t@Last Software\t3D modeling software\tUSA\tnull\tGoogle Sketchup\tGoogle\nACQ682\tApril\t26\t2006\tAssetMetrix\tEnterprise software\tCAN\tnull\tnull\tMicrosoft\nACQ680\tMay\t4\t2006\tVexcel\tMapping software\tUSA\tnull\tnull\tMicrosoft\nACQ675\tJune\t6\t2006\tProClarity\tAnalysis software\tUSA\tnull\tnull\tMicrosoft\nACQ672\tJuly\t17\t2006\tSoftricity\tapplication virtualization software\tUSA\tnull\tnull\tMicrosoft\nACQ669\tAugust\t1\t2006\tWebify Solutions, Inc\tService Oriented Architecture software\tUSA\tnull\tnull\tIBM\nACQ660\tOctober\t12\t2006\tColloquis\tNatural language software\tUSA\tnull\tnull\tMicrosoft\nACQ659\tOctober\t12\t2006\tFileNet Corporation\tContent management software\tUSA\t1600000000\tnull\tIBM\nACQ652\tNovember\t17\t2006\tKenet Works\tMobile software\tEU\t25000000\tYahoo! Mobile\tYahoo\nACQ642\tMarch\t16\t2007\tTrendalyzer\tStatistical software\tSWE\tnull\tGoogle Analytics\tGoogle\nACQ634\tMay\t3\t2007\tTellme Networks\tMobile phone software\tUSA\tnull\tnull\tMicrosoft\nACQ632\tMay\t9\t2007\tSoftArtisans\tBusiness Intelligence software\tUSA\tnull\tnull\tMicrosoft\nACQ61\tAugust\t8\t2016\tOrbitera\tCloud software\tUSA\t100000000\tGoogle Cloud Platform\tGoogle\nACQ608\tSeptember\t17\t2007\tZimbra\tCollaborative software\tUSA\t350000000\tZimbra\tYahoo\nACQ605\tOctober\t5\t2007\tParlano\tEnterprise messaging software\tUSA\tnull\tnull\tMicrosoft\nACQ586\tMarch\t14\t2008\tRapt\tAdvertising yield management software\tUSA\tnull\tnull\tMicrosoft\nACQ585\tMarch\t19\t2008\tKomoku\tRootkit security software\tUSA\t5000000\tnull\tMicrosoft\nACQ584\tMarch\t31\t2008\t90 Degree Software\tBusiness intelligence software\tCAN\tnull\tnull\tMicrosoft\nACQ583\tApril\t3\t2008\tTelelogic AB\tEnterprise software development\tSWE\t845000000\tnull\tIBM\nACQ582\tApril\t14\t2008\tFarecast\tOnline search software\tUSA\t75000000\tnull\tMicrosoft\nACQ581\tApril\t15\t2008\tDanger\tMobile Internet software\tUSA\t500000000\tnull\tMicrosoft\nACQ572\tJune\t18\t2008\tNavic Networks\tManagement software\tUSA\tnull\tnull\tMicrosoft\nACQ564\tSeptember\t12\t2008\tTNC\tWeblog software\tKOR\tnull\tBlogger\tGoogle\nACQ563\tSeptember\t16\t2008\tDATAllegro\tData software\tUSA\tnull\tnull\tMicrosoft\nACQ560\tNovember\t24\t2008\tValues of n\tSocial software development\tnull\tnull\tnull\tTwitter\nACQ551\tJuly\t28\t2009\tSPSS Inc.\tStatistical analysis software\tUSA\t1200000000\tnull\tIBM\nACQ532\tFebruary\t3\t2010\tInitiate Systems\tData integrity software\tUSA\tnull\tnull\tIBM\nACQ530\tFebruary\t16\t2010\tIntelliden Inc.\tNetwork Automation software\tUSA\tnull\tnull\tIBM\nACQ517\tApril\t27\t2010\tSiri\tVoice control software\tUSA\tnull\tSiri\tApple\nACQ507\tMay\t24\t2010\tSterling Commerce\tBusiness software integration\tUSA\t1400000000\tnull\tIBM\nACQ501\tJuly\t1\t2010\tBigFix, Inc.\tSecurity and IT automation software\tUSA\tnull\tnull\tIBM\nACQ491\tAugust\t13\t2010\tUnica Corporation\tMarketing planning software\tUSA\t480000000\tnull\tIBM\nACQ452\tApril\t26\t2011\tTalkBin\tMobile software\tUSA\tnull\tAndroid\tGoogle\nACQ407\tJanuary\t4\t2012\tGreen Hat (software company)[124]\tCloud based software testing\tUSA\tnull\tnull\tIBM\nACQ364\tOctober\t16\t2012\tCabana\tMobile app building software\tnull\tnull\tnull\tTwitter\nACQ345\tMarch\tnull\t2013\tosmeta\tMobile software\tUSA\tnull\tnull\tFacebook\nACQ320\tJune\t11\t2013\tWaze\tGPS navigation software\tISR\t966000000\tGoogle Maps , Waze\tGoogle\nACQ312\tJuly\t18\t2013\tMonoidics\tAutomatic verification software\tUK\tnull\tnull\tFacebook\nACQ295\tSeptember\t16\t2013\tBump\tMobile software\tUSA\tnull\tGoogle Photos\tGoogle\nACQ27\tMay\t31\t2017\tXCC (division of TIMETOACT)\tCollaboration software\tGER\tnull\tnull\tIBM\nACQ260\tJanuary\t4\t2014\tSnappyLabs\tPhotography software\tUSA\tnull\tCamera\tApple\nACQ259\tJanuary\t7\t2014\tParature\tCustomer service software\tUSA\t100000000\tnull\tMicrosoft\nACQ25\tJune\t16\t2017\tSensoMotoric Instruments\tEye tracking hardware and software\tGER\tnull\tARKit\tApple\nACQ187\tAugust\t26\t2014\tZync Render\tCloud-based visual effects software\tUSA\tnull\tGoogle Cloud Platform\tGoogle\nACQ172\tNovember\t19\t2014\tRelativeWave\tMobile software prototyping\tUSA\tnull\tAndroid\tGoogle\nACQ155\tFebruary\t12\t2015\tN-trig\tStyli and pen input hardware and software\tISR\t200000000\tnull\tMicrosoft\nACQ144\tApril\t13\t2015\tPhytel\tHealth management software\tUSA\tnull\tnull\tIBM\nACQ140\tApril\t16\t2015\tSkillman & Hackett\tVirtual reality software\tUSA\tnull\tTilt Brush\tGoogle\nACQ136\tMay\t4\t2015\tTimeful\tMobile software\tUSA\tnull\tGoogle Inbox, Google Calendar\tGoogle\nACQ125\tJuly\t21\t2015\tPixate\tMobile software prototyping\tUSA\tnull\tAndroid\tGoogle\nACQ121\tAugust\t6\t2015\tMerge Healthcare Inc.\tHealthcare imaging software\tUSA\t1000000000\tnull\tIBM\nACQ115\tSeptember\t11\t2015\tDouble Labs, Inc.\tMobile lock screen software\tUSA\tnull\tnull\tMicrosoft\nACQ103\tNovember\t3\t2015\tGravitant, Inc\tCloud brokerage software and cloud management\tUSA\tnull\tnull\tIBM\nACQ101\tNovember\t6\t2015\tCleversafe\tObject-based storage software\tUSA\t1309000000\tnull\tIBM\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=3"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674636104_253617706","id":"20190604-215716_297337862","dateCreated":"2019-06-04T21:57:16+0300","dateStarted":"2019-06-04T21:58:01+0300","dateFinished":"2019-06-04T21:58:01+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17167"},{"text":"%sql --- Problem 6: Açıklanan değerlere göre en fazla parcanan yatırımları fiyata göre değerlendiriniz. ---\nselect AcquisitionYear, Company, Value, ParentCompany,\ncase when Value>=250000000 then 'Yuksek'\nwhen Value<250000000 and Value>=20000000 then 'Orta'\nwhen Value<20000000 then 'Dusuk' end as Price from acquisitions where Value > 0","user":"anonymous","dateUpdated":"2019-06-04T21:59:54+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionYear":"string","Company":"string","Value":"string","ParentCompany":"string","Price":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionYear\tCompany\tValue\tParentCompany\tPrice\n2015\tbebop\t380000000\tGoogle\tYuksek\n1987\tForethought, Inc.\t14000000\tMicrosoft\tDusuk\n1996\tVermeer Technologies\t133000000\tMicrosoft\tOrta\n1996\tAspect Software Engineering\t14150000\tMicrosoft\tDusuk\n1997\tNetCarta\t20000000\tMicrosoft\tOrta\n1997\tNeXT\t404000000\tApple\tYuksek\n1997\tWebTV Networks\t425000000\tMicrosoft\tYuksek\n1997\tNet Controls\t1400000\tYahoo\tDusuk\n1997\tPower Computing Corporation\t110000000\tApple\tOrta\n1997\tFour11\t92000000\tYahoo\tOrta\n1997\tHotmail\t500000000\tMicrosoft\tYuksek\n1998\tFirefly\t40000000\tMicrosoft\tOrta\n1998\tViaweb\t48600000\tYahoo\tOrta\n1998\tWebcal\t21000000\tYahoo\tOrta\n1998\tYoyodyne\t29600000\tYahoo\tOrta\n1998\tLinkExchange\t265000000\tMicrosoft\tYuksek\n1998\tHyperparallel\t8100000\tYahoo\tDusuk\n1999\tXemplar Education\t4926000\tApple\tDusuk\n1999\tEncompass\t130000000\tYahoo\tOrta\n2016\tTouchType, Ltd.\t250000000\tMicrosoft\tYuksek\n1999\tOnline Anywhere\t80000000\tYahoo\tOrta\n1999\tIntrinsa\t58900000\tMicrosoft\tOrta\n1999\tSendit\t125420000\tMicrosoft\tOrta\n1999\tRaycer Graphics\t15000000\tApple\tDusuk\n2000\tVisio Corporation\t1375000000\tMicrosoft\tYuksek\n2000\tTravelscape\t89750000\tMicrosoft\tOrta\n2000\tTitus Communications\t944800000\tMicrosoft\tYuksek\n2000\tVivaSmart\t8900000\tYahoo\tDusuk\n2000\teGroups\t432000000\tYahoo\tYuksek\n2000\tMongoMusic\t65000000\tMicrosoft\tOrta\n2000\tKimo\t30000000\tYahoo\tOrta\n2001\tSold.com.au\t30000000\tYahoo\tOrta\n2001\tVacationspot\t70850000\tMicrosoft\tOrta\n2001\tGreat Plains Software\t939884000\tMicrosoft\tYuksek\n2001\tNCompass Labs\t36000000\tMicrosoft\tOrta\n2001\tMainspring\t80000000\tIBM\tOrta\n2001\tMaximal Innovative Intelligence\t20000000\tMicrosoft\tOrta\n2001\tLAUNCH Media\t12000000\tYahoo\tDusuk\n2001\tInformix Corporation\t1000000000\tIBM\tYuksek\n2001\tSpruce Technologies[note 3]\t14900000\tApple\tDusuk\n2001\tPowerSchool\t66100000\tApple\tOrta\n2002\tCrossWorlds Software, Inc.\t129000000\tIBM\tOrta\n2002\tNothing Real\t15000000\tApple\tDusuk\n2002\tHotjobs.com\t436000000\tYahoo\tYuksek\n2002\tClassic Custom Vacations\t78000000\tMicrosoft\tOrta\n2002\tZayante\t13000000\tApple\tDusuk\n2002\tSilicon Grail Corp-Chalice[note 5][note 6]\t20000000\tApple\tOrta\n2002\tPrismo Graphics[note 6]\t20000000\tApple\tOrta\n2002\tEmagic\t30000000\tApple\tOrta\n2002\tNavision\t1330000000\tMicrosoft\tYuksek\n2002\tRare\t375000000\tMicrosoft\tYuksek\n2002\tVicinity\t95849000\tMicrosoft\tOrta\n2002\tInktomi Corporation\t235000000\tYahoo\tOrta\n2003\tRational Software Corporation\t2100000000\tIBM\tYuksek\n2003\tApplied Semantics\t102000000\tGoogle\tOrta\n2003\tPlaceWare\t200000000\tMicrosoft\tOrta\n2003\tOverture Services, Inc.\t1630000000\tYahoo\tYuksek\n2003\t3DO Co-High Heat Baseball\t450000\tMicrosoft\tDusuk\n2004\t3721 Internet Assistant\t120000000\tYahoo\tOrta\n2004\tKelkoo\t579000000\tYahoo\tYuksek\n2004\tDaksh e-Services\t170000000\tIBM\tOrta\n2004\tOddpost\t30000000\tYahoo\tOrta\n2004\tMusicmatch Jukebox\t160000000\tYahoo\tOrta\n2016\tBlue Wolf Group LLC\t200000000\tIBM\tOrta\n2005\tVerdisoft\t58000000\tYahoo\tOrta\n2005\tCorio\t182000000\tIBM\tOrta\n2005\tLudicorp\t40000000\tYahoo\tOrta\n2005\tAscential Software Corporation\t1100000000\tIBM\tYuksek\n2005\tMessageCast\t7000000\tMicrosoft\tDusuk\n2005\tTsinghua-Shenxun-Cert Asts\t15000000\tMicrosoft\tDusuk\n2005\tAndroid Inc.\t50000000\tGoogle\tOrta\n2005\tfacebook.com domain name\t200000\tFacebook\tDusuk\n2005\t5th Finger\t3153000\tMicrosoft\tDusuk\n2005\tdel.icio.us\t20000000\tYahoo\tOrta\n2006\tdMarc Broadcasting\t102000000\tGoogle\tOrta\n2006\tMotionBridge\t17858000\tMicrosoft\tDusuk\n2006\tMicromuse, Inc.\t865000000\tIBM\tYuksek\n2016\tMagic Pony Technology\t150000000\tTwitter\tOrta\n2006\tMRO Software\t740000000\tIBM\tYuksek\n2006\tYouTube\t1650000000\tGoogle\tYuksek\n2006\tFileNet Corporation\t1600000000\tIBM\tYuksek\n2006\tInternet Security Systems (ISS)\t1300000000\tIBM\tYuksek\n2006\tKenet Works\t25000000\tYahoo\tOrta\n2006\tWretch\t22000000\tYahoo\tOrta\n2006\tEndoxon\t28000000\tGoogle\tOrta\n2007\tAdscape\t23000000\tGoogle\tOrta\n2007\tMarratech\t15000000\tGoogle\tDusuk\n2007\tUnicible\t460000000\tIBM\tYuksek\n2007\tRight Media\t850000000\tYahoo\tYuksek\n2016\tTuri\t200000000\tApple\tOrta\n2007\tFeedBurner\t100000000\tGoogle\tOrta\n2007\tSavvis Inc-Data Centers\t200000000\tMicrosoft\tOrta\n2007\tGrandCentral\t45000000\tGoogle\tOrta\n2007\tPostini\t625000000\tGoogle\tYuksek\n2007\tDataMirror Corporation\t161000000\tIBM\tOrta\n2007\tBlueLithium\t300000000\tYahoo\tYuksek\n2016\tOrbitera\t100000000\tGoogle\tOrta\n2007\tZimbra\t350000000\tYahoo\tYuksek\n2008\tXIV\t300000000\tIBM\tYuksek\n2008\tMaven Networks\t160000000\tYahoo\tOrta\n2008\tKomoku\t5000000\tMicrosoft\tDusuk\n2008\tTelelogic AB\t845000000\tIBM\tYuksek\n2008\tFarecast\t75000000\tMicrosoft\tOrta\n2008\tDanger\t500000000\tMicrosoft\tYuksek\n2008\tDiligent Technologies\t200000000\tIBM\tOrta\n2016\tApigee\t625000000\tGoogle\tYuksek\n2008\tP.A. Semi\t278000000\tApple\tYuksek\n2008\tFast Search & Transfer\t1191000000\tMicrosoft\tYuksek\n2008\tConnectU\t31000000\tFacebook\tOrta\n2008\tILOG\t340000000\tIBM\tYuksek\n2008\tOmnisio\t15000000\tGoogle\tDusuk\n2008\tGreenfield Online\t486000000\tMicrosoft\tYuksek\n2009\t3DV Systems\t35000000\tMicrosoft\tOrta\n2009\tXoopit\t20000000\tYahoo\tOrta\n2009\tSPSS Inc.\t1200000000\tIBM\tYuksek\n2009\tOn2\t133000000\tGoogle\tOrta\n2009\tFriendFeed\t47500000\tFacebook\tOrta\n2009\tMaktoob.com\t167000000\tYahoo\tOrta\n2009\tGizmo5\t30000000\tGoogle\tOrta\n2009\tAdMob\t750000000\tGoogle\tYuksek\n2009\tLala.com\t17000000\tApple\tDusuk\n2009\tMixer labs\t5170000\tTwitter\tDusuk\n2010\tQuattro Wireless\t275000000\tApple\tYuksek\n2010\tAardvark\t50000000\tGoogle\tOrta\n2010\tDocVerse\t25000000\tGoogle\tOrta\n2010\tIntrinsity\t121000000\tApple\tOrta\n2010\tBumpTop\t30000000\tGoogle\tOrta\n2010\tCast Iron Systems\t190000000\tIBM\tOrta\n2010\tGipsy Moth Studios\t12000000\tApple\tDusuk\n2010\tFriendster patents\t40000000\tFacebook\tOrta\n2010\tGlobal IP Solutions\t68200000\tGoogle\tOrta\n2010\tSterling Commerce\t1400000000\tIBM\tYuksek\n2010\tInvite Media\t81000000\tGoogle\tOrta\n2010\tNextstop\t2500000\tFacebook\tDusuk\n2010\tStorwize\t140000000\tIBM\tOrta\n2010\tSlide.com\t228000000\tGoogle\tOrta\n2010\tJambool\t70000000\tGoogle\tOrta\n2010\tUnica Corporation\t480000000\tIBM\tYuksek\n2010\tLike.com\t100000000\tGoogle\tOrta\n2010\tChai Labs\t10000000\tFacebook\tDusuk\n2010\tQuiksee\t10000000\tGoogle\tDusuk\n2010\tPolar Rose\t29000000\tApple\tOrta\n2010\tNetezza\t1700000000\tIBM\tYuksek\n2010\tDapper\t55000000\tYahoo\tOrta\n2010\tClarity Systems\t350000000\tIBM\tYuksek\n2010\tFB.com domain name\t8500000\tFacebook\tDusuk\n2011\tSpreets\t40000000\tYahoo\tOrta\n2011\tBeatThatQuote.com\t65000000\tGoogle\tOrta\n2011\tSnaptu\t70000000\tFacebook\tOrta\n2011\tPushLife\t25000000\tGoogle\tOrta\n2011\tITA Software\t676000000\tGoogle\tYuksek\n2011\tIntoNow\t20000000\tYahoo\tOrta\n2011\tTweetDeck\t40000000\tTwitter\tOrta\n2011\tAdmeld\t400000000\tGoogle\tYuksek\n2011\tC3 Technologies\t267000000\tApple\tYuksek\n2011\tAlgorithmics Inc.[116]\t387000000\tIBM\tYuksek\n2011\tZagat\t151000000\tGoogle\tOrta\n2011\tDailyDeal\t114000000\tGoogle\tOrta\n2011\tInterclick\t270000000\tYahoo\tYuksek\n2011\tVideosurf\t100000000\tMicrosoft\tOrta\n2011\tDemandTec\t440000000\tIBM\tYuksek\n2011\tAnobit\t390000000\tApple\tYuksek\n2012\tWorklight\t70000000\tIBM\tOrta\n2012\tChomp\t50000000\tApple\tOrta\n2012\tInstagram\t1000000000\tFacebook\tYuksek\n2012\tMeebo\t100000000\tGoogle\tOrta\n2012\tFace.com\t100000000\tFacebook\tOrta\n2012\tYammer\t1200000000\tMicrosoft\tYuksek\n2012\tSparrow\t25000000\tGoogle\tOrta\n2012\tAuthenTec\t356000000\tApple\tYuksek\n2012\tWildfire Interactive\t450000000\tGoogle\tYuksek\n2012\tKenexa Corporation\t1400000000\tIBM\tYuksek\n2012\tViewdle\t45000000\tGoogle\tOrta\n2012\tVine\t30000000\tTwitter\tOrta\n2012\tBufferBox\t17000000\tGoogle\tDusuk\n2013\tSnip.it\t10000000\tYahoo\tDusuk\n2013\tCrashlytics\t100000000\tTwitter\tOrta\n2013\tChannel Intelligence\t125000000\tGoogle\tOrta\n2013\tBluefin Labs\t80000000\tTwitter\tOrta\n2013\tWiFiSlam\t20000000\tApple\tOrta\n2013\tSummly\t30000000\tYahoo\tOrta\n2013\tWavii\t30000000\tGoogle\tOrta\n2013\tParse\t85000000\tFacebook\tOrta\n2013\tTumblr\t1100000000\tYahoo\tYuksek\n2013\tSoftLayer Technologies\t2000000000\tIBM\tYuksek\n2013\tWaze\t966000000\tGoogle\tYuksek\n2013\tQwiki\t50000000\tYahoo\tOrta\n2013\tXobni\t40000000\tYahoo\tOrta\n2013\tLexity\t35000000\tYahoo\tOrta\n2013\tTrusteer\t1000000000\tIBM\tYuksek\n2013\tMoPub\t350000000\tTwitter\tYuksek\n2013\tFlutter\t40000000\tGoogle\tOrta\n2013\tCue\t50000000\tApple\tOrta\n2013\tFlexyCore\t23000000\tGoogle\tOrta\n2013\tFiberlink Communications\t330000000\tIBM\tYuksek\n2013\tPrimeSense\t345000000\tApple\tYuksek\n2017\tLattice Data\t200000000\tApple\tOrta\n2013\tTopsy\t200000000\tApple\tOrta\n2013\tPtch\t6500000\tYahoo\tDusuk\n2017\tHexadite\t100000000\tMicrosoft\tOrta\n2014\tParature\t100000000\tMicrosoft\tOrta\n2014\tLittle Eye Labs\t15000000\tFacebook\tDusuk\n2014\tBranch\t15000000\tFacebook\tDusuk\n2014\tDeepMind Technologies\t625000000\tGoogle\tYuksek\n2017\tCloudyn\t50000000\tMicrosoft\tOrta\n2014\tOculus VR\t2000000000\tFacebook\tYuksek\n2014\tAscenta\t20000000\tFacebook\tOrta\n2014\tGnip\t134000000\tTwitter\tOrta\n2014\tTapCommerce\t100000000\tTwitter\tOrta\n2014\tNamo Media\t50000000\tTwitter\tOrta\n2014\tSkybox Imaging\t500000000\tGoogle\tYuksek\n2014\tDropcam\t555000000\tGoogle\tYuksek\n2014\tSwell\t30000000\tApple\tOrta\n2014\tFlurry\t200000000\tYahoo\tOrta\n2017\tHTC (portions)\t1100000000\tGoogle\tYuksek\n2014\tBookpad\t15000000\tYahoo\tDusuk\n2017\tVrvana\t30000000\tApple\tOrta\n2014\tBrightRoll\t640000000\tYahoo\tYuksek\n2015\tSemetric\t50000000\tApple\tOrta\n2015\tSunrise Atelier, Inc.\t100000000\tMicrosoft\tOrta\n2015\tN-trig\t200000000\tMicrosoft\tOrta\n2015\tPeriscope (app)\t100000000\tTwitter\tOrta\n2015\tLinX\t20000000\tApple\tOrta\n2015\tTellApart\t479000000\tTwitter\tYuksek\n2015\tPebbles\t60000000\tFacebook\tOrta\n2015\tAdallom\t320000000\tMicrosoft\tYuksek\n2015\tPolyvore\t160000000\tYahoo\tOrta\n2015\tMerge Healthcare Inc.\t1000000000\tIBM\tYuksek\n2015\tCleversafe\t1309000000\tIBM\tYuksek\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=4"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674681020_-103104161","id":"20190604-215801_1623048686","dateCreated":"2019-06-04T21:58:01+0300","dateStarted":"2019-06-04T21:59:49+0300","dateFinished":"2019-06-04T21:59:49+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17168"},{"text":"%sql --- Problem 7: Ana şirketlerin 2015 yılında yaptığını satın alma sayısını gösteriniz. ---\nselect distinct ParentCompany, Count(AcquisitionID) from acquisitions\nwhere AcquisitionYear=2015 group by ParentCompany","user":"anonymous","dateUpdated":"2019-06-04T22:00:35+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"ParentCompany":"string","count(AcquisitionID)":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"ParentCompany\tcount(AcquisitionID)\nYahoo\t1\nIBM\t13\nTwitter\t8\nGoogle\t15\nMicrosoft\t19\nApple\t10\nFacebook\t6\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=5","http://10.40.193.31:4040/jobs/job?id=6","http://10.40.193.31:4040/jobs/job?id=7","http://10.40.193.31:4040/jobs/job?id=8","http://10.40.193.31:4040/jobs/job?id=9"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674710851_-153832917","id":"20190604-215830_1841935866","dateCreated":"2019-06-04T21:58:30+0300","dateStarted":"2019-06-04T22:00:26+0300","dateFinished":"2019-06-04T22:00:31+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17169"},{"text":"%sql --- Problem 8: Ana şirketlerin 2000-2018 yılları arasında yıl başı satın alma ortalamalarını bulunuz. ---\nselect distinct ParentCompany, Count(AcquisitionID)/18 as Average_Acquisition from acquisitions\nwhere AcquisitionYear>=2000 and AcquisitionYear<2018 group by ParentCompany","user":"anonymous","dateUpdated":"2019-06-04T22:05:33+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"ParentCompany":"string","Average_Acquisition":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"ParentCompany\tAverage_Acquisition\nYahoo\t5.666666666666667\nIBM\t9.0\nTwitter\t2.9444444444444446\nGoogle\t11.88888888888889\nMicrosoft\t8.944444444444445\nApple\t4.666666666666667\nFacebook\t3.6666666666666665\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=15","http://10.40.193.31:4040/jobs/job?id=16","http://10.40.193.31:4040/jobs/job?id=17","http://10.40.193.31:4040/jobs/job?id=18","http://10.40.193.31:4040/jobs/job?id=19"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674819532_-217174782","id":"20190604-220019_425815973","dateCreated":"2019-06-04T22:00:19+0300","dateStarted":"2019-06-04T22:05:33+0300","dateFinished":"2019-06-04T22:05:36+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17170"},{"text":"%sql --- Problem 9: Big Data alanına en çok yatırım yapan şirketi bulunuz. ---\nselect distinct ParentCompany, Count(AcquisitionID) from acquisitions where Business like \"%big data%\" group by ParentCompany","user":"anonymous","dateUpdated":"2019-06-04T22:10:01+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"ParentCompany":"string","count(AcquisitionID)":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"ParentCompany\tcount(AcquisitionID)\nIBM\t1\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=30","http://10.40.193.31:4040/jobs/job?id=31","http://10.40.193.31:4040/jobs/job?id=32","http://10.40.193.31:4040/jobs/job?id=33","http://10.40.193.31:4040/jobs/job?id=34"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674853602_-117593341","id":"20190604-220053_1959298902","dateCreated":"2019-06-04T22:00:53+0300","dateStarted":"2019-06-04T22:10:01+0300","dateFinished":"2019-06-04T22:10:03+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17171"},{"text":"%sql --- Problem 10: Yıla göre satın alma miktarlarını bulup en çok satın alan şirketi satın alma sayısına göre büyükten küçüğe sıralayınız. ---\nselect distinct AcquisitionYear, Count(AcquisitionID) as count from acquisitions\ngroup by AcquisitionYear order by count desc","user":"anonymous","dateUpdated":"2019-06-04T22:12:26+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"AcquisitionYear":"string","count":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"AcquisitionYear\tcount\n2014\t96\n2013\t94\n2015\t72\n2010\t67\n2011\t59\n2016\t54\n2006\t53\n2012\t52\n2007\t50\n2005\t45\n2008\t39\n2017\t34\n2004\t27\n2009\t25\n2002\t23\n2003\t20\n1999\t19\n2000\t16\n2001\t16\n1997\t12\n1998\t11\n1996\t8\n2018\t7\n1995\t5\n1988\t4\n1994\t4\n1987\t1\n1991\t1\n1992\t1\n1989\t1\nnull\t0\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=36"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559674880718_1640607034","id":"20190604-220120_1012720141","dateCreated":"2019-06-04T22:01:20+0300","dateStarted":"2019-06-04T22:12:26+0300","dateFinished":"2019-06-04T22:12:28+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17172"},{"text":"%sql --- Problem 11: 2015 yılında 7 veya daha fazla satın alma yapan şirketleri gösteriniz. ---\nselect distinct ParentCompany, Count(AcquisitionID) as Acquisition_Number\nfrom acquisitions where AcquisitionYear=2015 group by ParentCompany having Acquisition_Number>=7","user":"anonymous","dateUpdated":"2019-06-04T22:13:20+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"ParentCompany":"string","Acquisition_Number":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"ParentCompany\tAcquisition_Number\nIBM\t13\nTwitter\t8\nGoogle\t15\nMicrosoft\t19\nApple\t10\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=37","http://10.40.193.31:4040/jobs/job?id=38","http://10.40.193.31:4040/jobs/job?id=39","http://10.40.193.31:4040/jobs/job?id=40","http://10.40.193.31:4040/jobs/job?id=41"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559675084198_2097098604","id":"20190604-220444_1303371764","dateCreated":"2019-06-04T22:04:44+0300","dateStarted":"2019-06-04T22:13:13+0300","dateFinished":"2019-06-04T22:13:16+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17173"},{"text":"%sql --- Problem 12: Ana şirketlerin 2015 ve 2016 yıllarında satın almalara harcadığı toplam para miktarını bulunuz. ---\nselect distinct ParentCompany, SUM(VALUE) as Total_Spending\nfrom acquisitions where (AcquisitionYear=2016 or AcquisitionYear=2015) and VALUE>0\ngroup by ParentCompany","user":"anonymous","dateUpdated":"2019-06-04T22:14:20+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false,"setting":{"table":{"tableGridState":{},"tableColumnTypeState":{"names":{"ParentCompany":"string","Total_Spending":"string"},"updated":false},"tableOptionSpecHash":"[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]","tableOptionValue":{"useFilter":false,"showPagination":false,"showAggregationFooter":false},"updated":false,"initialized":false}},"commonSetting":{}}}},"editorSetting":{"language":"sql","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/sql"},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"ParentCompany\tTotal_Spending\nYahoo\t160000000\nIBM\t2509000000\nTwitter\t729000000\nGoogle\t1105000000\nMicrosoft\t870000000\nApple\t270000000\nFacebook\t60000000\n"},{"type":"TEXT","data":""}]},"runtimeInfos":{"jobUrl":{"propertyName":"jobUrl","label":"SPARK JOB","tooltip":"View in Spark web UI","group":"spark","values":["http://10.40.193.31:4040/jobs/job?id=42","http://10.40.193.31:4040/jobs/job?id=43","http://10.40.193.31:4040/jobs/job?id=44","http://10.40.193.31:4040/jobs/job?id=45","http://10.40.193.31:4040/jobs/job?id=46"],"interpreterSettingId":"spark"}},"apps":[],"jobName":"paragraph_1559675593851_-591178690","id":"20190604-221313_1209235746","dateCreated":"2019-06-04T22:13:13+0300","dateStarted":"2019-06-04T22:14:14+0300","dateFinished":"2019-06-04T22:14:16+0300","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:17174"},{"text":"References;\n[0] https://stackoverflow.com/\n[1] https://medium.com/@deniseschlesinger/querying-our-data-lake-in-s3-using-zeppelin-and-spark-sql-be50c3b7a613\n[2] https://www.youtube.com/watch?v=4oiPmaBlJNA\n[3] https://hortonworks.com/tutorial/learning-spark-sql-with-zeppelin/\n[4] http://www.makedatauseful.com/python-spark-sql-zeppelin-tutorial/\n","user":"anonymous","dateUpdated":"2019-06-04T22:19:03+0300","config":{"colWidth":12,"fontSize":9,"enabled":true,"results":{},"editorSetting":{"language":"scala","editOnDblClick":false,"completionKey":"TAB","completionSupport":true},"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"apps":[],"jobName":"paragraph_1559675623090_2140755380","id":"20190604-221343_510555014","dateCreated":"2019-06-04T22:13:43+0300","status":"READY","progressUpdateIntervalMs":500,"$$hashKey":"object:17175"}],"name":"KA7_ApacheSparkSQL","id":"2ED3HFEN8","noteParams":{},"noteForms":{},"angularObjects":{"spark:shared_process":[]},"config":{"isZeppelinNotebookCronEnable":false,"looknfeel":"default","personalizedMode":"false"},"info":{}}