Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

convert the geometric segments to LRS

150097Sep 17 2002
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???
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 16 2002
Added on Sep 17 2002
2 comments
324 views