@KrunalG you can deploy using databricks PAT (impersonation technique) or AAD authentication of a service principal. SP AAD token is safest as the default expiry time set to 60 mins. Refer to my detailed explanation in the below.
@TejeshS You can alternatively use, mask function instead of hardcoding with value 'Masked'.CREATE OR REPLACE VIEW masked_employees AS
SELECT
Name,
Department,
CASE
WHEN current_user() IN ('ab***@gmail.com', 'xy***@gmail.com') THEN Salary
ELSE mask(...
@Srujanm01 Can you try the cron expression "0 0 0 1/14 * ? *"It doesRun at 00:00:00 (midnight)Every 14 daysOn any day of the weekIn any monthRefer to the below screens.Let me know for anything, else mark it as a Solution.
Can you try with this additional config? jdbcUrl = "jdbc:sqlserver://{0}:{1};database={2};trustServerCertificate=true;loginTimeout=30;hostNameInCertificate=*.database.windows.net;".format(jdbcHostname,jdbcPort,jdbcDatabase)