cancel
Showing results for 
Search instead for 
Did you mean: 

Data Services System tables

former_member263733
Participant
0 Kudos

What Data Services system tables would show the details for the Datastores in a repository?

Accepted Solutions (0)

Answers (2)

Answers (2)

DayaJha
Active Contributor
0 Kudos

Please refer below query to get BODS metadata details

Following are the List of Query to Fetch the Jobs CountS.NoDetailsQuery1All Project InformationSelect * From ALVW_PROJECTINFO2All Jobs InformationSelect * From ALVW_JOBINFO3All WorkFlow InformtionSelect * From ALVW_WORKFLOWINFO4All DataFlow InformationSelect * From ALVW_DATAFLOWINFO5All DataStore InformationSelect * From ALVW_DATASTOREINFO6All Function InformationSelect * From ALVW_FUNCINFO7All File Format InformationSelect * From ALVW_FILEFORMINFO8All Source Target InformationSelect * From ALVW_MAPPING9All Jobs Execution HistorySelect * From ALVW_HISTORY

Also refer below SCN link

https://archive.sap.com/discussions/thread/3618865

Regards,

Daya Jha

0 Kudos

You Can use the following query to get the list of datastores in your local repository.

select L.NAME as "DATASTORE" from AL_LANG L where OBJECT_TYPE='5';