XMLTable to extract columns with conditional path does not

Hello

I am on 11.2.0.3 and I need to extract columns on a section of XML with conditions on, but I get "ORA-00907: lack the right parenthesis", so I think that the way I go about it is not supported or that I have somehow the wrong syntax or something.

This is a very simplified what I'm trying to do (there could be several different entries in the < sets1 > and < sets2 > sections and they might be in different orders, is not as if I can always choose the first or the last):

with sample_data as (select 1 id,
                            xmltype('<root>
                                       <sets1>
                                         <set1><set_name>name1</set_name><set_val>val1</set_val></set1>
                                         <set1><set_name>name2</set_name><set_val>val2</set_val></set1>
                                       </sets1>
                                       <sets2>
                                         <set2><set_name>name3</set_name><set_val>val3</set_val></set2>
                                         <set2><set_name>name4</set_name><set_val>val4</set_val></set2>
                                       </sets2>
                                     </root>') xml_doc from dual)
select *
from   sample_data sd,
       xmltable('<root>' passing sd.xml_doc
                columns col1 varchar2(10) path 'sets1/set1[set_name=''name1'']/set_val',
                        col2 varchar2(10) path 'sets1/set1[set_name=''name2'']/set_val',
                        col3 varchar2(10) path 'sets2/set2[set_name=''name4'']/set_val') x;

What I'm trying to get:

COL1  COL2  COL3
----  ----  ----
val1  val2  val4

I know that I could separate the < set1 > and < set2 > nodes in their own xmltypes xmltable on it and then join them and make the necessary pivoting, etc., but when I try to start that against only 1000 lines, db do not love and ended my session! Therefore, I'm looking for a more elegant way to do it.

Is there a way to do this in a XMLTABLE? Pointers are very welcome!

It solves your problem of sample request and you get the output that show you.

 with sample_data as (select 1 id,
                             xmltype('
                                        
                                          name1val1
                                          name2val2
                                        
                                        
                                          name3val3
                                          name4val4
                                        
                                      ') xml_doc from dual)
 select x.*  -- change
 from   sample_data sd,
        xmltable('/root' passing sd.xml_doc  -- change
                 columns col1 varchar2(10) path 'sets1/set1[set_name="name1"]/set_val',  -- change
                         col2 varchar2(10) path 'sets1/set1[set_name="name2"]/set_val',  -- change
                         col3 varchar2(10) path 'sets2/set2[set_name="name4"]/set_val') x;  -- change

As you can see, I've marked the lines that I've changed.  The error you saw came to use two single quotes in the COLUMN XPath instead to use double quotes.  Then I changed the XPath expression in the XMLTable brackets as well.

I'm confused on what the columns you really want overall, in terms of how you know which values you want, or did you mean that you want something random sets1 and sets2.

You store the XML file in a column of XMLType SECUREFILE BINARY, right?  It seems that you made previous visits, but just double check.

Tags: Database

Similar Questions

  • How to avoid duplicates on a column with condition

    Hi all

    I need some advice here. At work, we have an Oracle APEX application that allow the user to add new records with the decision of the increment automatic number based on the year and the group name.

    Said that if they add the first record, group name AA, for 2012, they get the decision number AA 1 2013 as their record casein displayed page of the report.

    The second record of AA in 2013 will be AA 2 2013.

    If we add about 20 records, it will be AA 20 2013.

    The first record for 2014 will be AA 1 2014.

    However, recently, we get a claim of the user on two files of the same name of group have the same number of the decision.

    When I looked in the history table and find that the time gap between 2 record is about 0.1 seconds.

    In addition, we have the correspondence table which allows the user admin update the sequence number start with the restraint that it must be greater than the maximum number of the current name of the current year.

    This boot sequence number and the name of the group is stored together in a table.

    And in some other case, the user can add a decision duplicate for related record number. (this is a new feature)

    The current logic of the procedure to add the new record on the application are

    _Get max record table with selected group name (decision_number) and the current year.

    _INSERT in the folder table the new record came with the decision to number + 1

    _ update sequence number of the number of the decision just added.

    So instead of utitlising the process of editing the built-in automatic table of the APEX, I write a procedure that combine all three processes.

    I have run some loop for continually perform this procedure, and it seems that it can generate autotically new decision unique number with time about 0.1 second difference.

    However, when I increase the number of entry to 200 and let two users run 100 each.

    If the time gap is about 0.01 second, double decision numbers are displayed.

    What can I do to prevent duplicate?

    I can't just apply a unique constraint here for three columns with condition because it can be duplicated in some special conditions. I don't know much about the use of lock and its impact.

    This is the content of my procedure

    create or replace

    PROCEDURE add_new_case)

    -ID just use the trigger

    p_case_title IN varchar2,

    p_year IN varchar2,

    p_group_name IN VARCHAR2,

    -decisionnumber here

    p_case_file_number IN VARCHAR2,

    -active

    p_user in VARCHAR2

    )

    AS

    NUMBER default_value;

    caseCount NUMBER;

    seqNumber NUMBER;

    previousDecisionNumber NUMBER;

    BEGIN

    -execution immediate q '[alter session set nls_date_format = "dd/mm/yyyy"]';

    SELECT count (*)

    IN caseCount

    OF CASE_RECORD

    WHERE GROUP_ABBR = p_group_name

    AND to_number (to_char (create_date, "yyyy")) = to_number (to_char (date_utils.get_current_date, "yyyy"));

    SELECT max (decision_number)

    IN previousDecisionNumber

    OF CASE_RECORD

    WHERE GROUP_ABBR = p_group_name

    AND to_number (to_char (create_date, "yyyy")) = to_number (to_char (date_utils.get_current_date, "yyyy"));

    IF p_group_name IS NULL

    THEN seqNumber: = 0;

    ON THE OTHER

    SELECT Seq_number INTO seqNumber FROM GROUP_LOOKUP WHERE ABBREVIATION = p_group_name;

    END IF;

    IF caseCount > 0 THEN

    default_value: largest = (seqNumber, previousdecisionnumber) + 1;

    ON THE OTHER

    default_value: = 1;

    END IF;

    INSERT INTO CASE_RECORD (case_title, decision_year, GROUP_ABBR, decision_number, case_file_number, active_yn, created_by, create_date)

    VALUES (p_case_title, p_year, p_group_name, default_value, p_case_file_number, 'Y', p_user, sysdate);

    -Need to update the sequence here also

    UPDATE GROUP_LOOKUP

    SET SEQ_NUMBER = default_value

    WHERE the ABBREVIATION = p_group_name;

    COMMIT;

    EXCEPTION

    WHILE OTHERS THEN

    Logger.Error (p_message_text = > SQLERRM)

    , p_message_code = > SQLCODE

    , p_stack_trace = > dbms_utility.format_error_backtrace

    );

    LIFT;

    END;

    Many thanks in advance,

    Ann

    It's easier to solve for the case, while p_group_name is not null. In this case, you update a GROUP_LOOKUP line, so that you can select to update this line at the beginning, to prevent cases of two for the same group added at the same time. To do this, change the selection of GROUP_LOOKUP to:

    SELECT Seq_number INTO seqNumber FROM GROUP_LOOKUP WHERE ABBREVIATION = p_group_name for an updated VERSION OF the SEQ_NUMBER;

    and move this to be the first thing that did the procedure - before it has CASE_RECORD lines.

    In the case when p_group_name is set to null, you have some object to be locked. I think the best you can do is to lock the entire table GROUP_LOOKUP:

    the table lock in exclusive mode GROUP_LOOKUP wait 100;

    The '100 expectation' means that he will wait until 100 seconds before giving up and trigger an error. in practice, that is expected to only wait a moment.

    Exclusive mode allows others to read, but not to update the table.

    UPDATES and the LOCK of the TABLE will be updates of other sessions wait for this transaction to validate. Queries from other sessions are not affected.

    The locks are released when you commit or roll back.

  • When I try to open a game (Chess Titans, inkball, etc.), I get the following message: "c:\Program Files\Microsoft Games\Chess\Chess.exe the specified path does not exist.

    When I try to open a game (Chess Titans, inkball, etc.), I get the following message: "c:\Program Files\Microsoft Games\Chess\Chess.exe the specified path does not exist.  Check the path and then try again. "Should I do to get my games back so I can play them?  I've tried enabling/disabling of Windows features, but it did nothing.  I also tried to go through the run, but that has not worked.  And, I tried command prompt, but it says that I am not the administrator, who I am.

    Not accessible games

    I haven't had any changes consciously, and the games do not work in any user account.  When I've done sfc/scannow (command prompt) he said that I was not the administrator.  I could learn from another source to solve this problem - in the start menu, right click on the command prompt icon, and then click Run as administrator.  Hope everybody help with this problem.  If you do not have command prompt in your Start menu, any type of command prompt in your search box and it should appear.

    Anyway, my games work now.  Thank you

  • create new folder, but the path does not exist.  That's why I need to create!

    I want to take their existing case files, wallpapers and move them into a new catalog LR, jpg_edits.  In the import window, I left click on the parent, my photos and get 'create a new folder '. After which a new folder creation box opens to display the ms mode my file Explorer and the parent.  But he says to Select a folder, so when I try to type the new name, they tell me the path does not exist.  Which may be the reason I'm trying to create the new folder.  Everything seems to be able to do is to slect the existing folders.  Where is the creation of a new part of catalogue record?

    If I understand the question, you want to create a new destination folder in an existing parent folder. Fix? Once you click the folder parent in the Destination panel (left side of the screen to import), expect the top of the Destination table. You will find two elements here. The first, in the subfolder, allows you to enter the name of the new subfolder to create but it must ensure that the box is checked. Select the check box and enter the name of the file in the text field. Then, select the option in a single folder drop-down organizing. With these options, you will see a new subfolder in the tree under your (grey) selected parent folder. Even once all this is done on the right side of the screen to import.

  • Error installation - payload path does not exist and no trace of media not specified.

    Hi all

    When I tried to install the photosohop CS5, the errors below oust prompting. Can someone help me fix these errors! Thank you!

    Exit code: 7

    -------------------------------------- Summary --------------------------------------

    -0 fatal Error (s), 70 (s), 58 warning (s)

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    ERROR: DS011: payload path does not exist and no trace of specified media.

    WARNING: DW024: payload: Adobe Photoshop CS5 Core {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} requires a parent from the user interface with the following specification:

    Family: Photoshop

    ProductName: Adobe Photoshop CS5 Core_x64

    This parent relationship is not satisfied, because this charge is not present at this session.

    WARNING: DW025: payload with AdobeCode: {A334FDED-DCCA-481E-B226-F902CCC419D2} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    WARNING: DW025: payload with AdobeCode: {A334FDED-DCCA-481E-B226-F902CCC419D2} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 Dolby WRAPPER X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    WARNING: DW025: payload with AdobeCode: {A334FDED-DCCA-481E-B226-F902CCC419D2} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 WRAPPER PCI X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: Adobe Player for embedding x 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: Shared Technology

    ProductName: Photoshop Camera Raw (64-bit)

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: AdobeCMaps x 64 CS5

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: Adobe Linguistics CS5 x 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: AdobePDFL x 64 CS5

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: AdobeTypeSupport x 64 CS5

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    ERROR: DW025: the payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} demanded dependence on:

    Family: CoreTech

    ProductName: Adobe WinSoft language Plugin CS5 x 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    WARNING: DW025: payload with AdobeCode: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    WARNING: DW025: payload with AdobeCode: {E8815668-95B0-443D-AC92-2BFD7DD8F16A} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    ERROR: DW025: the payload with AdobeCode: {F9766AC1-1461-1033-B862-DF8FE1C033BE} demanded dependence on:

    Family: InDesign

    ProductName: Adobe InDesign CS5 icon Manager x 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Removing this dependency of the list. Product may work correctly.

    WARNING: DW025: payload with AdobeCode: {F9766AC1-1461-1033-B862-DF8FE1C033BE} recommended dependence on:

    Family: Adobe Web Suite CS5

    ProductName: Adobe Media Encoder CS5 X 64

    MinVersion: 0.0.0.0

    This dependency is not satisfied, because this charge useful is x 64 and is not supported on this computer.

    Remove this payload to the list of dependencies.

    -Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0.

    ERROR: Install payload MSI failed with the error: 1612 - the installation source for this product is not available. Verify that the source exists and that you can access.

    MSI error message:

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    WARNING: DW036: payload cannot be installed due to the failure of the operation dependent

    ERROR: DW050: the following payload errors were found during the installation:

    ERROR: DW050:-Adobe CS5 Infrastructure CSXS: installation failed

    ERROR: DW050:-Microsoft_VC90_ATL_x86: installation failed

    ERROR: DW050:-Adobe Media Player: installation failed

    ERROR: DW050:-SiteCatalyst NetAverages: installation failed

    ERROR: DW050:-Microsoft_VC90_CRT_x86: installation failed

    ERROR: DW050:-Support for Adobe Photoshop CS5: installation failed

    ERROR: DW050:-Adobe Bridge CS5: installation failed

    ERROR: DW050:-Microsoft_VC80_ATL_x86: installation failed

    ERROR: DW050:-DeviceCentral_DeviceCentral3LP-en_US: installation failed

    ERROR: DW050:-Creative Suite 5 Master Collection: installation failed

    ERROR: DW050:-Adobe XMP panels CS5: installation failed

    ERROR: DW050:-Adobe Player for Embedding: installation failed

    ERROR: DW050:-Photoshop Camera Raw: installation failed

    ERROR: DW050:-AdobeColorCommonSetCMYK: installation failed

    ERROR: DW050:-AdobeHelp: installation failed

    ERROR: DW050:-camera profiles Installer: installation failed

    ERROR: DW050:-Adobe Mini Bridge CS5: installation failed

    ERROR: DW050:-AdobeColorJA CS5: installation failed

    ERROR: DW050:-the Committee of Adobe CS5: installation failed

    ERROR: DW050:-Adobe BrowserLab CS Live: installation failed

    ERROR: DW050:-Microsoft_VC90_MFC_x86: installation failed

    ERROR: DW050:-CSXS Extension history: installation failed

    ERROR: DW050:-Suite Shared Configuration CS5: installation failed

    ERROR: DW050:-Adobe CS5 language: installation failed

    ERROR: DW050:-PDF settings CS5: installation failed

    ERROR: DW050:-DeviceCentral: due to a lack of Language Pack installation

    ERROR: DW050:-AdobeTypeSupport CS5: installation failed

    ERROR: DW050:-AdobeColorVideoProfilesCS CS5: installation failed

    ERROR: DW050:-AdobeColorCommonSetRGB: installation failed

    ERROR: DW050:-Adobe Photoshop CS5 Core: due to a lack of Language Pack installation

    ERROR: DW050:-Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB: installation failed

    ERROR: DW050:-Adobe CS5 Extensions CSXS: installation failed

    ERROR: DW050:-AdobeOutputModule: installation failed

    ERROR: DW050:-Microsoft_VC80_CRT_x86: installation failed

    ERROR: DW050:-Adobe Illustrator CS5: due to a lack of Language Pack installation

    ERROR: DW050:-Adobe WinSoft Linguistics Plugin CS5: installation failed

    ERROR: DW050:-AdobeColorEU CS5: installation failed

    ERROR: DW050:-AdobePDFL CS5: installation failed

    ERROR: DW050:-HIL help search: installation failed

    ERROR: DW050:-AdobeCMaps CS5: installation failed

    ERROR: DW050:-AdobeColorNA CS5: installation failed

    ERROR: DW050:-Installation of common fonts required: installation failed

    ERROR: DW050:-standard Adobe 2.0: installation failed

    ERROR: DW050:-Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack: installation failed

    ERROR: DW050:-Microsoft_VC80_MFC_x86: installation failed

    ERROR: DW050:-AdobeColorPhotoshop CS5: installation failed

    ERROR: DW050:-Microsoft_VC80_MFCLOC_x86: installation failed

    ERROR: DW050:-Installation of recommended common fonts: installation failed

    ERROR: DW050:-CS5 Adobe Extension Manager: installation failed

    ERROR: DW050:-AdobeJRE: installation failed

    ERROR: DW050:-Adobe ExtendScript Toolkit CS5: installation failed

    ERROR: DW050:-Adobe AIR: installation failed

    -------------------------------------------------------------------------------------

    Unfortunately for post-installation on DVD seems corrupted, therefore does not even your local copy.

    Please download it again Internet Setup and keep a copy of it for future use.

    http://prodesigntools.com/all-Adobe-CS5-direct-download-links.html

    Please follow the instructions mentioned carefully.

    Kind regards

    Ashutosh

  • Trace the path does not work in photoshop

    I am doing a logo and the route of the path was working fine. I took the file in illustrator to do something, it has exported in photoshop and now the route of the path does not work. I can right click and select 'Show the way', but it is not fixing the brush stroke. I searched the net and cannot find any solution.

    Can anyone help?

    Hi, I've never really understood why this happened, because no body responded with anything. But what I did is save the file and it opens again in photoshop and it started working. I guess the only thing I can suggest is to check the layer is rasterized or duplicate a new screen and see if it works like that.

  • cluvfy returns the "/tmp/" path does not exist and cannot be created on nodes

    Hello
    I'm installing Oracle RAC for SAP to AIX 5 L.
    After performing due diligence for the installation of cluster service, it returns the following message:
    "/Tmp/" path does not exist and cannot be created on nodes
    This meessage happens after checking access node and the phases of user equivalence.
    This is my complete log:
    pr_bd01/oramedia/clusterware/Disk1/cluvfy / > stage pre - crsinst - n pr_bd01, pr_bd02./runcluvfy.sh

    Conducting due diligence to install cluster services

    Audit accessibility of node...
    Verification of accessibility node from node 'pr_bd01 '.


    Verify the equivalence of the user...
    Check of user equivalence passed for user 'oracle '.

    ERROR:
    "/Tmp/" path does not exist and cannot be created on nodes:
    pr_bd01
    Audit will proceed to nodes:
    pr_bd02

    Check prior to the installation of cluster service failed on all nodes.

    The directory/tmp is a shared file system and oracle user can write and read
    User Oracle ID is the same in both nodes
    The dba group ID is the same in both nodes
    Oinstall GID is identical in the two nodes
    The primary group for the user Oracle is oinstall

    Where is my problem?

    Thank you

    Published by: user8114467 on 02/27/2009 07:17

    You can also run with - verbose flag - what is the difference between / tmp on 2 machines - define export CV_DESTLOC = /.

  • Unlock with Apple Watch does not

    Hello

    I'm running a MacBook Air mid-2013 with macOS Sierra, with a 2nd Gen Apple Watch watchOS3 running. I'm on the same Apple for my Air ID, see and iPhone (6 s).

    But unlock with Apple Watch does not work on my Air. I activated 2 factor authentication. I checked the box that allows to unlock with Apple Watch. Everything seems to be kosher.

    When I close and reopen my Air, "Unlock with Apple Watch" appears for about 10 seconds, and then I type my password.

    Help? Thank you!

    I also have this problem. I have 2 accounts on my Macbook. One is the first account that I don't use, second my regular account. On my Second account, it of the same problem, but with the Admin account... It works.

    I Don t know why.

    Do you use also two accounts?

  • Last night, I did a scan on my computer. He went only 3% when it froze with the server does not.

    Last night, I did a scan on my computer. He went only 3% when it froze with the server does not.

    Can you please explain the concept of what a server is and how can I ensure this does not happen.

    Thank you very much

    original title: Server

    Last night, I did a scan on my computer. He went only 3% when it froze with the server does not.

    Can you please explain the concept of what a server is and how can I ensure this does not happen.

    Thank you very much

    Launched a scan with which product (be specific, up to the exact version)?

    What version and architecture of Windows are you using?

  • I have problems with my DNS does not. It happens every day.

    I'm having problems recently with the DNS does not.  However, it is not a constant problem.  I have access to internet, and then a few hours later will have no access.  It went back and just 3 times in more than a few days., I do not have anything to temporarily solve the problem, it only happens on its own. This occurs regardless wireless or direct.  Thank you...

    original title: DNS is not responding

    Hello


    1. what operating system is installed on the computer?
    2. were there any changes (hardware or software) to the computer before the show?

    Method 1: Perform the steps mentioned below and see if the problem persists.
    a: click on the button "Start".
    b. in the search box, type "invite."
    c. in the list of results, right-click Guest, and then click run as administrator. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
    d. at the command prompt, type ipconfig/flushdns.
     
    Method 2: Click on the link below and see if the problem occurs.
     
    Method 3: Click on the link below and see if the problem resolves.
     

    Hope this information helps.
  • Windows service pack 1 downloads 99.9% but still comes up with error and does not?

    Windows service pack 1 downloads 99.9% but still comes up with error and does not?

    jktjw,

    Please post with the information requested here: what to post in the Windows Update forum
    Start with the troubleshooting steps and post returns with the requested info and arises from the troubleshooting.

    Clean boot your PC, and then run Windows Update.

    Reset the Windows Update components

    Perform operations of KB883825

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I'm opening a JPEG in Adobe Photoshop, but 'Open with' dialog box does not Photoshop

    I'm opening a JPEG in Adobe Photoshop, but the 'Open with' dialog box does not Photoshop in the list of available programs. I have attempte

    Original title: file association

    When Adobe Photoshop is installed it is automatically added to the open with command and usually it is the editor who is added, okay, so in your case, it is not added.

    Right click of your peak, point to open with, click on choose program.

    Put a check mark in the box, always use... If you wish.

    Click on browse, it opens the program files, double-click Adobe, double-click on Photoshop Elements.

    PhotoShopElementsEditor.exe-click, and then click Open

  • Windows Defender: the specified path does not exist.

    What happens if when I have on windows defender, he said

    C: / Program Files/Windows Defender/MSASCui.exe
    the specified path does not exist.
    Check the path and then try again.

    Hello

    "%ProgramFiles%\Windows Defender\MsAsCui.exe".

    Right click on your icon - properties - Shortcut tab and compare your configuration to the one above.

    This is the equivalent of:

    ' C:\Program Files\Windows Defender\MSASCui.exe "'

    Note the space before the P and the / slashes in your. Rob - bicycle - Mark Twain said it is good.

  • Unable to turn on the window Defender, even after that I click on activate the defender of the window. THA page with the tool does not appear...

    Unable to turn on the window Defender, even after that I click on activate the defender of the window on my window vista home premium... The page with the tool does not appear...

    If you have
    one of the following AV, antivirus, programs installed, it will stop your
    Windows Defender. Purpose of these AVs have their own advocates. 2 defenders
    on the same machine will create conflicts.
    Bottom line: it's ok.
    It's normal.
    List of AVs which will stop Windows Defender

    Norton
    McAfee
    AVG
    Microsoft Security
    Essentials

    If you do not have the
    above AV programs, here's how to do to restart Windows Defender:

    Start button > in the search box, type Services > press the Enter key > scroll to find Windows Defender, click on it >...
    topic status , it must be said... Has begun
    under Startup Type, it must be said... Automatic
    If it does not say that, right click on Windows
    Defender > click Properties > to
    Startup type, click on the pointer to the right and select automatic
    to the service status, click Start
    Click OK when finished.

  • Somehow, I lost all my windows games. "C:\Program Files\Microsoft Games\Minesweeper (I got just to click on this game) \Minesweeper.exe the specified path does not exist."

    Hello

    Somehow, I lost all my windows games.  I have Windows Vista Home Premium; Internet Exployer 9 & Service Pack 2.  I don't know if you need any information Add ' l to answer my question.  But if anyone can help me, I'll be very grateful.

    I'm not at all computer literate.  So if you answer me, please give me for exact directions.

    I already watched: Control Panel; Programs of devices &; and the box is checked for the 'games '.  I also clicked on the word 'Games' and all games can up and they are all checked.

    When I try to access the games, I get this message:

    C:\Program Files\Microsoft Games\Minesweeper (I got just to click on this game) \Minesweeper.exe the specified path does not exist.  Check the path and try again.  (But I don't know how to check the path!  Can someone help me?

    Thank you, b.

    C:\Program Files\Microsoft Games\Minesweeper (I got just to click on this game) \Minesweeper.exe the specified path does not exist.  Check the path and try again.

    What do you get the message above? You try to put a tick in the box empty for Minesweeper in Windows turn features on or off?

    If you uncheck the box for games, click OK, restart your PC, then check the box for games, press OK and restart again, what happens?

    Is it one bought for PC & that you own, or is it a PC belonging to the company?

Maybe you are looking for