Sdo_elem_info elements

Hello,
I would like to select the data in the sdo_elem_info.
When I use this query:
select a.geom.sdo_elem_info
from test a where rownum =1
I get:
SDO_ELEM_INFO_ARRAY(1, 1003, 1, 605, 2003, 1)
I want to select it so it looks like this:
1|1003|1|605|2003|1
I have tried several ideas, and searched the archives.
None of these work:
select a.geom.sdo_elem_info(0)
from test a where rownum =1
select a.geom.sdo_elem_info_array(0)
from test a where rownum =1
select a.geom.sdo_elem_info.sdo_elem_info_array(0)
from test a where rownum =1
I am using sdo_util.getvertices to get the sdo_ordinates.
Any help is appreciated.
Thank you.
S

Hello
For plain SQL the difficulty is dealing with varying length of the array sdo_elem_info. This is how far I got. As you will see this will only return the concatenated first 3 elements.
In order to have it working in more flexible way you have to make some flexible Pivot table function.
So it is easier using the function of Dan.
select id,
max(decode(rn, 1, column_value)) || '|' ||
   max(decode(rn, 2, column_value))  || '|' ||
       max(decode(rn, 3, column_value)) elem_info
   from
      (select id, column_value,
              row_number() over (partition by rowid order by rowid) Rn
       from your_table r, table(r.GEOMETRY.SDO_ELEM_INFO)
      ) T
  group by id
In case you're ok with a normal table record output, you can use Reggie's query or this one listing also the array position of the element for every feature.
select id, column_value,
              row_number() over (partition by rowid order by rowid) position
       from your_table r, table(r.GEOMETRY.SDO_ELEM_INFO)Luc

