0% found this document useful (0 votes)
30 views1 page

Python PowerBI

The document discusses connecting Python to an Oracle database and connecting an Oracle database to Power BI. It provides instructions on downloading and installing Oracle client software, setting system variables, and importing Oracle libraries in Python. It also includes a link to instructions on connecting Oracle to Power BI.

Uploaded by

Santiago
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Python PowerBI

The document discusses connecting Python to an Oracle database and connecting an Oracle database to Power BI. It provides instructions on downloading and installing Oracle client software, setting system variables, and importing Oracle libraries in Python. It also includes a link to instructions on connecting Oracle to Power BI.

Uploaded by

Santiago
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

1. Connection from Python to SIRA (https://youtu.

be/yFO-3dCegJA)

- Download and Install Oracle


Client->https://www.oracle.com/co/database/technologies/instant-client/winx64-64-
downloads.html
- Version 19 (More reliable). Saved in D according to installation TIGO path

- Set up 'System Variables'. Help: Service Desk to enable administrator permissions

- Device/Advanced System Configurations/environment Variables:

TNS_ADMIN: path of the client folder D\\:...\BIN


Path: Edit|New .. Copy Path - client folder D\\:...\BIN

Restart PC

Start Python. Import Oracle Libraries

# Now query the rows back


for row in cursor.execute('select description, done from todoitem'):
if (row[1]):
print(row[0], "is done")
else:
print(row[0], "is NOT done")

-----------------------------------------------------------------------------------
-------------

2.Connection Oracle SIRA to Power BI

Instructions:
https://www.youtube.com/watch?v=ClBQ3_p7T_A

Installation ODAC. Microsoft´s Guide-> https://go.microsoft.com/fwlink/p/?


LinkID=272376

You might also like