dbms-metadata

How to i read the contents of Oracle stored procedures using Python

How to i read the contents of Oracle stored procedures using Python Question: I am trying to read the contents/code of a stored procedure using python. i used cx_Oracle function to establish the connection with oracle database. here is the code import cx_Oracle as co import pandas as pd dsn_tsn = co.makedsn(ip,port,SID) db=co.connect(username,password,dsn_tsn) cursor = …

Total answers: 3