-
Re: Need to import multiple pdf files from sharepoint library
In order to connect Dataiku to Sharepoint or OneDrive you will need an admin to setup the Sharepoint plugin or the OneDrive plugin. In Dataiku v13 you can also now use the built-in Sharepoint connect…1 · -
Re: Automating dataset exports on a monthly basis
Hi, in general exporting to Excel is a dark pattern, specially if you are doing it in a scheduled basis which indicates some sort of business or system process is depending on this file. It will be m…1 · -
How to execute a MS-SQL stored procedure in Dataiku
Not a question but an answer as I couln't find any relevant posts. I solved this problem using a SQLExecutor2 in a Python recipe: from dataiku import SQLExecutor2 executor = SQLExecutor2(connect…1 · -
Re: Ability to zip files from one folder to another
You should be able to do this with a Python recipe or a Shell recipe. Here is my shell recipe: Also if you create a connection for your SFTP site you should also be able to create a managed folder in…1 · -
Re: how to plot a chart by row
I start with your data: I use a Prepare recipe to transpose the date column: Then I can chart it as required:1 ·