-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate a report of uncatalogued e-serials #272
Comments
We need to determine what remains to be done, if anything, on this issue (@wwelling ?) |
We need a workflow to create the provided table. A workflow or just-in-time query will update the provided table as needed. We need a catalog report to reference this table and FOLIO data on e-serials and report on the differences. |
I have gotten feedback from the primary stakeholder for this report, and it appears that we are missing requirements. I will be meeting with several stakeholders to gather these. |
This utilizes LDP, which must have table SFX TSV file mapping. Following https://knowledge.exlibrisgroup.com/SFX/Knowledge_Articles/What_are_the_column_descriptions_for_advanced_tab_delimited_text_exports_using_the_export_tool.
CREATE TABLE mis.tamu_sfx_extract (
TITLE_SORTABLE varchar(400) NULL,
TITLE varchar(400) NULL,
TITLE_NON_FILING_CHARACTER numeric(2, 0) NULL,
ISSN varchar(20) NULL,
OBJECT_ID numeric(20, 0) NOT NULL,
TARGET_PUBLIC_NAME varchar(256) NULL,
THRESHOLD varchar(1000) NULL,
EISSN varchar(20) NULL,
ABBREVIATED_TITLE varchar(1000) NULL,
TARGET_SERVICE_TYPE varchar(20) NULL,
LCCN varchar(40) NULL,
OBJECT_PORTFOLIO_ID numeric(20, 0) NULL,
Mu varchar(856) NULL,
Ny varchar(856) NULL,
Oa varchar(856) NULL,
Ph varchar(245) NULL,
LOCAL_THRESHOLD varchar(1000) NULL,
GLOBAL_THRESHOLD varchar(1000) NULL,
TARGET_ID numeric(20, 0) NULL,
TAGET_SERVICE_ID numeric(20, 0) NULL,
OBJECT_PORTFOLIO_ID_2 numeric(40, 0) NULL,
CATEGORIES varchar(400) NULL,
LOCAL_ATTRIBUTE varchar(1) NULL,
ISBN varchar(17) NULL,
EISBN varchar(17) NULL,
PUBLISHER varchar(255) NULL,
PLACE_OF_PUBLICATION varchar(255) NULL,
DATE_OF_PUBLICATION numeric(4, 0) NULL,
OBJECT_TYPE varchar(20) NULL,
ACTIVIATION_STATUS_FOR_THE_DEFAULT_INSTITUTE varchar(8) NULL,
INSTITUTE_ID numeric(1, 0) NULL,
INSTITUTE_NAME varchar(50) NULL,
INSTITUTE_AVAILABILITY varchar(8) NULL,
LANGUAGE varchar(3) NULL,
MAIN_TITLE varchar(400) NULL,
FULL_ORIGINAL_TITLE varchar(400) NULL,
ADDITIONAL_ISBNS varchar(35) NULL,
ADDITIONAL_EISBNS varchar(35) NULL,
AUTHOR varchar(1000) NULL,
OWNER varchar(3) NULL,
THRESHOLD_LOCAL varchar(1000) NULL,
PARSE_PARAM varchar(256) NULL,
IS_FREE numeric(1, 0) NULL
); |
This will be generated by comparing the active ESerials from SFX to the ESerials in FOLIO by ISSN. All ESerials which are in SFX that are not in FOLIO will be listed in the report.
A workflow will need to be created to populate a table in the MIS DB in LDP from the daily dump from SFX found at
/mnt/nfstmp/sfx/scratch/
by the filenamee-collection-TAMUCS.{timestamp}
. This table can be used in the generation of the Uncatalogued ESerials Report.It is possible that instead of creating a new workflow to do this, the currently existing rapid-electronic-serials workflow could be modified to populate this table.
The text was updated successfully, but these errors were encountered: