Hi @Pratikmsbsvm , from what I understand, you have a lakehouse on Azure databricks and would like to share this data with another databricks account or workspace. If Unity Catalog is enabled on your Azure databricks account, you can leverage Delta S...
@data_learner1 , Other alternative to track the table renames would be snapshots. You can run 'SHOW TABLES' on a catalog and save the output on daily basis and compare current vs previous to find out dropped or renamed tables
Hi @data_learner1 ,Audit logs focus on security and usage monitoring such as user access, table read/write events. They don't track schema level changes.To track schema level changes, delta transaction logs will be the best to use. The transaction lo...
Hi @bhanu_dp , To retrieve accidental deletes, you can -1. Restore it to a previous version using time travel featurehttps://docs.databricks.com/gcp/en/delta/history#restore-a-delta-table-to-an-earlier-state2. Use UNDROP commandhttps://docs.databrick...
@glevin , That is unfortunate. Here are few other options you could try1. Please ensure you are using latest version of the JDBC driver2. Try setting the fetch size before the query execution instead of the url as belowSET spark.databricks.jdbc.fetch...