-
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 · -
Re: How to connect to shared drive to extract files dynamically from there
You should be able to mount your share drive in your Dataiku box. Then create a Flie System connection pointing to the network share mounting point.1 ·