As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I'm working on improving my DBA security by writing Dynamic DBA security files into FOCCACHE off of custom tables I've built in Oracle. One of the fields in my table is the Table that needs to be restricted. As it stands now, the only thing that I need to specify for each master file is the table to restrict on. Outside of this, I could have 1 MFD_PROFILE fex for all of my metadata. Does anyone have any ideas how I could identify the masterfile that is running the MFD_Profile procedure?
I've been thinking about maybe using ? FF, but I can't think of a way to write it to a flat file to pull the filename out.
I thought I had seen in the past people who have written checkfile to a flat file. But I can't seem to find the post...
Thanks for any thoughts.This message has been edited. Last edited by: eric.woerle,
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
Thanks for the suggestion Francis. It seems that the link is providing a way to identify all of the tables on the server. I need to figure out which one I need to write my DBA rules for. So I don't actually know what Master File is being accessed at that particular time. Thats what I'm trying to figure out.
For example when I issue ?F after a table request
TABLE FILE CAR
PRINT COUNTRY
WHERE RECORDLIMIT EQ 1
ON TABLE HOLD AS MYHOLD
END
?F
I get the following
0 NUMBER OF RECORDS IN TABLE= 1 LINES= 1
FILENAME= CAR
COUNTRY
CAR
MODEL
BODYTYPE SEATS DEALER_COST RETAIL_COST SALES
LENGTH WIDTH HEIGHT WEIGHT WHEELBASE
FUEL_CAP BHP RPM MPG ACCEL
WARRANTY
STANDARD
LIST
I figure if I could write the result to a file, I could use -READ to pull out the filename in the MFD_PROFILE. If there was a variable or function that captured this instead it would be even better... But I've never heard of any that store the Master File name.
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013