1831. Maximum Transaction Each DaySQL Schema Table: Transactions +----------------+----------+ | Column Name | Type | +----------------+----------+ | transaction_id | int | | day | datetime | | amount | int | +----------------+----------+ transacti...Dec 25, 2022·2 min read
Shell Scripting part-1 | What is Shell and Types of ShellsWhat is Shell? 1) Shell is responsible to read commands/applications provided by user. 2) Shell will check whether command is valid or not and whether it is properly used or not. If everything is proper then shell interprets (converts) that command...Nov 20, 2022·2 min read
Hbase hive integrationProblem statement : Integrate Hive and HBase in a way that if you load data in hive table that should reflect in your HBase table and vice versa. Create a file in cloudera - vi testdata.csv 1, 'hyd'25000 2, 'blr', 30000 3,'kol',50000 we want to st...Nov 20, 2022·2 min read