Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the coordinates schema we used in the class examples, and the additional structures (index), write a PL/SQL procedure called knncloak which implements the two-rounds

Given the coordinates schema we used in the class examples, and the additional structures (index), write a PL/SQL procedure called knncloak which implements the two-rounds NN cloaking SKA technique. The procedure must receive as argument the ID of the querying user, and an integer K. The procedure must print on the screen the cloaking region (i.e., minimum bounding rectangle) obtained using the 2-round KNN.

-- create table coordinates CREATE TABLE coordinates ( id NUMBER PRIMARY KEY, point SDO_GEOMETRY );

--- create a spatial index on coordinates.point column --- create a 500x500 spatial grid, with x and y values ranging from 0 to 500

INSERT INTO user_sdo_geom_metadata ( TABLE_NAME , COLUMN_NAME , DIMINFO , SRID) VALUES ( 'coordinates' , 'POINT' , SDO_DIM_ARRAY(--- 500x500 grid SDO_DIM_ELEMENT('X', 0, 500, 0.005), SDO_DIM_ELEMENT('Y', 0, 500, 0.005) ) , null -- SRID ); CREATE INDEX coordinates_sidx ON coordinates(point) INDEXTYPE IS MDSYS.SPATIAL_INDEX;

--- load the coordinate points (x,y) from the 30_x_y_coordinates.txt file into the table INSERT INTO coordinates VALUES ( 1, SDO_GEOMETRY( 2001 -- 2 dimensional point , null -- SDO SRID , SDO_POINT_TYPE(460,80,null) , null , null ) );

-- create a MBR using the indexes of all the returned geometries SELECT sdo_aggr_mbr(point) FROM coordinates c WHERE c.id in ( (SELECT p.id FROM coordinates p WHERE SDO_NN(p.point, SDO_GEOMETRY(2001 , null , SDO_POINT_TYPE(240,460,null) , null , null ), 'sdo_num_res=5', 1 )='TRUE' ) );

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

More Books

Students also viewed these Databases questions

Question

1.Which are projected Teaching aids in advance learning system?

Answered: 1 week ago

Question

Are robots going to displace all workers? Explain your answer.

Answered: 1 week ago