Similar Messages

  • Final number of elements after SDO_AGGR_UNION

    Hi!
    I'm curious about how Oracle define number of elements in sdo object we've got after SDO_AGGR_UNION.
    Each object in ROAD table is of SDO_GTYPE=2002(line segments) and SDO_ELEM_INFO = 1 2 1.
    Say, we want to union all lines in table.
    After
    -- union about 400 rows
    select SDO_AGGR_UNION(MDSYS.SDOAGGRTYPE(t.geoloc, 00000001)) from (select geoloc geoloc
    from road t
    where
    SDO_GEOM.VALIDATE_GEOMETRY(t.geoloc,00000001)='TRUE'
    )t
    we have one aggergated object with SDO_GTYPE=2006(multiline) and !30! elements in SDO_ELEM_INFO, means it's 10 multiline segments now.
    It seems the number of SDO_ELEM_INFO elements depends on the number of rows processed. And it's always about 350-360 points in SDO_ORDINATES for each multyline segment in SDO_ELEM_INFO.
    Is there any way to get the only one multyline?

    Hi maha,
    First of all it depends of your user_sdo_geom_metadata entry. There you have defined a tolerance value. what have you defined there?
    As i can see you have SDO_GEOM.VALIDATE_GEOMETRY(t.geoloc,00000001) defined - so my question: do you mean 1 or 0.00000001? 0.00000001 may be a bit too much!
    /* 1.9.1 SDOAGGRTYPE Object Type - Oracle® Spatial User's Guide and Reference
    The tolerance value in the SDOAGGRTYPE definition should be the same as the SDO_TOLERANCE value specified in the DIMINFO in the xxx_SDO_GEOM_METADATA views for the geometries, unless you have a specific reason for wanting a different value. For more information about tolerance, see Section 1.5.5; for information about the xxx_SDO_GEOM_METADATA views, see Section 2.4.
    The tolerance value in the SDOAGGRTYPE definition can affect the result of a spatial aggregate function. Figure 1-12 shows a spatial aggregate union (SDO_AGGR_UNION) operation of two geometries using two different tolerance values: one smaller and one larger than the distance between the geometries.
    I assume, your tolerance is defined too small for your point distances.
    regards, Andreas

  • Using exp/imp appears to fail

    Hello Everyone.
    We are trying to export a set of table from one Oracle Database to another and have come across a problem.
    Exporting via PL/SQL developer (v7) appears to be fine but when we try to import the generated .dmp file using the imp tool, it fails with this error:
    IMP-00017: following statement failed with ORACLE error 905:
    "CREATE TABLE "GEOM_TABLE" ("UUID" VARCHAR2(36) NOT NULL ENABLE, ""
    "NAME" VARCHAR2(50), "ORDINATES" "MDSYS"."SDO_GEOMETRY", "DRAWING_UUID" VARC"
    "HAR2(36))  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65"
    "536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "GEOM_SPACE"
    "" LOGGING NOCOMPRESS VARRAY "ORDINATES"."SDO_ELEM_INFO" ELEMENT  STORE AS L"
    "OB  (ENABLE STORAGE IN ROW CHUNK 16384 RETENTION  CACHE  STORAGE(INITIAL 65"
    "536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)) VARRAY "ORDINATES"."
    ""SDO_ORDINATES" ELEMENT  STORE AS LOB  (ENABLE STORAGE IN ROW CHUNK 16384 R"
    "ETENTION  CACHE  STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER"
    "_POOL DEFAULT)) COLUMN "ORDINATES" NOT SUBSTITUTABLE AT ALL LEVELS "
    IMP-00003: ORACLE error 905 encountered
    ORA-00905: missing keyword
    This only appears to happen when there is a reference to MYSYS.SDO_GEOMETRY. It is preventing the data migration from completing so does anyone have any ideas?
    Thanks in advance.

    Hi,
    Table is based on type MDSYS.SDO_GEOMETRY (Spatial Data Types and Metadata), Check spatial is configured on your Target database and you have privilege to access that object using your schema.
    HTH

  • Number of elements in a geometry

    Hi All,
    I am wondering if there is any way to enquire on a geometry to determine how many elements it contains. Eg: a polygon with an outer boundary and two inner holes would have three elements. I am guessing that the sdo_elem_info_array would need to be interrogated, but does anyone know of a neat method to do that?
    many thanks for any suggestions!
    Kay

    Hi Andreas,
    Thankyou very much for your reply - you have set me on the right track.
    I am now using the following function to obtain the number of entries in the sdo_elem_info varray:
    create or replace function sdo_elemcount(gt mdsys.sdo_geometry)
    return number
    is begin
    return (gt.sdo_elem_info.count());
    end sdo_elemcount;
    then running as follows to get the number of elements:
    select sdo_elemcount(geom)/3 from table_name where objectid = x;
    dividing by 3 gives me the number of distinct elements in the geometry.
    Thanks for your help Andreas!
    Kay

  • Selecting records include a second element

    Hi,
    I have polygon data set. Most of the polygons consist of one element. However, some of the polygons in the data set includes a second element represented in the SDO_ELEM_INFO attribute like: SDO_ELEM_INFO_ARRAY(1, 1003, 1, 23, 2003, 1). How can select objects which consist of two elements?
    Regrads,

    Thank you for your reply. But I could not solve the problem exactly. I used the SDO_UTIL.GETNUMELEM to learn number of element in a geometry. It returned 1:
    SQL> select a.objectid, SDO_UTIL.GETNUMELEM(a.geom) from polygon1 a where a.objectid=2943;
    OBJECTID SDO_UTIL.GETNUMELEM(A.GEOM)
    2943     1
    Actually, it is a polygon with a hole and includes two elements in the SDO_ELEM_INFO attribute:
    SQL> select geom from polygon1 where objectid=2943;
    GEOM(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 1, 23, 2003, 1), SDO ORDINATEARRAY(………
    I can not still select these kinds of geometries from table.

  • Using Adobe Bridge with Photoshop Elements

    I have an iMAC with iLife 08.
    I take photos in RAW format with a Nikon camera.
    I have been editing photos this way:
    After uploading photos to iPhoto, export them as jpg to a new folder on the desktop, external HD or wherever. I open Photoshop Elements, edit the exported photo.
    Then I'm stuck with my edits outside of iPhoto, unless I then import them back into iPhoto. It works, but it's cumbersome.
    Today I thought I'd try a different route. I opened Photoshop Elements, and tried to use Bridge to browse photos. I can find the iPhoto library easy enough, but if I click on it, it opens iPhoto, and I'm stuck - can't open the photos in Photoshop.
    I am hoping that if I do it correctly, I can save my edits directly back into iPhoto.
    Any ideas?

    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • ELEMENTS 11    no work on Mac Book Pro 10.9.5 mavericks

    Now I am completely confused, I have MBP 10.9.5 , first of all my photos went to REVELL/ before  and NOW A Orgainizer took them in? I DID ZERO!  are there still photos on REVELLE? and why now wont this ElEMENTS 11 NOT WORK ON MY MAC?
    yes I did use a WINDOWS device BUT NOT WITH THIS bamboo Tablet?? help me please' WIll any ADOBE THING WORK FOR ME? on Mavericks 10.9.5?
    Mainly I need for Mirrored drawing/  and tracing/ bezel things,and sketching/designing.... IT IS terriable what 5 years now?I cant use the plotter freely? Can some one suggest what product I need and
    will what Elements I have be of use at all? thank You
    very much
    artisomomus

    Kaik wrote:
    Ran GP, but it would only allow a scan of applications.
    When you open GP, if you search for the HDD icon (Macintosh HD) and click on it, it will do a full scan of the HDD.
    ODS swept the whole SSD with a total of 265  compared with 105 available on Disk Utility
    I do not quite understand what you mean here.  Total of 265 what?
      Should I be "securing trash" to regain space ?
    No, that should make no difference.
    Perform a Spotlight reindex.  See if that readjusts the numbers:
    http://support.apple.com/kb/ht2409
    Ciao.

  • Photoshope Elements when selecting an action, the paint brush tool doesn't work and system keeps freezing, then catching up every 30-45 seconds

    I have been having this problem with elements ever since the last OS upgrade, but it wasn't all the time and it wasn't very bad. Now, I have upgraded my macbook again, and I cannot even edit a photo!! I open the photo, choose an action, say "smooth skin", then choose the paint brush, I start to "paint" over their face and it won't paint a line, I have to keep clicking it, click - it paints, move brush, click again - it paints. Plus, every time I choose a tool or an action, it freezes for about 10 seconds, then catches up to what I am doing, 30 seconds later, it freezes again. HELP!! I have 8 sessions to finish editing by this weekend!! I just want to cry!!

    Try deleting the prefs and the saved application state:
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

  • Sale order - Wbs element Report

    Hi
    Is there any report for sale order wise wbs element report.
    In my sale order i will give wbs element and now i want to check "for one sale order , what are the wbs elements"

    You can check the WBS for a sales order from the table view of VBAP.
    The WBS field is PS_PSP_PNR.
    Goto SE16 and give VBAP.
    Enter your sales order number and execute. Look for your WBS elements in foeld PS_PSP_PNR for the different line items.
    You can also create a quick SAP query on this.

  • Unable to load project (prel file)  into Premier Elements 7.0

    just installed 7.0 ..when attempting to load a project (slide show for play back on a DVD) created in Elements 3.0 .. get error that "The project could not be loaded, it may be damaged or contain outdated elements" .. I have no problem loading the same project in Elements 3.0. Also seems specific to this file, an other project create under 3.0 appears to load with out error. I  should point out that  the project that will not load was created in Elements 5.0 and exported over to Premier Element 3.0 to create a playable DVD .. the file that will load was created in Premier Elements 3.0 (not sure if that is significant but more information is better then less) .. any thoughts / suggestions would be appreciated ..thanks

    "The project could not be loaded, it may be damaged or contain outdated elements"
    Unfortunately, the last part of that error says it all. Something is used, that no longer is in PE7, or has been changed significantly. Could be an Effect, a Transition (though those usually just disappear, and the file still Imports - PrPro gives a warning, and tells you which Transition is missing, and the TimeCode of where it was used), or something else.
    If you have PE3, you can do two things:
    1.) finish the edit there and Export to your delivery format
    2.) Export a DV-AVI file and bring THAT into PE7
    Neither is quite as good as being able to Import the .PREL and work on it in PE7, but those are about the only choices that I see. Now, if you have any clue as to what the Effect (whatever) is, that's causing the problem, you *might* be able to open a COPY of the .PREL in WordPad, search for that Effect, eliminate reference to it, and then Save as a .PREL. That might be a lot of work, and might well destroy that COPY of the file - that's why you work on a COPY.
    Good luck,
    Hunt

  • Unable to load the project. latter is probably damaged or contain outdated elements

    any one can help me with this probleme

    Hi,
    I am the one with the problem wich kaderdz exposed. Sorry for my English writing, my first language is French!
    I still have the same problem and some of my projects won't open (months of work...).
    The few projects that opens are kind of weird : only one chanel work in the audio, and the "title" window has also change. Here are some screen shots of what happens :
    message 1:
    message 2 - translation : impossible to charge the project. It is damage or contain obsolet elements :
    message 3 :
    title window :
    I would be so grateful if you can solve the problem. It's a lot of work!!

  • Repeating a group element on each page of a report.

    I have a report where I need to repeat a group element on each page. The element is from the first group in the data. It is in the center group. Currently, the values from this group only print when the group changes. Everything I try does not work. Does anyone have any ideas. I am attaching a sample of the data. Along with the rtf document. I am using the BI Publisher plug in in Word to create the template.
    Data
    <?xml version="1.0" encoding="UTF-8"?>
    <POLLEDTICKETRPT>
    <USERCD>klockhar</USERCD><POLLDATE>03/24/2009</POLLDATE>
    <LIST_CENTER>
    <CENTER>
    <CENTER_CD>0039</CENTER_CD>
    <CENTER_NAME>CROSS PLAINS QUARRY</CENTER_NAME>
    <LIST_TRANSDATE>
    <TRANSDATE>
    <TRANS_DATE>03/11/2009</TRANS_DATE>
    <LIST_CUSTOMER>
    <CUSTOMER>
    <CUSTOMER_NBR>33221477</CUSTOMER_NBR>
    <CUST_NAME>TDOT DISTRICT 32-GALLATIN</CUST_NAME>
    <LIST_JOB>
    <JOB>
    <JOB_CUST>33221477</JOB_CUST>
    <JOB_CUST_NAME>TDOT DISTRICT 32-GALLATIN</JOB_CUST_NAME>
    <RGI_JOB_NBR>2008</RGI_JOB_NBR>
    <QUOTE_ID>0</QUOTE_ID>
    <LIST_COSTCODE>
    <COSTCODE>
    <COSTCODING/>
    <COST_CNTR/>
    <COST_ACCT/>
    <PROJECT_NBR/>
    <PROJECT_TASK/>
    <LIST_TICKET>
    <TICKET>
    <TICKET_NBR>5000021</TICKET_NBR>
    <ORIGIN_CD>TSCC</ORIGIN_CD>
    <REFERENCE_NBR>254510</REFERENCE_NBR>
    <VOID_IND>N</VOID_IND>
    <STATE_CD>TN</STATE_CD>
    <MEASURE_SYSTEM>S</MEASURE_SYSTEM>
    <LOCATION>THANK YOU</LOCATION>
    <PO_NBR>POS-254510-C</PO_NBR>
    <TAX_CODE>4</TAX_CODE>
    <PRODUCT_CD>000003</PRODUCT_CD>
    <HAUL_ZONE_CD/>
    <INVENTORY_STATUS>PR</INVENTORY_STATUS>
    <HAULER_NBR/>
    <RGI_TRANSPORT_CD>FU96</RGI_TRANSPORT_CD>
    <HAUL_RATE> .00</HAUL_RATE>
    <MAT_RATE> 8.50</MAT_RATE>
    <NET_TONS> -7.96</NET_TONS>
    <MAT_SALES_AMT> -67.66</MAT_SALES_AMT>
    <HAUL_AMT>0</HAUL_AMT>
    <TAX_AMT>0</TAX_AMT>
    <SEV_TAX_AMT>0</SEV_TAX_AMT>
    <SEV_TAX_IND>N</SEV_TAX_IND>
    <VALID_NET_TONS> -7.96</VALID_NET_TONS>
    <VALID_SALES_AMT> -67.66</VALID_SALES_AMT>
    <VALID_HAUL_AMT> .00</VALID_HAUL_AMT>
    <VALID_TAX_AMT> .00</VALID_TAX_AMT>
    <VALID_SEV_TAX_AMT> .00</VALID_SEV_TAX_AMT>
    <CASH_TONS> .00</CASH_TONS>
    <CASH_SALES_AMT> .00</CASH_SALES_AMT>
    <CASH_TAX_AMT> .00</CASH_TAX_AMT>
    <CASH_SEVTAX_AMT> .00</CASH_SEVTAX_AMT>
    <CASH_HAUL_AMT> .00</CASH_HAUL_AMT>
    <TRADE_TONS> -7.96</TRADE_TONS>
    <TRADE_SALES_AMT> -67.66</TRADE_SALES_AMT>
    <TRADE_TAX_AMT> .00</TRADE_TAX_AMT>
    <TRADE_SEVTAX_AMT> .00</TRADE_SEVTAX_AMT>
    <TRADE_HAUL_AMT> .00</TRADE_HAUL_AMT>
    <INTRA_TONS> .00</INTRA_TONS>
    <INTRA_SALES_AMT> .00</INTRA_SALES_AMT>
    <INTRA_TAX_AMT> .00</INTRA_TAX_AMT>
    <INTRA_SEVTAX_AMT> .00</INTRA_SEVTAX_AMT>
    <INTRA_HAUL_AMT> .00</INTRA_HAUL_AMT>
    <INTER_TONS> .00</INTER_TONS>
    <INTER_SALES_AMT> .00</INTER_SALES_AMT>
    <INTER_TAX_AMT> .00</INTER_TAX_AMT>
    <INTER_SEVTAX_AMT> .00</INTER_SEVTAX_AMT>
    <INTER_HAUL_AMT> .00</INTER_HAUL_AMT>
    <CASH_PR_TONS> .00</CASH_PR_TONS>
    <CASH_NP_TONS> .00</CASH_NP_TONS>
    <CASH_MI_TONS> .00</CASH_MI_TONS>
    <TRADE_PR_TONS> -7.96</TRADE_PR_TONS>
    <TRADE_NP_TONS> .00</TRADE_NP_TONS>
    <TRADE_MI_TONS> .00</TRADE_MI_TONS>
    <INTER_PR_TONS> .00</INTER_PR_TONS>
    <INTER_NP_TONS> .00</INTER_NP_TONS>
    <INTER_MI_TONS> .00</INTER_MI_TONS>
    <INTRA_PR_TONS> .00</INTRA_PR_TONS>
    <INTRA_NP_TONS> .00</INTRA_NP_TONS>
    <INTRA_MI_TONS> .00</INTRA_MI_TONS>
    </TICKET>
    </LIST_TICKET>
    </COSTCODE>
    </LIST_COSTCODE>
    </JOB>
    </LIST_JOB>
    </CUSTOMER>
    </LIST_CUSTOMER>
    </TRANSDATE>
    RTF Template
    DISPLAY CENTER
    S M
    FOR EACH CENTER
    SET CENTER
    CENTER: CENTER_CD CENTER_NAME
    FOR EACH TRANSDATE
    TRANSACTION DATE: TRANS_DATE
    FOR EACH CUSTOMER
    FOR EACH JOB
    Customer: JOB_CUST JOB_CUST_NAME
    Job: RGI_JOB_NBR Quote Id: QUOTE_ID
    FCC
    group COSTCODE by COSTCODING
    Cost Center: COST_CNTR Cost Acct: COST_ACCT Project: PROJECT_NBR Task: PROJECT_TASK
    Ticket Nbr     ORGCD     OrigTck     V     ST     Location     Po Nbr     Tax Cd     Prod Code     ZN     Hauler      Truck     Haul Rate     UnitPrice     Tons     SalesAmount
    F TCK#M     CODE     OTCK#     V     ST     LOCATION     PO_NBR      TC     PROD     HZ     HAULER     TRUCK     0.00     0.00     0.00 *      0.00 E

    Post Author: Guy
    CA Forum: General
    Hi,
    You should add a first level of grouping in your subreport on a fake formula field with a constant value.  Put your header and footer information in this group header and footer.  In the group option make sure to check the "repeat group header on each page option".
    This group will act as a page header + footer within your subreport.
    good luck!
    Guy

  • How to retrieve elements from 3 different xml file in one url

    Hi all,
    Could anyone please let me how can we retrieve elements from 3 different xml file in one url?
    i just can only do it with one file only, any help would very appreciate.
    Thank in advance
    Jim

    Hi Philip
    Thanks for replying me.
    I tried on that way, In my mdx query i am using one slice attribute (i.e [Customer].[Gender].allmembers) in rows so getting error "The  Hierarchy already appears in Axis1".
    SELECT
    {[Measures].[Internet Sales Amount] } ON 0,
    NON EMPTY
    {[Customer].[Gender].allmembers } ON 1 -- Used
    FROM
    [Adventure Works]
    WHERE
    [Customer].[Gender].&[M]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].&[XL]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].&[Australia]
    Can you provide alternate ways to get resolved.
    Thanks in advance

  • How many computers can you use one copy of Photoshop Elements 11 on please?

    I intend to purchase Adobe Photoshop Elements 11 for my two student children.  Could you tell me if they will both be able to install in on their respective computers?

    One copy of the software can be installed and activated on two computers but a) they must be used by the same person and b) not at the same.
    Your intended use is not in accordance with conditions set out in the End User License Agreement (EULA)
    http://www.adobe.com/products/eulas/pdfs/Gen_WWCombined-MULTI-20111031_1230.pdf
    2.1.3 Portable or Home Computer Use. Subject to the restrictions set forth in Section 2.1.4, the
    primary user of the Computer on which the Software is installed under Section 2.1 (“Primary User”)
    may install a second copy of the Software for his or her exclusive use on either a portable Computer
    or a Computer located at his or her home, provided that the Software on the portable or home
    Computer is not used at the same time as the Software on the primary Computer.
    You should purchase two copies of the software giving each of your children the ability to use the software on two computers.

  • If each of my family members have Elements on their computers, can we all share central catalog?

    Like most families, each of our family members have their own camera. Rather than having catalogues on individual computers, can we share the one single catalogue from a central NAS drive etc?

    Hi Hatstead,
    A NAS drive is just a sharable network drive that all computers can see. The Adobe Revel suggestion is a good one. I will give it a try but not sure if it will support all the metadata tags that I have in Adobe Elements in order to view the photos/videos in different ways. It would also appear that if each family member will be uploading more photo's etc allowed for by the free licence that I will be up for the premium subscription for each of them per year. Do you know if this is the case and will it support the Elements Metadata tags?
    Many Thanks
    John

Maybe you are looking for