Estrai dati Fusion da una connessione BICC a un notebook

Dopo aver connesso Fusion Data al tuo Oracle AI Data Platform Workbench da una connessione BICC, puoi estrarre tali dati da un notebook.

  1. Dalla home page, passare a un notebook.
  2. Nel notebook, immettere il codice Spark per estrarre i dati. Ad esempio:
    spark.read.format("datalake") \
        .option("type", "FUSION_BICC") \
        .option("fusion.service.url", "https://<saas cloud host name>:<saas cloud port number>") \
        .option("user.name", "john.smith") \
        .option("password", "**password**") \
        .option("schema", "Financial") \
        .option("fusion.external.storage", "FA4IDL") \
        .option("datastore", "CrmAnalyticsAM.GeographiesAnalyticsAM.Geography") \
        .load().show()
  3. Leggere i dati in un data frame e salvare il data frame come tabella delta in un catalogo.