About 50 results
Open links in new tab
  1. Databricks shows REDACTED on a hardcoded value - Stack Overflow

    Mar 16, 2023 · It's not possible, Databricks just scans entire output for occurences of secret values and replaces them with " [REDACTED]". It is helpless if you transform the value. For example, like you …

  2. Is there a way to use parameters in Databricks in SQL with parameter ...

    Sep 29, 2024 · EDIT: I got a message from Databricks' employee that currently (DBR 15.4 LTS) the parameter marker syntax is not supported in this scenario. It might work in the future versions. …

  3. Printing secret value in Databricks - Stack Overflow

    Nov 11, 2021 · 2 Building on @camo's answer, since you're looking to use the secret value outside Databricks, you can use the Databricks Python SDK to fetch the bytes representation of the secret …

  4. Databricks Permissions Required to Create a Cluster

    Nov 9, 2023 · Can someone let me know what permissions are required to allow a user to create a cluster. Also, is it safe to assume that 'Can manage', has higher permissions that 'Can restart' or …

  5. Databricks shared access mode limitations - Stack Overflow

    Oct 2, 2023 · Databricks shared access mode limitations Ask Question Asked 2 years, 4 months ago Modified 2 years, 4 months ago

  6. REST API to query Databricks table - Stack Overflow

    Jul 24, 2022 · Is databricks designed for such use cases or is a better approach to copy this table (gold layer) in an operational database such as azure sql db after the transformations are done in pyspark …

  7. Databricks: How do I get path of current notebook?

    Databricks is smart and all, but how do you identify the path of your current notebook? The guide on the website does not help. It suggests: %scala dbutils.notebook.getContext.notebookPath res1: ...

  8. Do you know how to install the 'ODBC Driver 17 for SQL Server' on a ...

    Apr 4, 2020 · By default, Azure Databricks does not have ODBC Driver installed. Run the following commands in a single cell to install MS SQL ODBC Driver on Azure Databricks cluster.

  9. Installing multiple libraries 'permanently' on Databricks' cluster ...

    Feb 28, 2024 · Installing multiple libraries 'permanently' on Databricks' cluster Ask Question Asked 2 years ago Modified 1 year, 11 months ago

  10. Databricks CREATE VIEW equivalent in PySpark - Stack Overflow

    Jun 24, 2023 · CREATE OR REPLACE VIEW myview as select last_day(add_months(current_date(),-1)) Can someone let me know the equivalent of the above is in PySpark? Basically, I need to create …