convert geometric segments to LRS [message #75792] |
Tue, 17 September 2002 13:34 |
ashley75
Messages: 2 Registered: September 2002
|
Junior Member |
|
|
Hi all,
I tried to convert the geometric segments to LRS and I ran the following:
SQL> BEGIN
2 IF (SDO_LRS.CONVERT_TO_LRS_LAYER('PIP_CENTERLINE_SOB_STG', 'SOB_GEOMETRY') = 'TRUE')
3 THEN
4 DBMS_OUTPUT.PUT_LINE('Conversion from STD_LAYER to LRS_LAYER succeeded');
5 ELSE
6 DBMS_OUTPUT.PUT_LINE('Conversion from STD_LAYER to LRS_LAYER failed');
7 END IF;
8 END;
9 /
Conversion from STD_LAYER to LRS_LAYER succeeded
PL/SQL procedure successfully completed.
when I look into the USER_SDO_GEOM_METADATA, I didn't find any measure values. What did I do wrong ??? Can someone give me some suggestions???
Thanks
|
|
|
|