cancel
Showing results for 
Search instead for 
Did you mean: 
anandreddy23
New Contributor II
since ‎08-16-2023
‎12-01-2023

User Stats

  • 4 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

from pyspark.sql import SparkSessionfrom pyspark import SparkContext, SparkConffrom pyspark.storagelevel import StorageLevelspark = SparkSession.builder.appName('TEST').config('spark.ui.port','4098').enableHiveSupport().getOrCreate()df4 = spark.sql('...
Hi All,hive> create table UK ( a decimal(10,2)) ;hive> create table IN ( a decimal(10,5)) ;hive> create view T as select a from UK union all select a from IN ;above all statements executes successfully in Hive and return results when select statement...
Kudos given to