-
Re: modify postgre SQL table schema
Hi @KT , I'm glad to hear that this seems to be working for you! For the "Reload schema from table" question, there isn't quite an equivalent of this function in the Python API. As of DSS 9…1 · -
Re: modify postgre SQL table schema
Hi @KT , I suspect that your Postgres table name is slightly different from the dataset name you see in DSS. By default the PROJECT_KEY is prepended to dataset names in table names in the underlying …1 · -
Re: for monitoring is possible show all info project/scenario/trigger on python
Hi @AGdB , I think it might work well for you to use the following method, writing all scenario setting objects to a folder, and then creating a dataset out of the folder. Here's an example: I create…2 · -
Re: modify postgre SQL table schema
Hi @KT , To follow up on the query_to_df() example, here's an example of executing an ALTER TABLE statement with query_to_df(). I agree that it would be helpful to have additional examples in the doc…2 · -
Re: Append Data without drop table with python
Hi @tamvap , You can use the following to use write_dataframe() to write in "append mode" from a webapp: mydataset = dataiku.Dataset("MY_DATASET") # allows for appending mydataset…6 ·