Oracele Spatial 11g  - 2D-3D Geometry Extrusion

Hi,
I am trying to extrude some 2d data that is lat long format to 3d using the sdo_util.extrude function. The SQL workflow is as follows:
*1. Create 2d data table, insert data and index*
--table for 2d data
CREATE TABLE "EGOVIS"."DUBLIN_F_TEST"
(     "FID" NUMBER(38,0),
     "ID" NUMBER(38,0),
     "ZV" FLOAT(126),
     "X" FLOAT(126),
     "Y" FLOAT(126),
     "GEOM" "MDSYS"."SDO_GEOMETRY"
--insert data
Insert into DUBLIN_F_PROJECT (FID,ID,ZV,X,Y,GEOM)
values
47,
1,
97,
-6.27175835549,
53.3369421474,
MDSYS.SDO_GEOMETRY(
2003
,8307
,NULL
,SDO_ELEM_INFO_ARRAY(
1,
1003,
1),
SDO_ORDINATE_ARRAY(
-6.271393982,53.337082684,
-6.271432654,53.337085933,
-6.271441366,53.337051319,
-6.271337218,53.337041470,
-6.271303925,53.337037787,
-6.271287361,53.337035957,
-6.271278835,53.337071497,
-6.271335773,53.337077243,
-6.271393982,53.33708268)));
--insert metadata
INSERT INTO USER_SDO_GEOM_METADATA VALUES
'DUBLIN_F_PROJECT',
'GEOM',
MDSYS.SDO_DIM_INFO_ARRAY
MDSYS.SDO_DIM_ELEMENT('Longitude', -180, 180, 0.5),
MDSYS.SDO_DIM_ELEMENT('Latitude',-90, 90, 0.5)
8307
--create spatial index
CREATE INDEX "EGOVIS"."DUBLIN_F_PROJECT_SINDX" ON "EGOVIS"."DUBLIN_F_PROJECT" ("GEOM")
INDEXTYPE IS "MDSYS"."SPATIAL_INDEX" ;
*2. create 3d data table and Extrude data into DUBLIN_E_PROJECT table*
--create table
CREATE TABLE "EGOVIS"."DUBLIN_E_TEST"
(     "FID" NUMBER(38,0),
     "ID" NUMBER(38,0),
     "ZV" FLOAT(126),
     "X" FLOAT(126),
     "Y" FLOAT(126),
     "GEOM" "MDSYS"."SDO_GEOMETRY"
--extrude 2d data from DUBLIN_F_PROJECT to DUBLIN_E_PROJECT
INSERT
INTO
DUBLIN_E_PROJECT
SELECT
FID
,ID
,ZV
,X
,Y
,SDO_UTIL.EXTRUDE(
GEOM
,SDO_NUMBER_ARRAY(0)
,SDO_NUMBER_ARRAY(20)
,'TRUE'
,0.05)
from DUBLIN_F_PROJECT
when i try to extrude the data i get the following error:
*An error was encountered performing the requested operation:
ORA-29532: Java call terminated by uncaught exception:
java.lang.Exception: 54550
ORA-06512: at "MDSYS.SDO_UTIL",line 222
29532. 0000 - "Java call terminated by uncaught Java exception: %s"
*Cause: A Java exception or error was signaled and could not be resolved by the Java code.
*Action: Modify Java code, if this behavior is not intended.
Error at Line:1*
I have tried to drop the index and perform the extrusion but that does not help. Does any one have advice on how to solve this problem?
Thanks for suggestions,
Keith.
Edited by: keithgardiner on Aug 26, 2009 4:48 AM

Thanks for that siva,
I have successfully extruded the data into 3d data. i now need to index the data. My steps are as follows:
*1. update srid of data to 3d srid*
update dublin_sample_test a set a.geom.sdo_srid=4327;
*2. insert metadata for said data with height value*
INSERT INTO USER_SDO_GEOM_METADATA VALUES
'DUBLIN_sample_test3',
'GEOM',
MDSYS.SDO_DIM_ARRAY
MDSYS.SDO_DIM_ELEMENT('Longitude', -180, 180, 0.00005),
MDSYS.SDO_DIM_ELEMENT('Latitude',-90, 90, 0.00005),
MDSYS.SDO_DIM_ELEMENT('Height',0, 300, 0.00005)
4327 --wgs84 3d
*3. create 3d index on table*
CREATE INDEX dublin_sample_test3_SIDX
ON dublin_sample_test3 ("GEOM")
INDEXTYPE IS
MDSYS.SPATIAL_INDEX PARAMETERS ('sdo_indx_dims=3');
I have tried but at index creation stage I am getting the following error:
ERROR at line 1:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-13236: internal error in R-tree processing: [specified index dimensionality
should be 2 for geodetic indexes]
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
29855. 00000 - "error occurred in the execution of ODCINDEXCREATE routine"
*Cause:   Failed to successfully execute the ODCIIndexCreate routine.
*Action: Check to see if the routine has been coded correctly.
Error at Line: 3 Co;umn: 13
Can you please advise me on the process of selecting a 3d srid for wgs84(lat/long) data and tell me if I am doing anything incorrect here.
Thanks,
keith.

Similar Messages

  • Oracle spatial 11g - 3D-Geometry and KML-Export

    Hi,
    I'm currently working with an Oracle Spatial 11g - database and there with 2d- and 3d-geometries. With this Version you can extrude 2d's to 3d's and calculate their volumes. This works fine.
    The problem is to save the extruded areas as 3d-geometries in a specific table. Enclosed you will find the SQL-Code of the current workflow:
    *1. Create tables for the 2d- and 3d-geometries (incl. metadata and spatial index)*
    -- table for 3d-geometry
    CREATE
    TABLE ta_geb(
    geom MDSYS.SDO_GEOMETRY
    ,area NUMBER(12,3)
    -- metadata 2D
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES
         'ta_geb',
         'geom',
    MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('X',4439900.00, 4440020.00, 0.005),
    MDSYS.SDO_DIM_ELEMENT('Y', 5664050.00, 5664130.00, 0.005)
    31468
    -- spatial index 2D
    CREATE
    INDEX ta_geb_index ON ta_geb(geom) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    -- table for 3d-geometry
    CREATE
    TABLE ta_3dgeb(
    geom3d MDSYS.SDO_GEOMETRY
    -- metadata 3D
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES
         'ta_3dgeb',
         'geom3d',
    MDSYS.SDO_DIM_ARRAY
    (     MDSYS.SDO_DIM_ELEMENT('X',4439900.00, 4440020.00, 0.005),
         MDSYS.SDO_DIM_ELEMENT('Y', 5664050.00, 5664130.00, 0.005),
         MDSYS.SDO_DIM_ELEMENT('Z', 0, 200, 0.005)
    31468
    -- spatial index
    CREATE
    INDEX ta_3dgeb_index ON ta_3dgeb(geom3d) INDEXTYPE IS MDSYS.SPATIAL_INDEX PARAMETERS ('SDO_INDX_DIMS=3');
    *2. insert 2d-geomtry*
    INSERT
    INTO
    ta_geb
    VALUES
    MDSYS.SDO_GEOMETRY(
    2003
    ,31468
    ,NULL
    ,MDSYS.SDO_ELEM_INFO_ARRAY(
    1
    ,1003
    ,1
    ,MDSYS.SDO_ORDINATE_ARRAY(
         4439975.91,5664077.07,
              4439967.98,5664072.06,
              4439975.33,5664060.42,
              4439983.26,5664065.43,
              4439975.91,5664077.07
    ,null --area
    *3. calculate volume of the extruded area*
    SELECT SDO_GEOM.SDO_VOLUME(SDO_UTIL.EXTRUDE(
         GEOM,
         SDO_NUMBER_ARRAY(0),
         SDO_NUMBER_ARRAY(10),
         'false', --validation
         0.005),0.005)
    from ta_geb;
    This works fine so far. Now I wanna insert the extruded geometry (now 3D) in the table ta_3dgeb. All my attempts were in vain...
    *4. insert extruded geomtry*
    INSERT
    INTO
    ta_3dgeb
    select
    SDO_UTIL.EXTRUDE(
              GEOM,
              SDO_NUMBER_ARRAY(0),
              SDO_NUMBER_ARRAY(10),
              'false', --validation
              0.005)
    from ta_geb;
    I got the following error message after executing this Code:
    ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
    ORA-13365: layer SRID does not match geometry SRID
    ORA-06512: in "MDSYS.SDO_INDEX_METHOD_10I", line 709
    ORA-06512: in "MDSYS.SDO_INDEX_METHOD_10I", line 225
    Then I tried to change something on the metadata and spatial indices, wihtout success. Does anyone has advices to solve the problem??
    Afterwards I would like to export the 3d-geometry in a KML file to visualize it in Google Earth. Therefore oracle provides a tool. But I didn't managed it to export the geometry. Any hints for the KML export or are there any other tools alternatively??
    Thanks for any suggestions!
    Regards

    Extrude does not automatically populate the SRID for the resulting geometry as there may not be a 3D equivalent of the 2D SRID defined
    in the DB.
    So the extruded geometry comes out without the SRID. In your case, since you are creating an index on the ta_3dgeb table
    before inserting the extruded data, it is causing this failure.
    So drop the index on the ta_3dgeb table and do the inserts into it.
    Then you can manually update the geometries with the SRID if there is a corresponding 3D SRID for 31468.
    Otherwise, you can use 31468.
    siva

  • Is there a function in Oracle Spatial 11g to move/translate geometry?

    Hello Everybody,
         I am new to Oracle Spatial. I wanted to know if there is any function to move/translate a geometry in Oracle Spatial 11g? PostGIS has a function named ST_Translate to achieve the same.
    Regards,
    Shiva Shankar

    Hi
    There is an SDO_UTIL.AFFINETRANSFORMS function in the  SDO_UTIL Package (Utility)
    Note, that Simon Greener & Siva Ravada have published an excellent book ("Applying and Extending Oracle Spatial") that contains examples (in Chapter 7) of easy to use wrappers for this:
    http://www.packtpub.com/applying-and-extending-oracle-spatial/book
    Luc

  • Load LiDAR data into Spatial 11g making use of Point Cloud Type?

    Dear all,
    from an aerial LiDAR scan I have approximately 226 million points, spread over 9 files. I would like to load them into Oracle Spatial 11g, making use of the new point cloud data type. I have the book "Pro Oracle Spatial for Oracle Database 11g" here and Appendix E explains how you have these two tables that together manage your point cloud. I find the example given in the book rather simplified though as they have only x, y and z and a row id colum. In addition to this I also have r, g, b and i (intensity) values.
    I was wondering if anyone could give me a hint on how to store all the information in one table and making use of the sdo_pc data type at the same time.
    Also, the example has the points already in a table, but I'd like to load it all directly from my files into the point cloud table (I know how to use sqlldr, but how do I get it into this point cloud table structure). What's the cleverest way to go about this?
    All ideas are greatly appreciated!!
    Regards,
    Bia.

    Hi,-
    Our LAS converter supports LAS 1.1 format.
    LAS version 1.0 has fewer entries for the data than LAS version 1.1 so you might just ignore those extra fields that donot exist in LAS 1.0.
    Therefore, i am expecting your data to be fine with our LAS to SDO_PC converter.
    Thanks

  • Not able to use oracel database 11g express edition ? please help !!!

    after installing oracel database11g express edition , i am not being able to use it ,because when i click on  get started with oracel database 11g express edition it will divert me to ip  http://127.0.0.1:8080/apex/f?p=4950 and after this it show
    Oops! Google Chrome could not connect to 127.0.0.1:8080
    so please help me out , as i am beginner and new to this , so i don't have deep knowledge of this ,so please help me out ,as soon as possible 

    Hi,
    Provide more info like os and its version - https://blogs.oracle.com/shay/entry/10_commandments_for_the_otn_fo
    Did installation complete successfully?
    check if database is up
    start command prompt
    sqlplus / as sysdba
    select open_mode from v$database;
    check the status of listener
    lsnrctl status
    Post the output of above commands here
    Regards
    Yoonas

  • Oracle Spatial 11g Certified Implementation Specialist

    Hi everyone,
    Can anyone share Oracle Spatial 11g Essentials(Oracle Spatial 11g Certified Implementation Specialist) certification study materials.?
    Thanks in advance

    909402 wrote:
    hi
    please i need to know these informations right or wrong
    1-OCA can any one got it and can get it's exam
    2- OCP need to get oca first and there is an attendeng also?
    reply me please and many thanks to you>You are ou of context to this thread.
    Please browse:
    http://certification.oracle.com - preparation/getting started and the FAQs and locate the certification you desire. The information you need is there, and there is little need for me to repeat it here. Using codes and identifiny a certification properly by its rigthtful code and name helps focus the mind and helps many questions to answer themselves. Practice of such rigor is surely helpful in the certification journey.

  • How to add coordinate system SVY21(SRID: 3414) to Oracle Spatial 11g/12c

    Can any one please help me for "How to add coordinate system SVY21(SRID: 3414, for Singapore) to Oracle Spatial 11g/12c'?

    Why don't you start with the documentation: Coordinate Systems (Spatial Reference Systems)
    Especially paragraph 6.9 (6.9 Creating a User-Defined Coordinate Reference System ) should be helpful for you.
    HTH,
    Stefan

  • Oracel Database 11g Release 2

    Dear Sir/ Madam
    I am facing the following problem when Installing Oracel Database 11g R2
    The em.ear is missing .
    D:\app\Yassen\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em.ear
    Please tell me how to solve this problem.
    Yassen

    Can you please tell us which OS you are using.
    Did you unzip the 2 files into a single folder. The error you are seeing is a common one when you do not unzip the 2 downloaded zip files into a single folder.

  • Oracle 11g, SRID & 3D-geometry

    Hi
    I migrated a spatial table from an Oracle 10 to an Oracle 11 database
    The table contains Multilines with M-values.
    I validate the Geometries with "SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT"
    In Oracle 10: No Errors.
    In Oracle 11g:  ORA-54668:  2D SRID cannot be used with a 3D geometry
        Cause: A 2D SRID was used with a 3D geometry.
        Action: Replace the 2D SRID with an appropriate 3D SRID
    SRID is 82027 (In the spatial-Metadata-Table and in each SDO-Geometry-Object)
    82027 means "GK Zone 3 (DHDN)". It is an projected cartesian system.
    What to do?
    -> I dont't find any appropriate 3D-System
    -> I don't want Oracle to use the M-values for any puproses at all.
        To me it would be fine, if oracle-saptial ignores the M-Value for it's internal calculations (index, length,...)
        M-Values are only interpreted by the appliaction.
    Any advise?
    Bye, Benedikt

    Hi Benedikt,
    What is the SDO_GTYPE on your geometries? I am betting that perhaps the second byte on the GTYPE is zero (e.g. 3006) rather than the proper 3 (3306)? I am thinking also that this data may have originated from ArcSDE? ArcSDE has an ancient bug that loads all LRS data with just the zero rather than specifying which dimension has the LRS value. So Oracle Spatial sees 3006 and thinks you have X,Y and Z rather than X,Y and M and thus 11g polices things more thoroughly to make sure your SRID supports 3D actions.
    Note that ArcSDE is due to fix this bug (NIM045781) - hmm. Wait a second I THOUGHT they were due to fix this bug in 9.3.1 SP2 but now I see no mention of it! :_|
    http://downloads2.esri.com/support/documentation/ao_/9.3.1_SP2_Announcement.pdf
    Oh well. So you need to update your SDO_GTYPE by hand using something like:
    (table is foo and geometry column is shape)
    UPDATE foo a
    set a.shape.SDO_GTYPE = TO_NUMBER('33' || SUBSTR(a.shape.SDO_GTYPE,3,2));Hope that helps.
    Hope that's the issue.
    Cheers,
    Paul

  • OBIEE -Spatial Data in ST Geometry

    Hi,
    Below is my sample spatial data in oracle 10g database.I am trying to build a OBIEE map with Google maps as background map.Can i  use the ST geomotry as below  directly or should i convert it to SDO geometry .I converted ST geometry to SDO  but when i use it for the maps in obiee the lines are all over the map.Can anyone suggest me the steps i need to take when the spatial data is in ST geometry.SRID for google mpas is 3785.
    ST GEMOTRY
    SDE.ST_GEOMETRY(8,20,-8236196.0936,4971596.5728,-8236021.1316,4971750.2835,NULL,NULL,NULL,NULL,8520.953541,512.173693478845,3857,'oracle.sql.BLOB@14f2c59')
    SDO GEOMETRY
    MDSYS.SDO_GEOMETRY(2003,8307,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,1),MDSYS.SDO_ORDINATE_ARRAY(-8236058.0112,4971596.5728,-8236049.1351,4971612.8814,-8236034.0083,4971640.7315,-8236025.6322,4971656.1619,-8236021.1316,4971664.1908,-8236034.878,4971671.5954,-8236036.5026,4971672.5993,-8236061.2461,4971686.0279,-8236089.489,4971701.3389,-8236179.0918,4971750.2835,-8236183.4673,4971742.2546,-8236196.0936,4971718.9202,-8236142.1072,4971688.8009,-8236116.7386,4971674.6197,-8236119.9892,4971667.8453,-8236082.6239,4971647.0125,-8236077.5001,4971644.2516,-8236084.1259,4971632.3338,-8236093.2518,4971616.0251,-8236058.0112,4971596.5728))

    Hi Syedurur,
    You may be in the wrong forum as OBIEE only utilizes MapViewer as far as I know.
    MapViewer
    So as Stefan notes, you are not going to be able to use SDE.ST_GEOMETRY with OBIEE as its not an Oracle product.  However, your ArcSDE registered MDSYS.SDO_GEOMETRY geometry should work fine.  Yet in your example you posted you seem to have Web Mercator (3857) ordinates but the SDO_SRID is WGS 84 (8307) so that is mangled and not going to draw anything correctly.  Try changing the SDO_SRID to 3857.
    Now Stefan is a bit incorrect about the ease of moving from SDE.ST_GEOMETRY to MDSYS.SDO_GEOMETRY.  The folks at ESRI make it simple to move in the other direction but - surprise! - not to move away from their proprietary spatial type. 
    ArcGIS Help (10.2, 10.2.1, and 10.2.2)
    Now you can still accomplish this by exporting your data from the geodatabase and then importing it back in as SDO but that is certainly not as simple as using the above one-step migration tool.
    In theory you could convert SDE.ST_GEOMETRY to MDSYS.SDO_GEOMETRY on the fly in the database with SQL.  Both ESRI and Oracle proudly spout their unwavering support for OGC standards.  Thus this should work
    SELECT MDSYS.SDO_GEOMETRY(SDE.ST_AsText(a.shape),8307) FROM my_ESRI_ST_GEO_table a;
    (Note change the 8307 to the matching Oracle SRID of your data)
    But my experience was that the very old Oracle Java WKT parser mixed with the somewhat non-standard ESRI External DLL WKT writer is not a very reliable combination.  But do give it a try and feel free to report back to us how it goes.  I really have not tried this in a couple of years so perhaps things are better now.
    Cheers and Happy New Years,
    Paul

  • Oracel Database 11g Release 2 Connection with  Forms Builder 10g

    I installed Oracle Database 11g at Microsoft window 32-bit , Now I want to connect it with my forms buider 10g developersuit.
    Please tell me ho do I connect it.

    Ghulam Yassen wrote:
    yes I set the tnsname.ora file of form builder but still not solved.
    again error is showing
    TNS could not resolve the connect identifier specified.if your oracle database sid or service name is orcl
    your tnsnames.ora should look like this:
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ip_address_of_server )(PORT = 1521))
    (CONNECT_DATA =
    (SID=orcl)
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    cmd>tnsping orcl #to test
    for more info: http://download.oracle.com/docs/cd/B28359_01/network.111/b28317/tnsnames.htm
    HTH
    teits

  • Oracle Spatial 11g

    Hai all,
    I want to study the basics of Oracle spatial , please give any related document ?
    thanks in advance

    http://www.oracle.com/pls/db112/portal.portal_db?selected=7&frame=#oracle_spatial_and_location_information

  • Versioning of processes in Oracel BPM 11g

    Hi,
    I have a question about versioning of processes in oracle BPM 11g.
    Former Oracle BPM product (Aqualogic BPM) automatically managed the versioning of processes deployed to the server. When a new version of a process was created, the server automatically determined if it is a minor or major revision and a new process version number was recommended.
    Is there a similar functionality in new BPM engine?
    Now, when I deploy a new version of process I can only choose between rewriting existinig revision (all active instances will stale and become unusable) or deploying new revision (all active instances will continue using previous version).
    Is there a way to migrate existing instances to new process (if there were only minor changes)?
    Hope someone can answer. Thnx.

    This feature (migration of running instances to new version) is intended to be available in PS3 which is planned for early 2011.
    I suggest you check out the release documentation for confirmation however.

  • Oracle Spatial - inserts/updates to geometry tables

    I am getting the following errors when inserting into an SDO_GEOMETRY object type:
    java.sql.SQLException: ORA-29877: failed in the execution of the ODCIINDEXUPDATE routine
    ORA-13000: dimension number is out of range
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 8
    ORA-06512: at "MDSYS.SDO_IDX", line 86
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 83
    ORA-06512: at line 1
    I have looked in the Oracle Spatial User Guide for 8i and have not been able to find much on the information above.
    Any help from inviduals with more expertise in this area would be great. If I need to provide more information please do indicate this as well
    Thanks,
    Faroon.

    Hi,
    The number of dimensions in the object being inserted may be
    out of the valid range ( 2 to 4).
    Or the diminfo in the user_sdo_geom_metadata for this
    layer has been changed the after the index is created.
    Check these two places first to make sure the dimensionality
    is in the valid range.
    The error is raised on index updated when the dimensionality
    of the object being updated is not in the valid range.
    siva

  • Errors in Spatial 11g documentation

    1) At http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28400/sdo_objrelschema.htm#CBBIHIIE the point cloud description references Tables 2.4 and 2.5 which are actually TIN rather than point cloud description tables.
    2) At http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28400/sdo_objtune.htm in the SDO_TUNE referen ce, there are 2 occurances of SDO_TUNE.EXTENT_OF but the second should be to SDO_TUNE.MIX_INFO

    dlorentz wrote:
    Hello Hans. I have no idea what "Bump around the spammer" means, but I've reported the doc errors to the Spatial doc writers.
    Regards,
    DianaBump - a common term for 'bumping a thread to the front of the line by adding a null post'.
    At one time there was an spammer who replied to quite a few threads (seemed like 100+) in these forums with a generic spam link. My bump was to bring the active question to the front since it had been buried behind about 25 posts that contained nothing other than the spam. The forums moderator removed the spamming userid and all related posts, and that left my comment without a context.
    That said - I appreciate your efforts in handling these doc issues in general, and I'm glad the doc writers have looked at mine in particular.

Maybe you are looking for

  • HT3529 Is there a way to password protect imessage?

    Is there a way to password protect imessage for iphone 4?

  • Nokia Xpress Browser - Conflicting Apps error

    the nokia express on my asha 201 is not functionig. It says conflicting applications when I try to use it. Itried resetting it but still to no avail. What should I do. Moderator's note: We provided a more appropriate subject so other members can easi

  • Run multiple tabs next to eachother in a single window

    I have a tv screen that i use as a monitor and it's big enough to open several windows on the same screen, but i wanted to know if it is possible to run multiple sites in a single window. to be more precise if it is possible to open 2 tabs next to ea

  • Duplicate Library from Conversion of MP3 Files?

    OK, so I converted all of my MP3 music files over into I Tunes to the MP4 or whatever format; Does that mean that I can delete all of the huge files of MP3 music on my hard drive? Or do I need to keep those files for I Tunes to reference back to?

  • General Task List- Query Log Out Tag Out

    Hello, We are uploading new Gereneral Task List. Some task required Log Out Tag Outs for a prcedure: For example: 1) Schedule  with operations 2) Flush unit 3) Lock out tag out procedures 4) Pull unit and clean propeller. For reporting purpose we wan