[This message was posted by Marcus Bullock of GFI Group
<[email protected]> to the "General Q/A" discussion forum at
http://fixprotocol.org/discuss/22. You can reply to it on-line at
http://fixprotocol.org/discuss/read/c1fac1f3 - PLEASE DO NOT REPLY BY MAIL.]
> 2. To get around the issue with xs:include I merged the entire XML
> schema into one file. I then ran into some issues with the size of
> the XML schema. How do I go about getting around this?
>
The schema is too large for a string literal used in the regular way of
imprtang an xsd.
To get around this run the following from SQL Plus, changing your xsd/table
names as req'd :
CREATE DIRECTORY DOC_DIR AS 'mypath\xsd\fix\5.0sp2';
DECLARE
SOURCE_FILE BFILE := BFILENAME('DOC_DIR',
'fixml-tradecapture-base-5-0-SP2.xsd');
BEGIN
dbms_xmlschema.registerSchema(
'fixml-tradecapture-base-5-0-SP2',
SOURCE_FILE,
TRUE, TRUE, FALSE, FALSE);
END;
/
[You can unsubscribe from this discussion group by sending a message to
mailto:[email protected]]
--
You received this message because you are subscribed to the Google Groups
"Financial Information eXchange" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/fix-protocol?hl=en.