-
This problem is occurring on the Datiaku platform. What can I do to solve it?
-
add an incremental column in dataset
requirement is to add an incremental column in datset, it should not be an identity column however data in it will be unique.
-
Export and Import of Code Studio Template
Hi, On Dataiku 12, I do not see a way to export a code studio template. How can I export a code studio template and import it into a new Dataiku instance? thx Operating system used: Windows 10 Operating system used: Windows 10
-
How to build a 'Zero Records Check'
In Alteryx I was able to build a zero records check that made it possible for me to have a "no data" entry for a particular path in my workflow. This is used in reporting to show that there were no items in that particular section. Count Records Append the record count (could include 0) Replace Nulls with 0 or Blank…
-
How to merge 2 tables, by dates comparison et precedent constraints
hello. I have 2 tables, the first one shows vehicules consumption records |ID_VHL| date | Type_Of_Record| Value_Of_Record| | A | 05/01/2024 | hour | 10 | | A | 15/01/2024 | km | 2 | | A | 05/08/2024 | hour | 20 | | A | 15/09/2024 | km | 28 | and the second one represents the distribution of these vehicles, variable over…
-
How to download a document for all the Scenarios implemented in Project
Hi, for example we can export flow in document format. Is their a similar way to export all scenarios info in document format. Thanks
-
How to change the underlying table in a dataset?
I am using this code to change the table associated with a dataset. The table is getting changed as I verified from the dataset settings, but I am getting this error 'Column name not matching between query and schema'. But when I click on Test Table in connection settings, the dataset is getting updated. I am using this…
-
Can't create a code env from a newer Python version (local DSS installation)
Hi, I installed the local free version of Dataiku on macOS 15.0.1. The Dataiku DSS version is 13.2.1. By default, I can only create Python code env for Python 3.7. The rest of the Python versions are marked as "Not available" in the code env creation form. I need a higher version than Python 3.7 to create a code env for…
-
How to manage dss nodes through python API when using fleetmanager
hello I want to manage fleetmanager's resources using API. After searching, I found out that only pythonapi was available, and a problem occurred during testing. I received the following error message: import dataikuapi key_id = "?" key_secret = "?" # <Cloud vendor> is either AWS, Azure or GCP client =…
-
switch function not working with 'dayOfWeek'?
Hi all, I tried to apply a condition to find the latest previous weekday date, so for example, if today is Sunday or Monday, then it will Friday, for other days it will just be yesterday. I tried using switch function like this: switch( datePart(now(), 'dayofweek'), 7, trunc(inc(asDate(now(), 'yyyy-MM-dd'), -2,…