Hm....
I'm running into another problem:
I don't understand why this works:
CREATE DISTINCT TYPE OBJECTLINK AS DATALINK;
But right under this line I put:
CREATE DISTINCT TYPE Anoymous254 AS VARCHAR(254);
The script file was successfully reverse engineered with the following error messages. Click Finish to generate the model file.
There are problems in parsing the script file.
<<================================================ ============
Parser error on:
Token Kind : 10
StartOffset : 79
Line Number : 2
Col Number : 34
Length : 2
Token Text : AS
Error Msg : "LONG"expected after this token
================================================== ==========>>
Any ideas Why this will work with DATALINK but not VARCHAR(252);
In the .ddl I have:
CREATE DISTINCT TYPE OBJECTLINK AS DATALINK;
CREATE DISTINCT TYPE Anoymous254 AS VARCHAR(254);
CREATE TABLE "MSM".
"bridgeLink"
(
"nodeAddress"
--1.3.18.0.0.3315.8.7.2
Anoymous(254)
,
"relatedBridgeFunction"
--1.3.18.0.0.3573
OBJECTLINK
,
"aSegmentNumber"
--1.3.18.0.0.5273
VARCHAR(1024)
...
...
);
What I don't understand is:
This is the correct syntax after looking it up:
CREATE DISTINCT TYPE T_SHOESIZE AS CHAR(2)
WITH COMPARISONS
So why does it like mine if this is okay?
Hm....it seems to be,
if I use the name like ANO_NAME , it works, but without the underscore its upset.