The background to this is simple, you have a parquet file and want to inspect the schema. The most obvious way is running spark-shell or […]
Category: Snippets
git merge conflict favour incoming changes
There are one of those changes that you just want to fix the issues brought about by a merge conflict later. The priority is a […]
List all partitions in an Oracle DB table
select table_owner, partition_name from all_tab_partitions where table_name = table_name The partition_name can be used as follows SELECT * FROM table_name partition(partition_name) More information can be […]