Databricks Unity Catalog SQL Commands

This post is basic commands you will need to know for working with Unity Catalog.

Display Current Metastore
  1. SELECT CURRENT_METASTORE();
Display Current Catalog
  1. SELECT CURRENT_CATALOG();
Create Catalog
  1. CREATE CATALOG IF NOT EXISTS <Catalog_Name> COMMENT 'A COMMENT';
Create Catalog With Location
  1. CREATE CATALOG IF NOT EXISTS <Catalog_Name> MANAGED LOCATION 'abfss://<METASTORE_CONTAINER_NAME>@<STORAGE_ACCOUNT>.dfs.core.windows.net/<CATALOG_NAME>' COMMENT 'A COMMENT';
Describe Catalog
  1. DESCRIBE CATALOG <Catalog_Name>;
Create Schema
  1. CREATE SCHEMA IF NOT EXISTS <SCHEMA_NAME> COMMENT '<COMMENT>';
Create Schema With Location
  1. CREATE SCHEMA IF NOT EXISTS <SCHEMA_NAME> MANAGED LOCATION 'abfss://<METASTORE_CONTAINER_NAME>@<STORAGE_ACCOUNT>.dfs.core.windows.net/<CATALOG_NAME>/<SCHEMA_NAME>' COMMENT '<COMMENT>';
Show All Storage Credentials
  1. SHOW STORAGE CREDENTIALS;
Describe Credential
  1. DESCRIBE STORAGE CREDENTIAL <CREDENTIAL_NAME>;
Create External Location

You will first need a storage credential.

You can reference down to the full table path or keep it at the container

  1. CREATE EXTERNAL LOCATION IF NOT EXISTS <NAME>
  2. URL 'abfss://<COTNAINER>@<STORAGE_ACCOUNT>.dfs.core.windows.net/'
  3. WITH (STORAGE CREDENTIAL <CREDENTIAL_NAME>)
  4. COMMENT '<COMMENT>';
Create External Table
  1. CREATE TABLE <CATALOG_NAME>.<SCHEMA_NAME>.<TABLE_NAME>
  2. USING <FORMAT>
  3. LOCATION 'abfss://<COTNAINER>@<STORAGE_ACCOUNT>.dfs.core.windows.net/FOLDER/PATH;'
Grant Create Storage Credential on Metastore
  1. GRANT CREATE STORAGE CREDENTIAL ON METASTORE TO `<USER>`;
Grant Permission to Create External Locations on Storage Credential
  1. GRANT CREATE EXTERNAL LOCATION ON STORAGE CREDENTIAL <CREDENTIAL_NAME> TO `<USER>`;
Grant Permission to Create External Location On Metastored
  1. GRANT CREATE EXTERNAL LOCATION ON METASTORE TO `<USER>`;
Grant Permission to Use Catalog
  1. GRANT USE_CATALOG ON CATALOG <CATALOG_NAME> TO `<USER>`;
Show all Grants On Metastore
  1. SHOW GRANTS `<USER>` ON METASTORE;
Grant Permission to Use Schema
  1. GRANT USE_SCHEMA ON SCHEMA <CATALOG_NAME>.<SCHEMA_NAME> TO `<USER>`;
Grant Permission to Create Table
  1. GRANT CREATE TABLE ON SCHEMA <CATALOG_NAME>.<SCHEMA_NAME> TO <USER>;

 

Hive: Tables

This tutorial will show you some common usage for working with tables. If you have no installed Hive yet please follow this tutorial.

Show Tables:

  1. SHOW TABLES;
    SHOW TABLES LIKE '*test*';

Table Creation:

  1. CREATE TABLE test (
    columnA STRING,
    columnB VARCHAR(15),
    columnC INT,
    columnD TIMESTAMP,
    columnE DATE
    )
    STORED AS ORC;

Table Creation with Partitioning:

  1. CREATE TABLE test_partition (
    columnA STRING,
    columnB VARCHAR(15),
    columnC INT,
    columnD TIMESTAMP,
    columnE DATE
    )
    PARTITIONED BY (columnF INT)
    STORED AS ORC;

Inline Table Creation:

  1. CREATE TABLE test_inline STORED AS ORC AS
    SELECT *
    FROM test;

Temporary Table Creation:

  1. CREATE TEMPORARY TABLE temp (
    columnA STRING,
    columnB VARCHAR(15),
    columnC INT,
    columnD TIMESTAMP,
    columnE DATE
    )
    STORED AS ORC;

DESC Table:
This will show you the basic definition of a table.

  1. DESC test;

DESC EXTENDED Table:
This will show you the extended definition of a table.

  1. DESC EXTENDED test;

Drop Table:

  1. DROP TABLE IF EXISTS temp;

HBASE & Java: Delete a Table

This tutorial will guide you through how to delete a HBASE table using Java 8. Make sure you first follow this tutorial on connecting to HBASE.

