1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Watson StudioのJupyter notebookからSQL Queryへのクエリー実行

Last updated at Posted at 2021-10-25

以下の記事でWatson StudioでSQL Queryで登録した表にアクセスしました。

Watson StudioからSQLQueryへのアクセス - Qiita

この記事ではさらにJupyter notebookのPyhonからSQL Queryでクエリー実行を行います。
まずSQLQueryのライブラリーを導入します。

!pip install --upgrade ibmcloudsql

次にデータアクセスのメニューを開き、接続のタブを開きます。そして、前の記事で作成した接続オブジェクトを選択し、「コードに挿入」を選びます。

image.png

すると以下のようなコードが自動生成されます。

# @hidden_cell
# The following code contains the credentials for a connection in your Project.
# You might want to remove those credentials before you share your notebook.

from ibm_watson_studio_lib import access_project_or_space
wslib = access_project_or_space()
sqlquerya4_credentials = wslib.get_connection("sqlquerya4")

取得されたオブジェクトsqlquerya4_credentials には以下のような資格情報が入っています。

image.png

次にSQL Queryへの接続を行います。接続にはAPIキー、CRN、SQL Queryの出力先のICOSバケットの指定が必要ですが、これらは先ほど自動生成されたsqlquerya4_credentialsから取得できます。

import ibmcloudsql
sqlClient = ibmcloudsql.SQLQuery(sqlquerya4_credentials['password'],
                                 sqlquerya4_credentials['crn'],
                                 sqlquerya4_credentials['target_cos_url'])

後は、SQLを書いてクエリーを実行するとpandasのdataframeに結果が返ります。

query = """
select*
from COND4N_E104
"""

queryres = sqlClient.run_sql(query)
queryres.head()

image.png

サンプルコード

参考

ICOS上のファイルをSQLでアクセスできるSQL Queryを利用する

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?