33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
- English only?
|
|
- CreationDate ist read-only
|
|
- Mapping Media Type
|
|
- Wer soll als byr_ah_projectLead gesetzt werden? Brand Comm representative für beide Felder?
|
|
- Soll muss der MAM-Uploader irgendwo gespeichert werden?
|
|
- "Bayer Animal Health GmbH" immer als License Holder OK?
|
|
- "comment" mit in description?
|
|
- MAM-Status "ARCHIVED" --> eDAM.Archived?
|
|
- Was ist mit Status != ACCEPTED or ARCHIVED?
|
|
- Regelung Cutover: Kein Upload mehr ab KW42 (16.10.)
|
|
- Wenn License Holder nicht gesetzt, trotzdem BAH GmbH? (bspw. 00070763)
|
|
- Beispiel für ausgefüllte GPC-Daten
|
|
- was ist mit regionalLicenseComment/personalLicenseComment?
|
|
- Wird GPC-Block verwendet?
|
|
- Ist "Date of Issue" Release Date? Ist gpc.expirationDate = Retire Date?
|
|
- GPC No. = LMR ID?
|
|
|
|
|
|
CREATE TABLE Record (
|
|
ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,
|
|
Location VARCHAR NOT NULL,
|
|
Entry VARCHAR NOT NULL)
|
|
AS SELECT
|
|
null,
|
|
Location,
|
|
Entry
|
|
FROM CSVREAD('C:/Temp/Migration AH/entry.log', null, 'charset=UTF-8 fieldSeparator=|~|');
|
|
|
|
SELECT * FROM Record;
|
|
|
|
CALL CSVWRITE ('C:/Temp/Migration AH/entries.csv', 'SELECT * FROM Record', 'charset=UTF-8');
|
|
|