Import:

  1. import org.apache.hadoop.hbase.client.Admin;

Delete:

  1. //You must first disable the table
  2. conn.getAdmin().disableTable(TableName.valueOf("myTable"));
  3.  
  4. //Now you can delete the table
  5. conn.getAdmin().deleteTable(TableName.valueOf("myTable"));

HBASE & Java: Search for Data

This tutorial will give you a quick overview of how to search for data using HBASE. If you have not done so yet. Follow the following two tutorials on HBASE: Connecting and HBASE: Create a Table.

Search for Data:

Basically we have to scan the table for data. So we must first setup a scan object then search for the data.

  1. import org.apache.hadoop.hbase.client.Result;
  2. import org.apache.hadoop.hbase.client.ResultScanner;
  3. import org.apache.hadoop.hbase.client.Scan;
  4. import org.apache.hadoop.hbase.Cell;
  5. import org.apache.hadoop.hbase.client.Table;
  6. import org.apache.hadoop.hbase.TableName;
  7. import org.apache.hadoop.hbase.util.Bytes;
  8.  
  9. //Lets setup our scan object.
  10. final Scan scan = new Scan();
  11. //Search a particular column
  12. scan.addColumn(Bytes.toBytes("columnFamily"), Bytes.toBytes("columnName"));
  13. //Check the row key prefix
  14. scan.setRowPrefixFilter(Bytes.toBytes("rowkey"));
  15.  
  16. final TableName table = TableName.valueOf(yourTableName);
  17.  
  18. //Get the table you want to work with. using the connection from the tutorial above.
  19. final Table table = conn.getTable(table);
  20. //Create our scanner based on the scan object above.
  21. final ResultScanner scanner = table.getScanner(scan);
  22.  
  23. //Now we will loop through our results
  24. for (Result result = scanner.next(); result != null; result = scanner.next()) {
  25. //Lets get our row key
  26. final String rowIdentifier = Bytes.toString(result.getRow());
  27.  
  28. //Now based on each record found we will loop through the available cells for that record.
  29. for (final Cell cell : result.listCells()) {
  30. //now we can do whatever we need to with the data.
  31. log.info("column {} value {}", Bytes.toString(cell.getQualifierArray(), cell.getQualifierOffset(), cell.getQualifierLength()), Bytes.toString(cell.getValueArray(), cell.getValueOffset(), cell.getValueLength()));
  32. }
  33. }
  34.  

HBASE & Java: Create a Table

This tutorial will guide you through how to create a HBASE table using Java 8. Make sure you first follow this tutorial on connecting to HBASE.

Table Exists:

This checks if the table already exists in HBASE.

  1. import org.apache.hadoop.hbase.TableName;
  2.  
  3. final TableName table = TableName.valueOf(yourTableName);
  4.  
  5. //Use the connection object to getAdmin from the connection tutorial above.
  6. conn.getAdmin().tableExists(table);

Create Table:

In the most basic example of creating a HBASE table you need to know the name and the column families. A column family is columns grouped together. The data is related in some way and stored together on disk. Notice how we don’t define columns in the table design. Columns are added as we put data. Which I will give example below.

  1. import org.apache.hadoop.hbase.HColumnDescriptor;
  2. import org.apache.hadoop.hbase.HTableDescriptor;
  3. import org.apache.hadoop.hbase.TableName;
  4.  
  5. final TableName table = TableName.valueOf(yourTableName);
  6.  
  7. final HTableDescriptor hTableBuilder = new HTableDescriptor(table);
  8. final HColumnDescriptor column = new HColumnDescriptor(family);
  9. hTableBuilder.addFamily(column);
  10.  
  11. //Use the connection object to getAdmin from the connection tutorial above.
  12. conn.getAdmin().createTable(hTableBuilder);

Get a Table:

This will retrieve a table from HBASE so you can use it to put data, etc.

  1. import org.apache.hadoop.hbase.TableName;
  2. import org.apache.hadoop.hbase.client.Table;
  3.  
  4. final TableName table = TableName.valueOf(yourTableName);
  5.  
  6. //Use the connection object from the connection tutorial above.
  7. final Table table = conn.getTable(table);

Put Data:

Now we will put data into the table we have reference to above. Notice how the columns are referenced.

  1. import org.apache.hadoop.hbase.client.Put;
  2. import org.apache.hadoop.hbase.util.Bytes;
  3.  
  4. final byte[] rowKey = Bytes.toBytes("some row identifier");
  5. final byte[] columnFamily = Bytes.toBytes("myFamily");
  6. final byte[] columnName = Bytes.toBytes("columnName");
  7. final byte[] data = Bytes.toBytes(myData);
  8.  
  9. final Put put = new Put(rowKey);
  10. put.addColumn(columnFamily, columnName, data);
  11.  
  12. //Insert the data.
  13. table.put(put);
  14. //Close the table.
  15. table.close();