Here is my problem with R:
I have a table similar to this:
TABLE_NAME COLUM_NAME DATA_TYPE
table_1 DATA DATE
table_1 NAME VARCHAR2
table_1 SURNAME VARCHAR2
table_2 DATA DATE
table_2 PACK NUMBER
what i want to do is to create 2 different table from this based on the TABLE_NAME value that will have TABLE_NAME as name. Like this
table_1
COLUM_NAME DATA_TYPE
DATA DATE
NAME VARCHAR2
SURNAME VARCHAR2
table_2
COLUM_NAME DATA_TYPE
DATA DATE
PACK NUMBER
This way i can create a catalog of my tables, synonym and view of my db (with ROracle is not possible to fetch such metadata from the connection).
How can i Achieve this?