convert the geometric segments to LRS
I tried to run SDO_LRS.CONVERT_TO_LRS_LAYER to convert to LRS. Everything ran fine but nothing happened in the database. When I loog at the USER_SDO_GEOM_METADATA, I couldn't find any measure values at all. Below is what I ran
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.
Did I miss out something???? Any suggestions???