0

ndjson ファイルを Navicat または Bigquery にインポートしようとしています。

どちらにも「文字列の配列」を許可するオプションがないようです

これを達成する方法はありますか?または、これを可能にする別のツールがあります。JSON Value UUID string databaseID integer title string alternativeTitle array of strings contributor array of objects contributor.contributorName string contributor.contributorType string contributorRole array of strings contributor.contributorURI string date array of strings dateStart string dateEnd string language array of strings description string note array of objects note.type string note.text string subjectTopical array of objects subjectTopical.text string subjectTopical.URI string subjectName array of objects subjectName.text string subjectName.URI string subjectGeographic array of objects subjectGeographic.text string subjectGeographic.URI string subjectTemporal array of objects subjectTemporal.text string subjectTemporal.URI string subjectTitle array of objects subjectTitle.text string subjectTitle.URI string resourceType array of strings genre array of objects genre.text string genre.URI string identifierBNumber string identifierAccessionNumber string identifierCallNumber string identifierISBN string identifierISSN string identifierInterviewID string identifierPostcardID string identifierLCCN string identifierOCLCRLIN string physicalDescriptionExtent array of strings physicalDescriptionForm array of strings publisher array of strings placeOfPublication array of strings collectionUUID string containerUUID string collectionTitle string containerTitle string parentHierarchy string numberOfCaptures integer - string captures array of strings digtalCollectionsURL string

4

1 に答える 1

1

BigQuery はネストされたフィールドと繰り返しフィールドをサポートしているため、REPEATED モードで STRING 型のフィールドを持つことができます

https://cloud.google.com/bigquery/preparing-data-for-bigquery で詳細を参照し、特にhttps://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.loadconfiguration.load.schema.fields[].modeで確認してください

于 2016-02-18T19:31:54.567 に答える