cancel
Showing results for 
Search instead for 
Did you mean: 
eriodega
Contributor
since ‎08-06-2024
a week ago

User Stats

  • 14 Posts
  • 0 Solutions
  • 3 Kudos given
  • 4 Kudos received

User Activity

I've been using the system.access.table_lineage table, and I'm trying to understand when the source and target tables are defined.For example, picking a specific job run and looking at the lineage:selectsource_type, source_table_full_name, target_typ...
What is the syntax in SQL for creating a widget in a notebook with a label?This documentation says "The last argument is label, an optional value for the label shown over the widget text box or dropdown."The one example provided on that page doesn't ...
I am trying to do a regular expression replace in a Databricks notebook.The following query works fine in a regular query (i.e. not running it in a cell in a notebook):  select regexp_replace('abcd', '^(.+)c(.+)$', '$1_$2') --normally outputs ab_d  H...