Hey @Mulder81 You can try this article https://medium.com/@mahijain9211/creating-a-python-class-for-generating-pdf-tables-from-a-pandas-dataframe-using-fpdf2-c0eb4b88355c It uses pandas and fpdf. Also you need to read about temporary place/path whe...
Hey @Mulder81 ,After generating file you can copy it to dediacted blob storage using below command.dbutils.fs.cp(source_path, destination_path)You can also try saving file in desired path (blob storage) but there can be some obstacles BR,Piotrek
Hi @LeenB For example each cell execution you can build up with try except command. Example belowtry: print("Hello world") #your code of each cellexcept Exception as e: print("Issue with printing hello world")For sure it is not recommended ...
Hey @jeremy98 Based on some old article it looks it cannot be done:There are a few caveats you should keep in mind when adopting this new feature. Identity columns cannot be added to existing tables; the tables will need to be recreated with the new ...