-
Re: Overwrite only changed data set without scanning or reading all data set
If you had a timestamp then you would need to build a delta pattern that might look a little like this: 1- Full sync into a master dataset 2 - Store the latest timestamp that is in your dataset into …1 · -
Re: Can DataIku Output to XML
Hi mmc12, As far as I know, this is not natively supported. However, you can use a python recipe and save your XML file to a folder. The code below illustrates how you can get a handle on a dataset, …1 · -
Re: Code sample for setting (granting) permissions on projects for a specific group
Hi tomas, Here's an example of how this might work, the name of groups and projects is for illustration purposes. # setting client and loading project client = dataiku.api_client() project = client.g…1 · -
Re: String dates to datetime format
Hi @vho Yes, indeed. When you have your dataset on the flow, you can use a Prepare recipe. Inside of it, you'll be able to perform many transformations. One of them is the parsing of dates from strin…3 · -
Re: Transform the table with min and max
Hi @sasidharp You will need to recipes to compute this. The first will be a prepare recipe that uses the Fold multiple columns processor, play with it, should be straightforward. The next recipe will…1 ·