Where is the XMLType?

Hi all
I have installed Oracle XE and my purpose is to load xml data and to store it in a native way (textbased CLOB, not shredded). I found out that I have to use the XMLType, but I cannot find it in the object browser / create table webinterface. Do I have to select CLOB directly? I thought XE would handle that transparently for me. Is there a guide that shows how to work with XML data on XE?
Many thanks in advance and regards
Michael

It has to be a W3C XML Schema. A DTD simply does not contain enough information to derive a useful storage model and optimizations from.
There are a number of tools that will do a first pass cut of DTD to XML Schema translation but this should be taken for what it is, a first cut and not a finished XML Schema.
For instance, one common problem with this tools is that they assume the most lax possible interpretation of DTD when defining the structure of a complexType. This is reasonable in one sense, in that the DTD cannot define a stricter model, but in most cases is not truely representative of the correct structure of the XML documents being described.
An example of this is that a number of these tools will create complexTypes consisting of choices with maxOccurs unbounded. This basically states any of the following elements can occur multiple times in any order. Very rarely is this the actual rule.
So if you want to generate an XML Schema you should expect to spend quite a bit of time tightening up these definitions where approrpriate before registering it with XML DB.

Similar Messages

  • Querying in the xmltype table

    apart from XQuery,
    i know Oracle provided X-Path based search also.
    can anyone direct me what's wrong with the following statement?
    it returns "no rows selected".
    THX~
    e.g.1
    select extract(value(it),'/Cap/@ctitle').getStringVal() as CTITLE
    from ord_xmltype_tbl,
    table (xmlsequence(extract(object_value,'Ordinace/Chapter/Cap'))) it
    where contains (object_value,'Commonwealth INPATH (/Ordinance/Chapter/Cap/Section/Content/English)') > 0;
    e.g.2
    select extract(object_value,'/Ordinance/Chapter/Cap/@ctitle').getStringVal() as CTITLE
    from ord_xmltype_tbl,
    table (xmlsequence(extract(object_value,'/Ordinace/Chapter/Cap'))) it
    where existsnode(object_value,'//English[contains(.,"SHORT TITLE AND APPLICATION")>0]')>0;
    e.g.3
    select extract(value(it),'/Cap/@ctitle').getStringVal() as CTITLE
    from ord_xmltype_tbl,
    table (xmlsequence(extract(object_value,'/Ordinace/Chapter/Cap'))) it
    where existsnode(object_value,'//English[ora:contains(.,"SHORT TITLE AND APPLICATION")>0]', 'xmlns:ora="http://xmlns.oracle.com/xdb"')>0;
    and what index i should create for the xmltype table?
    in order to speed up the search?
    this is the skeleton of the xmltype table
    <Ordinance xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localhost:8081/public/hkliss/ordinance.xsd">
    <Chapter ctitle="致命意外條例" etitle="FATAL ACCIDENTS ORDINANCE" id="22">
    <Cap ctitle="致命意外條例" etitle="FATAL ACCIDENTS ORDINANCE" id="22">
    <Section ctitle="詳題" etitle="Long title" id="0">
    <VersionDate>1997-06-30</VersionDate>
    <Content>
    <Chinese></Chinese>
    <English></English>
    </Content>
    </Section>
    </Cap>
    <Cap>....</Cap>
    <Cap>....</Cap>
    <Cap>....</Cap>
    <Cap>....</Cap>
    <Cap>....</Cap>
    <Cap>....</Cap>
    </Chapter>
    </Ordinance>
    thx, expert~
    i'm held up in my project right now~~~

    (please read a little from the manuals...you have already spend so much time on asking stuff, that if you would have
    read manuals, you also would understand the things pointed out to you and it would have given you a faster result...)
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/functions051.htm#i1006712
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/functions048.htm#i1006711
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/functions052.htm#i1131042
    The optional namespace_string must resolve to a VARCHAR2 value that specifies a default mapping or namespace mapping for prefixes, which Oracle uses when evaluating the XPath expression(s).
    is xmlns:ora="http://xmlns.oracle.com/xdb evaluating your Xpath expression, I don't think so...
    If I take your examples shown here (http://forums.oracle.com/forums/message.jspa?messageID=1765571#1765571) as a starting point...
    the query:
    select extract(value(it),'/Cap/@ctitle').getStringVal() as CTITLE
    from ord_xmltype_tbl,
    table (xmlsequence(extract(object_value,'/Ordinace/Chapter/Cap'))) it
    where existsnode(object_value,'//English[ora:contains(.,"SHORT TITLE AND APPLICATION")>0]', 'xmlns:ora="http://xmlns.oracle.com/xdb"')>0;would resolve in
    select extract(value(it),'/Cap/@ctitle').getStringVal() as CTITLE
    from ord_xmltype_tbl,
    table (xmlsequence(extract(object_value,'/Ordinace/Chapter/Cap', 'xmlns:ora="http://localhost:8081/public/hkliss/ordinance.xsd"'))) it
    where existsnode(object_value,'//English[ora:contains(.,"SHORT TITLE AND APPLICATION")>0]', 'xmlns:ora="http://localhost:8081/public/hkliss/ordinance.xsd"')>0;
    But I would start with a simple "extract" or "existnode" statement, see if I get data output, and then build my SQL statement from there.

  • To increase the XMLtype column data length

    Hi ,
    I have created a Table with an XMLtype column , when I am checking the data length it is showing only 2000.
    How can I increase the length.
    DBMS_METADATA.GET_DDL('TABLE','CC_EVENT_MESSAGES','UNS_STAGING_DEV5')
      CREATE TABLE "UNS_STAGING_DEV5"."CC_EVENT_MESSAGES"
       (    "SRC_SYSTEM_CD" VARCHAR2(10) NOT NULL ENABLE,
            "SRC_SEQUENCE_NUM" NUMBER NOT NULL ENABLE,
            "SRC_EVENT_NAME" VARCHAR2(255) NOT NULL ENABLE,
            "SRC_EVENT_XSD_NAME" VARCHAR2(255) NOT NULL ENABLE,
            "SRC_EVENT_DATE" DATE NOT NULL ENABLE,
            "INSERT_TS" TIMESTAMP (6) NOT NULL ENABLE,
            "PROCESSED_TS" TIMESTAMP (6),
            "STAGING_NUM" NUMBER NOT NULL ENABLE,
            "MESSAGE_STATE" VARCHAR2(10) NOT NULL ENABLE,
            "MESSAGE_FRAME" "SYS"."XMLTYPE"  NOT NULL ENABLE
       ) SEGMENT CREATION IMMEDIATE
      PCTFREE 0 PCTUSED 0 INITRANS 1 MAXTRANS 255
    NOCOMPRESS LOGGING
      STORAGE(INITIAL 1048576 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
      BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
      TABLESPACE "UNS_STAGING_DEV5"
    XMLTYPE COLUMN "MESSAGE_FRAME" STORE AS BASICFILE CLOB (
      TABLESPACE "UNS_STAGING_DEV5" ENABLE STORAGE IN ROW CHUNK 8192 RETENTION
      CACHE
      STORAGE(INITIAL 65536 NEXT 65536 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
      BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT))
       CACHE
    SQL> select OWNER,TABLE_NAME,column_name,data_type,data_length from dba_tab_columns where DATA_TYPE like '%XMLTYPE' and owner not in ('SYS','SYSTEM','XDB');
    OWNER                TABLE_NAME           COLUMN_NAME     DATA_TYPE  DATA_LENGTH
    UNS_STAGING_DEV5     CC_EVENT_MESSAGES    MESSAGE_FRAME   XMLTYPE           2000

    I have created a Table with an XMLtype column , when I am checking the data length it is showing only 2000.
    Don't rely on this value, it's wrong.
    XMLType datatype inherits the properties of its underlying LOB storage, in the present case CLOB, which can store TBs of data.

  • HP LaserJet Enterprise 500 551dn - where did the drivers go?

    I go to the download page to download the drivers for this 551dn.  I download all windows 7, 8, 8.1, 2008, 2012, so that i can put them on my print server.  I downloaded them from here..
    <http>//h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=5081348&lang=en&lang=en&cc=lamerica_n...
    when i get the file, lets say for windows 7/64bit, i choose...
    HP LaserJet Enterprise 500 color M551 Printer Series PCL6 Print Driver (no Installer) 61.130.04.12834
    24 Sep 2014 21.3
    I get the file downloaded (LJEnt-color-M551-Drv-no-installer_12297.exe), i run it, get the security warning and Run.  the file extracts - then POOF, the installer is gone.
    where did the files go?  They aren't on the root of the C: drive, a folder/files were not created on my desktop, no files or folder created in my downloads folder.
    I was never asked for a file save location.... ???  really?   is this this basic stuff? 
    Where are the files?  this $$$ printer is a brick until i get drivers! 
    Thanks!
    Jason
    UPDATE- I FOUND THE FILES!!
    First of all, HP... i'm not impressed.
    All the files for all the drivers are in a series of temp folders...
    C:\Users\-myusername-\AppData\Local\Temp\3\7zS4A73
    really?
    hope this helps someone. 

    There is no change to this problem after 6 months since the last post. Put simply, and as stated in the previous posts, there is no way to scan a document and receive the image on your PC. If you are working with graphics for any length of time or want to create an image for inclusion as an image in a document or web page using this piece of equipment will not allow you to do so.
    Great shame as every other function works well - it cannot be beyond the wit of HP to include a Windows application that enables you to scan an image, receive it in the software you are using at the time (e.g. Outlook, Word, Photoshop...) and use it in your work.
    HP Printers several years older than this £1000+ Enterprise printer were able to do this simple job and have done so for a great many years. Just being able to use Microsoft's Fax and Scan would be start.

  • Sometimes I can't get out of Day view in iCal.  There is no where on the screen to select month view, even when I close it out and go back into iCal.

    Sometimes I am locked in "day" view in iCal.  There is no where on the screen to choose "month" view, even when I close it out and open again.  Tapping anywhere on the screen or scrolling doesn't help.

    Give this a try:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents the following folder: User/Library/Containers/com.apple.iPhoto
    3 - reboot, launch iPhoto and try full screen again.
    NOTE: For Mavericks and Yosemite,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    where you can check the Show Library Folder checkbox.

  • Where did the Stream 7 drivers go?

    The support page for downloading drivers for the HP Stream 7 tablet (any model) has disappeared from the HP website.
    Navigating to the HP Stream 7 support page, Selecting "Software and Drivers", then "Go directly to software and drivers page", Operating System "Windows", then Version "Windows 8.1" (the only choices), then clicking the Update button, gives a message "No software or drivers are available for this product with the selected operating system. Please make a different selection, or visit the product homepage. " This happens using Firefox, IE 11, or Chrome.
    These drivers have been missing for at least a few weeks, and multiple forum users have also had no luck finding them. Before that time the drivers seemed to come and go randomly, but they've stayed missing now for weeks.  One dorum user has posted direct FTP links to the drivers, and they might be the latest version, but not really sure.
    Where did the drivers go, HP?

    This is for the 5701 as of a few days ago.
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​7.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7027​5.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7034​0.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7033​9.exe
    http://ftp.hp.com/pub/softpaq/sp70001-70500/sp7033​7.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​8.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​5.exe
    http://ftp.hp.com/pub/softpaq/sp69001-69500/sp6930​9.exe

  • How do I figure where is the data in a materialized view coming from

    Hi: when I run select NAME, OWNER from dba_mview_refresh_times, I see a number of materialized views. How do I find more details about this view i.e where is the data coming from and which fields. The source table that is in another database changed. But the view on my database where the materialized view exist has not changed. I want to confirm from where is data coming in this view
    TIA
    Ravi

    SQL>  select * from dict where table_name like 'ALL%MVIEW%'
    TABLE_NAME                     COMMENTS                                                             
    ALL_BASE_TABLE_MVIEWS          All materialized views with log(s) in the database that the user can s
                                   ee                                                                   
    ALL_MVIEWS                     All materialized views in the database                               
    ALL_MVIEW_AGGREGATES           Description of the materialized view aggregates accessible to the user
    ALL_MVIEW_ANALYSIS             Description of the materialized views accessible to the user         
    ALL_MVIEW_COMMENTS             Comments on materialized views accessible to the user                
    ALL_MVIEW_DETAIL_PARTITION     Freshness information of all PCT materialized views in the database  
    ALL_MVIEW_DETAIL_RELATIONS     Description of the materialized view detail tables accessible to the u
                                   ser                                                                  
    ALL_MVIEW_DETAIL_SUBPARTITION  Freshness information of all PCT materialized views in the database  
    ALL_MVIEW_JOINS                Description of a join between two columns in the                     
                                   WHERE clause of a materialized view accessible to the user           
    ALL_MVIEW_KEYS                 Description of the columns that appear in the GROUP BY               
                                   list of a materialized view accessible to the user                   
    ALL_MVIEW_LOGS                 All materialized view logs in the database that the user can see     
    ALL_MVIEW_REFRESH_TIMES        Materialized views and their last refresh times  for each master table
                                    that the user can look at                                           
    ALL_REGISTERED_MVIEWS          Remote materialized views of local tables that the user can see      
    13 rows selected.

  • What/Where is the Value Lifecycle Manager (VLM)

    What/Where is the Value Lifecycle Manager (VLM)
    I was just reviewing an ASUG presentation from Soledad Alvarado Ganzhorn of SAP NetWeaver Product Management at SAP Labs. It describes a value lifecycle manager tool that includes:
    &#56256;&#56457;Value Discovery content includes: Interview Questions, Pain Points, Best Practices, Solution Enablers, Value Drivers & KPI's, and Data Requests
    &#56256;&#56457; A Knowledge Management Platform – Retrieve and Enter content
    &#56256;&#56457; A Highly Flexible and Customizable Business Case Building and Reporting Platform
    &#56256;&#56457; Used by Value Engineers, Solution Engineers, ISG, Partners and others
    Is anyone aware if SAP is using this tool already? Will customers get access to it? This sounds like a replacement for the business case builder which I haven't seen either. It would be nice if customers had access to these sorts of discovery tools. Since we don't utilize SAP consulting, we are often not able to access this content as we initiate new initiatives. It would be nice to have access as it seems like we are internally selling their software for them.

    The tool is available. It is at the following URL:
    https://sapvalueengineering.com/VLM2/client.page
    SAP has nominated select Partners that have access to the tool. You can probably check with the SAP partner relationship manager in your organization to see if you have access to this tool.

  • Photoshop CC video: Where is the audio flyout menu? I want to set the audio level of a clip but when I click the little triangle the flyout only offers Motion options, no audio.

    I created a video clip by ripping from a (non-protected) DVD & brought it into Photoshop CC for editing. I want the audio to fade in & out but cannot find any audio controls!
    The info I've found online says to click the little triangle at the right end of the clip & I should get the audio flyout menu, but all I get is a menu with "Motion" options.
    Please help!! Where are the audio options I see on the tutorials?
    Thanks ...

    The audio was indeed in there; I could hear it! But I found the fix:
    Some Googling revealed that the timeline video sprites should appear *blue*, not purple as in my screenshot. I'm not sure how that happened, but I scrapped the project & restarted from scratch - and though I can't say what I did differently, this time the video sprite in the timeline was blue, and the audio flyout was there! So it's all good, thanks!

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • When I import files (copy from jpeg or copy as DNG from raw, where is the full size original stored?

    I have the photos go here file, does LR5 put the untouched original there? Do I need my own file for originals and if so, how does LR5 know where to find the full size original? I have everything working but don't understand where my untouched originals go after import. Say I import off my card to My Pictures/Lightroom Catalog/ Photos go here ..... are my originals there? What if I erase my card now, do I only have partial size negatives basically? I don't understand why LR5 didnt put in an originals do here file that imports the full photo to a stock folder. I am so confused I am about ready to throw out LR5. I even bought your instructional DVD and it doesnt make where the original files location clear, it just repeats that LT5 does NOT import the original, just thumbnail and instructions, where is the program getting the photo when I double click to open it , or am I only seeing a lower resolution version of the photo and the full res is now gone because I formatted the card?

    When you import photos, you can choose "Copy" or "Move" or "Copy as DNG", and then select a destination folder on your hard disk. This happens on the right hand side of the Import dialog box. So your original files go to this destination folder.
    Alternatively, if your photos are already on your hard disk, you can import by choosing "Add" and the original photos remain in the existing location.
    If you're not sure where the photos are, open Lightroom, go to the Library Module, and on the right hand side is the Metadata Panel. Set the dropdown to "Default", and it will show you where your photos are stored. Alternatively, you can right-click on any photo and select "Show In Finder"/"Show in Explorer" and Lightroom will take you to the exact folder where the photo is located.
    So, bottom line, you are in total control of where the originals go, and if your forgot where you put them, or made a mistake, you can always find out where they are.
    What if I erase my card now, do I only have partial size negatives basically?
    If your import was successful, then the photos are now stored on your hard disk. So you have the full size original for Lightroom to work with.
    it just repeats that LT5 does NOT import the original, just thumbnail and instructions
    Lightroom does import the original, which means, in Lightroom jargon, that it records the location and metadata about the photo; in other words, Lightroom knows where the photo is, but Lightroom NEVER contains your photo, your photo is ALWAYS stored on the hard disk.
    Because Lightroom now knows where your photo is located, it is important that you not manage your photos (move, edit, rename, delete) outside of Lightroom. Photo managements tasks now must be done in Lightroom. (There are advanced methods that let you manage your photos outside of Lightroom, but these would be NOT RECOMMENDED for beginners)

  • Where is the hyphen (-) on the apple TV?  I am trying to set up my network and there is a hyphen in the password for the network

    Where is the hyphen on the apple TV?  I am trying to set up my network and there is a hyphen in the password for the network

    A few options to try:
    They hyphen should be next to the + on the character map.
    If you are still having issues, provided your ATV software is up to date, you can now connect an Apple Wireless Keyboard through bluetooth connections.
    Change your network password so it does not use a hyphen
    Good luck!

  • Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running google maps app on the phone. Siri cannot seem to get me to a specific address. Where does the problem lie? Thanks.

    Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running Google Maps app on the phone. SIRI cannot seem to get me to a specific address. Where does the problem lie? Also can anyone tell me the hierarchy of use between the Apple Maps, SIRI, and Google maps when the app is on the phone? How do you choose one over the other as the default map usage? Or better still how do you suppress SIRI from using the Apple maps app when requesting a "go to"?
    I have placed an address location into the CONTACTS list and when I ask SIRI to "take me there" it found a TOTALLY different location in the metro area with the same street name. I have included the address, the quadrant, (NE) and the ZIP code into the CONTACTS list. As it turns out, no amount of canceling the trip or relocating the address in the CONTACTS list line would prevent SIRI from taking me to this bogus location. FINALLY I typed in Northeast for NE in the CONTACTS list (NE being the accepted method of defining the USPS location quadrant) , canceled the current map route and it finally found the correct address. This problem would normally not demand such a response from me to have it fixed but the address is one of a hospital in the center of town and this hospital HAS a branch location in a similar part of town (NOT the original address SIRI was trying to take me to). This screw up could be dangerous if not catastrophic to someone who was looking for a hospital location fast and did not know of these two similar locations. After all the whole POINT of directions is not just whimsical pasttime or convenience. In a pinch people need to rely on this function. OR, are my expectations set too high? 
    How does the iPhone select between one app or the other (Apple Maps or Gppgle Maps) as it relates to SIRI finding and showing a map route?  
    Why does SIRI return an address that is NOT the correct address nor is the returned location in the requested ZIP code?
    Is there a known bug in the CONTACTS list that demands the USPS quadrant ID be spelled out, as opposed to abreviated, to permit SIRI to do its routing?
    Thanks for any clarification on these matters.

    siri will only use apple maps, this cannot be changed. you could try google voice in the google app.

  • Where is the binary data of this icon stored and retrieved from Application server?

    Hello guys,
    Today I observed one phenomenon and could not explain it per my knowledge.
    I have one url which points to an icon in application server:
    https://<host name>:44301/sap/public/bc/ur/nw5/themes/sap_corbu/common/libs/Icon/SuccessMessage.gif
    I could successfully open it via chrome:
    and after that I could see an entry in ICM server cache. Everything works perfectly.
    Then I tried to check this icon in mime browser in SE80. To my surprise, the folder /sap/public/bc/ur/nw5/themes is empty.
    However, the ICM cache shows that there is a subfolder called "sap_corbu" under "themes" folder. But why I cannot find it in mime browser?
    Then I write a report to retrieve the binary data of icon via CL_HTTP_CLIENT, and clear the ICM buffer via tcode SMICM.
    I expect this time some database table will be queried to load the content of the icon, since now the buffer is not available.
    To my surprise again, in SAT no database table is involved.
    So now I am confused: since I have already cleared the ICM server cache, where does the icon binary data come from when I run the report to access the icon?
    Best regards,
    Jerry

    Hello guys,
    one colleague today told me that there is a zip file "ur_mimes_nw7.zip" in MIME repository /PUBLIC/BC/UR/ur_mines_nw7.zip. I download it locally and unzip it and indeed find many theme folders including sap_corbu folder and its resource files. So I guess there must be some logic done in web application server which will unzip this archive file and put each theme folder to the corresponding folders in application server. I would assume those logic are done outside ABAP stack side, this is the reason I cannot find any hint of them in ABAP backend via tcode SAT even I clear both client and server side cache.
    Best regards,
    Jerry

  • Where is the parameter panel on the embedded Crystal Report preview in Visu

    Where is the parameter panel on the embedded Crystal Report preview in Visual Studio?
    I found a tweet on google about this.. but the link is invalid.. and I could not find the article on SDN.
    KB #1486469 - Where is the parameter panel on the embedded Crystal Report preview in Visual Studio? http://tinyurl.com/22thlcg
    How do I the show parameter dialog in either WPF or Winforms viewer of Visual Studio 2010.
    Parameters are not even visible in the Parameters Side panel. It is empty too..
    I see two classes ParameterPrompting and ParameterPrompt both, on initialization throws exception.. even to manually invoke them...
    Is it permanently removed?

    Hello,
    Seems like a reported Bug.
    Please check:
    Re: CRVS2010 - Hide Group Tree and Parameter Panel
    A possible woraround but you need to change as per your need:
    CRVS 2010 BETA - WPF Viewer - How to hide SidePanel?
    Hope it helps.
    Thanks.

Maybe you are looking for