How to get back old dataset

0

In AWS Quicksight, I have created a joined dataset and visualised, but unknowingly I have deleted the one of the data source. in the joined dataset, when I edit it, I tried to delete dataset or replace that with new dataset, after replacing the dataset and giving the relationship as before, I am unable to save and publish, its showing error like this action cant be performed. How can I remove this error?

  • I am trying to delete the join clause, but I cannot perform that action.

Yasha
質問済み 1年前261ビュー
1回答
0

https://docs.aws.amazon.com/quicksight/latest/user/change-a-data-set.html https://stackoverflow.com/questions/71684515/quicksight-changing-data-source-for-a-dataset

You can follow the above links for your problem in your case maybe using AWS CLI works for you

AWS CLI commands to list your data sources and update the data source with a JSON file​

aws quicksight list-data-sources --aws-account-id <aws-account-id>
aws quicksight update-data-source --generate-cli-skeleton input > update-data-source.json
aws quicksight update-data-source --cli-input-json file://update-data-source.json

Use the AWS Quicksight CLI to programmatically deploy new and updated datasets and data sources. This requires the usage of create-data-source and create-data-set commands.

Describe the dataset and get the PhysicalTableMap JSON from the output, create an update_dataset.json and copy the PhysicalTableMap JSON from above steps. Update the DataSource Arn (with your new data source) in this JSON. Finally, update the DataSet using AWS CLI commands​

aws quicksight describe-data-set --aws-account-id <accountid> --data-set-id <datasetid>
aws quicksight update-data-set --aws-account-id <accountid> --data-set-id <datasetid> --name <DatasetName> --physical-table-map file://update_dataset.json --import-mode SPICE
profile picture
エキスパート
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