updateXML function returns error. Syntax problem...

I have a fichierXML that is shown below...

Cat MYTEMP.xml
<? XML version = "1.0" encoding = "AL32UTF8? >
rowset <>
< ROW >
< EDETAIL > test < / EDETAIL >
< T1 > 3 < / T1 >
< / ROW >
< ROW >
Test1 < EDETAIL > < / EDETAIL >
< T1 > 4 < / T1 >
< / ROW >
< ROW >
< EDETAIL > test2 < / EDETAIL >
< T1 > 2 < / T1 >
< / ROW >
< ROW >
< EDETAIL > < / EDETAIL >
< T1 > 1 < / T1 >
< / ROW >
< ROW >
< EDETAIL > < / EDETAIL >
< T1 > 5 < / T1 >
< / ROW >
< / LINES >


I load this xmlfile in an xmltype column in a global temporary table.
I do need to update edetail tag to ' ~:' if it contains only whitespace (s) inside.

I have tried the following command and its me gives error...

insert into gt_xmltype_tab (xmlfile1)
values (XmlType (BFILENAME('RESTOREDIR','MYTEMP.) XML'), nls_charset_id ('AL32UTF8')));

Update gt_xmltype_tab set xmlfile1 = updatexml (xmlfile1, '/ ROWSET/ROW/EDETAIL/text ()','~:')
where extractvalue (xmlfile1, ' / LINES/LINES/EDETAIL ') IS NULL

I get the following error for the updatexml...

Update gt_xmltype_tab set XMLFILE1 = updatexml (XMLFILE1, '/ ROWSET/ROW/EDETAIL/text ()','~:')
*
ERROR on line 1:
ORA-19025: EXTRACTVALUE returns the value of a single node

What is the right way to do it? What I am doing wrong?

What is the right way to do it? What I am doing wrong?

The WHERE clause to filter the records in the table, not to repeat the elements of the XML document.
In fact, I don't know if you want one or the other...

If you have multiple XML files in the table and want to update (table) that when there is something to be updated, then use existsNode in the WHERE clause to check if the XML file has at least an "empty element".

If there is only a single XML in the table, no necessary WHERE clause.

With regard to the update (in the XML document), which is a little tricky.
Once in the table, the spaces are not preserved, so there is actually no text() nodes to update.

One solution is to update the item as a whole:

UPDATE gt_xmltype_tab
SET xmlfile1 = updateXML( xmlfile1
                        , '/ROWSET/ROW/EDETAIL[not(text())]'
                        , XMLElement("EDETAIL", '~:') )
;

Tags: Database

Similar Questions

  • VALIDATION - function returns the error text

    I have a domain that occurs on about 12 pages, I need to post this field with some code

    I created a function on the database that performs this validation, I pass the field value to the function and it returns some text of error, or NULL if the value is correct

    I can't for the life of figure me out how to call the function of APEX

    I've tried everything

    FUNCTION RETURN ERROR TEXT, Expression SQL, PL/SQL Expression... nothing works!

    to call the function my comand is

    FN_VALIDATE_HR1_REF (: P1_GCI,: P1_HR1_REF);

    I want to return the error on the function text and display it in the banner of APEX error

    any help greatly appreciated

    A function like this return error text should work:

    Return (FN_VALIDATE_HR1_REF (: P1_GCI,: P1_HR1_REF));

    Is giving the error?

  • Microsoft Management Console error: this function is not supported on this system. Also noticed that the automatic updates did not install it and returned error 80070005.

    Original title: Microsoft Management Console this feature only is not supported on this system

    I am running Vista 32 bit Business since an administrator account.

    Recently, I noticed that the automatic updates did not install it and returned error 80070005.   After investigation, I found that I could not open mmc at all and always get the message "this function no is not supported on this system.  No major changes have been made to the configuration to trigger it and I can't watch the event log because it is in the MMC.
    I have studied this question in line and tool the following actions, which none worked:
    carried out a complete antivirus scan (I use Commodo internet security)
    created another account administrator
    has run SFC (no problem)
    has run the registry cleaner (no problem)
    has run msconfig.exe and disabled all the startup process
    updated windows right click and run as administrator
    Started in safe mode and tried all above
    After that, I don't know where to go... it doesn't seem to be a download for Windows vista to reinstall mmc.
    I have about 50 updates critical, sitting in my windows update that can not install because of this problem.  Can anyone help?
    Jeff

    Hello Helpmehelpme,

    First, I would check since it is professional Vista was that computer on a field of work or it was already on an area of work? There may be group policies that are in place that prevent to run MMC.

    When did start to happening? Is there anything new on the system which has been introduced into the environment (software, hardware)?

    This thread gives a few steps trying to the original poster that you can't have.

  • ORA 28817 PLSQL function returned an error. When the apex 4 2 instance access

    Hello

    I just upgraded from apex to apex 4.2 4.1. All is well except for this error I get when I try to access the parameter Instance on the App Admin (localhost/apex/apex_admin)
    ORA-28817: PL/SQL function has returned an error
    What could be the problem? How we solve this problem...

    I'm working on the 2012 Win server machine... apex 4.2 with earphone 2 deployed on Glassfish 3.1.2 apex.

    Best regards
    Fateh

    Hello Faye,

    We are already aware of this problem, even if it is not yet present on our Web page of problems known. The reason for this error is that the new facility replaces an instance to the scale encryption key. In the preferences of the instance which have been encrypted with the old value (the SMTP password and the password for the portfolio), the values are not valid after the upgrade and decryption causes this error. As a work around, you can use the apex_instance_admin package to replace the invalid passwords.

    The following code shows how the decryption throws ORA-28817:

    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual
           *
    ERROR at line 1:
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at "APEX_040200.WWV_FLOW_CRYPTO", line 89
    ORA-06512: at "APEX_040200.WWV_FLOW_INSTANCE_ADMIN", line 239
    

    You can fix this by entering new password:

    SYS@a411> exec apex_instance_admin.set_parameter('SMTP_PASSWORD','my smtp password');
    PL/SQL procedure successfully completed.
    
    SYS@a411> exec apex_instance_admin.set_parameter('WALLET_PWD','my wallet password');
    PL/SQL procedure successfully completed.
    
    SYS@a411> select apex_instance_admin.get_parameter('SMTP_PASSWORD') from dual;
    APEX_INSTANCE_ADMIN.GET_PARAMETER('SMTP_PASSWORD')
    ----------------------------------------------------------------------------------------------
    my smtp password
    
    1 row selected.
    

    Kind regards
    Christian

  • function returning the text validation error

    Hello

    I have a page where I can insert/update user, organization, responsible.
    Organization can be nullable.

    A single user can both be responsible for an organization.

    To check this responsible for validation, I made a function that returns the error of validation of text as follows:

    BEGIN
    FOR c IN (SELECT usr_spa
    OF kpi_users
    WHERE usr_org_id =: p22_usr_org_id
    )
    LOOP
    IF upper(:p22_usr_spa) = upper('YES') and upper (c.usr_spa) = upper('YES')
    THEN
    RETURN 'user is already responsible for this organization' |'. ' ;
    END IF;

    END LOOP;

    END;

    The validation works fine.

    But it won't when I want to insert a new user, without attributing it to an organization.
    I get the following message:

    ORA-01722: invalid number

    Cannot run the validation of the "body of the function return text' ERR-1024.

    Can someone please help me solve this problem?

    Thank you

    Hello

    The user selects a body in a select list? If the default value is considered "null %"? If so, you could modify the test to the IF: P22_USR_ORG_ID <>'% "| 'null %' THEN

    Andy

  • Error message: "an internal support function returned an error" trying to attach files in emails.

    Original title: Error message-not invited

    Trying to electronic. Error message: 'an internal support function returned an error.'

    Hello

    Which email client you are using?

    If you are facing the issue in Microsoft Office, you can post your question in the Microsoft Office community & get help support professionals.

    Hope the helps of information.

    Please post back and we do know.

  • I received this warning when I open a specific page on my Web site in Internet Explorer: MuseJSAssert: error calling the function switch: error: a security problem has occurred.

    Hello

    I discovered when I'm in Internet Explorer and go to the page "artists."

    and I click on a name, for example: "Abel team ELA / I ai Gomes

    I get this warning:

    MuseJSAssert: Error calling the function switch: error: a security problem has occurred.

    It is only in IE, not when I use Safari or Chrome

    This is the Web site link

    Any ideas how to solve this problem?

    There is an invalid hyperlink on the Abel Equipe ELA / I've got Gomes page on a piece of text which reads "with"your entry. You must find this text in the Muse, delete the hyperlink and enter a valid.

  • Parse error: syntax error, unexpected $end

    I have the following code in a file to reformat the date.

    <?php do { 
    $timeDate = $row_rsIndex['timeDate'];
    $date = date("M j, Y",strtotime("$timeDate"));
    ?>
    

    When I use this code in another file to reformat the date, I get this error. "Parse error: syntax error, unexpected $end in /home/content/e/v/e/everfoundmusic/html/test/tour_main.php on line 148"

    Is that what the problem of ideas? I tried Googling it but has not found an answer.

    Here is the php.

    <?php require_once('Connections/everfoundapp.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }
    
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
    
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
    
    mysql_select_db($database_everfoundapp, $everfoundapp);
    $query_rsIndex = "SELECT * FROM tour WHERE timeDate >= CURDATE() ORDER BY timeDate DESC";
    $rsIndex = mysql_query($query_rsIndex, $everfoundapp) or die(mysql_error());
    $row_rsIndex = mysql_fetch_assoc($rsIndex);
    $totalRows_rsIndex = mysql_num_rows($rsIndex);
    
    $colname_rsDetails = "-1";
    if (isset($_GET['id'])) {
      $colname_rsDetails = $_GET['id'];
    }
    mysql_select_db($database_everfoundapp, $everfoundapp);
    $query_rsDetails = sprintf("SELECT * FROM tour WHERE id = %s", GetSQLValueString($colname_rsDetails, "int"));
    $rsDetails = mysql_query($query_rsDetails, $everfoundapp) or die(mysql_error());
    $row_rsDetails = mysql_fetch_assoc($rsDetails);
    $totalRows_rsDetails = mysql_num_rows($rsDetails);
    ?>
    
    
    <?php do { 
    $timeDate = $row_rsIndex['timeDate'];
    $date = date("M j, Y",strtotime("$timeDate"));
    ?>
              
    
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Tour Schedule</title>
    <link href="style_tour_main.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
    <?php
    // Show IF id not sent
    if (@$_GET['id'] == "") {
    ?>
    
    <table width="608" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <th width="60" align="left" valign="top" scope="row"><strong>Date</strong></th>
        <td width="150" align="left" valign="top"><strong>City | State</strong></td>
        <td width="247" height="30" align="left" valign="top"><strong>Venue</strong></td>
        <td width="161" align="left" valign="top"><strong>Info</strong></td>
      </tr>
    </table>
    <!-- START index -->
        
         <table width="608" border="0" cellpadding="0" cellspacing="0">
             
          <?php do { ?>
          <tr>
                <td width="60" height="19" align="left" valign="top"><a href="tour_main.php?id=<?php echo $row_rsIndex['id']; ?>"><?php echo $row_rsIndex['timeDate']; ?><br />
                </a></td>
    <td width="150" align="left" valign="top"><a href="tour.php?id=<?php echo $row_rsIndex['id']; ?>"> </a><a href="tour_main.php?id=<?php echo $row_rsIndex['id']; ?>"><?php echo $row_rsIndex['addrCity']; ?>, </a><a href="tour_main.php?id=<?php echo $row_rsIndex['id']; ?>"><?php echo $row_rsIndex['addrState']; ?></a></td>
            <td width="247" align="left" valign="top"><a href="tour_main.php?id=<?php echo $row_rsIndex['id']; ?>"><?php echo $row_rsIndex['venue']; ?></a></td>
            <td width="161" align="left" valign="top"><a href="tour_main.php?id=<?php echo $row_rsIndex['id']; ?>"><em>MORE INFO</em></a></td>
          </tr>
          <tr>
            <td colspan="4" align="left" valign="top" class="space">  </td>
          </tr>
          <?php } while ($row_rsIndex = mysql_fetch_assoc($rsIndex)); ?>
    </table>
    <!-- END index -->
    
    
    <!-- START details -->
    <? } else { ?>
    
    
    <h6><a href="tour_main.php">&laquo; Back to Tour Schedule</a></h6>
    <h1><?php echo $row_rsDetails['timeDate']; ?> - <?php echo $row_rsDetails['addrCity']; ?>, <?php echo $row_rsDetails['addrState']; ?></h1>
    
    <table cellspacing="4">
      <tr>
             <td width="61"><b>Time:</b></td>
            <td width="207" class="dtext"><?php echo $row_rsDetails['timeTime']; ?></td>
        </tr>
        
        <tr>
             <td><b>Venue:</b></td>
            <td class="dtext"><?php echo $row_rsDetails['venue']; ?></td>
        </tr>
        
        <tr>
             <td valign="top"><b>Location:</b></td>
            <td class="dtext"><?php echo $row_rsDetails['addrAddress']; ?><br />
                   <?php echo $row_rsDetails['addrCity']; ?>, <?php echo $row_rsDetails['addrState']; ?> <?php echo $row_rsDetails['addrZip']; ?><br />
           <?php echo $row_rsDetails['addrCountry']; ?></td>
        </tr>
        
        <tr>
             <td><b>Cost:</b></td>
            <td class="dtext">$<?php echo $row_rsDetails['cost']; ?></td>
        </tr>
        
        <tr>
             <td valign="top"><b>Details:</b></td>
            <td class="dtext"><?php echo $row_rsDetails['description']; ?></td>
        </tr>
    </table>
    
    
    <?php }
    // endif id is sent
    ?>
    <!-- END details -->
    </body>
    </html>
    <?php
    mysql_free_result($rsIndex);
    
    mysql_free_result($rsDetails);
    ?>
    

    Hello.. You should change it

    
    
         

    for this

    
    
         
    ">
    $timeDate = $row_rsIndex['timeDate']; $date = date("M j, Y",strtotime("$timeDate")); ?>
  • Capture of high speed using flex functions returns null vector

    Hello

    We have a controller 7350 and UMI-7774 drive a motor step by step through P70530 pilot. We use a single axis, axis 1, which is configured as a stepper motor with your comments and 10000 steps/rev. Our engine performs a profile displacement and during this move, you should read the position of the encoder with about 2000 Hz resolution. I can move the engine using MAX or flex functions, I can also read the encoder using the post MAX, but cannot perform high speed reading.

    Issues related to the:

    1. How can I configure read it for 2000 Hz at high speed?

    Function flex_configure_buffer (boardID, bufferInEnc, axis, NIMC_HS_CAPTURE_READBACK, contMoveBufSize, totalPoints, NIMC_FALSE, requiredInterval, on actualInterval)

    Returns the error-70078 (invalid parameter) when I pass a required interval less than 10ms.

    2. How can I read data from buffer high speed?

    Even when the buffers is configured with the interval of 10 ms, the flex_read_buffer_rtn (boardID, bufferInEnc, rear, out retVector) function returns no data (retVector = null).

    Please find attached an example of solution of vs2008 demonstrating the problem.

    Hello Stephen,

    The problem is now solved, the problem was in the trigger condition.

    It seems that the parameter requiredInterval in the function flex_configure_buffer() function call is ignored, because I get to any interval of 0.5 ms data even if the requiredInterval and the actualInterval are two 10ms.

    Thanks for your help.

  • Dynamic region of the body of the function return query did not work

    APEX 4.1

    Oracle 11g

    I have a report of dynamic fields according to the value of the different type of zone set element is body of pl/sql function, return query, see the source code of the region below.

    declare

    v_sql varchar2 (2000);

    Start

    IF: P2_BY = 'MONTH' THEN

    v_sql: = 'SELECT ' | : P2_TYPE | ', SUM (JAN) JAN, SUM (FEB) FEB, SUM (MAR) MAR, SUM (APR) APR, SUM (MAY) MAY, SUM (JUN) JUN, SUM (JUL) JUL, SUM (AUG) AUG, SUM (SEP) SEP, SUM (OCT) OCT, SUM (NOV) NOV, SUM (DEC) DEC OF THE RPT_HOTEL GROUP BY ' | : P2_TYPE;

    ON THE OTHER

    v_sql: = 'SELECT ' | : P2_TYPE | ', SUM (Y2011) 2011, SUM (Y2012) Y2012, SUM (Y2013) Y2013, SUM (Y2014) 2014 RPT_HOTEL GROUP BY ' | : P2_TYPE;

    Return v_sql;

    end;

    But "Missing expression" error when Save source in the region.

    I checked the sql statement is valid in the sql command, and: P2_TYPE get the correct value.

    If the generic column name 'use' then get the correct report, but the column name is random.

    Please help solve.

    Thank you so mcuh

    Hi fac586,

    I couldn't thank you more. Of course, read you my code and found that the design of table is not reasonable. in fact I just design for the demonstration of the prototype, so do not consider architecture.

    I mean, it is that the problem has disappeared when I create a new page like this one, don't know how it happened. in any case what I need has been achieved, thank you very much for what you have done.

    Here I paste my code for reference, that someone might need.

    declare
    v_sql varchar2(2000);
    v_time varchar2(50);
    v_for varchar2(30);
    begin
    IF :P4_TIME='MONTH' THEN
    v_time := 'to_char(lodging_date,''MM'') MONTH';
    v_for := 'to_char(lodging_date,''MM'')';
    ELSE
    v_time := 'to_char(lodging_date,''YYYY'') YEAR';
    v_for := 'to_char(lodging_date,''YYYY'')';
    END IF;
    IF :P4_MEASURE='NIGHTS' THEN
    v_sql := 'SELECT * from (SELECT ' || :P4_BY || ',VENDOR_NAME,' || v_time
    || ',count(entry_legacy_key) ROOM_NIGHTS
    FROM HOTEL_EXPENSE GROUP BY ' || :P4_BY || ',VENDOR_NAME,' || v_for || ')
    PIVOT (SUM(ROOM_NIGHTS) FOR ';
    ELSE
    v_sql := 'SELECT * from (SELECT ' || :P4_BY || ',VENDOR_NAME,' || v_time
    || ',SUM(APPROVED_AMOUNT) SPENDING
    FROM HOTEL_EXPENSE GROUP BY ' || :P4_BY || ',VENDOR_NAME,' || v_for || ')
    PIVOT (SUM(SPENDING) FOR ';
    END IF;
    IF :P4_TIME='MONTH' THEN
    v_sql := v_sql || ' MONTH IN (''01'',''02'',''03'',''04'',''05'',''06'',''07'',''08'',''09'',''10'',''11'',''12''))';
    ELSE
    v_sql := v_sql || ' YEAR IN (''2011'',''2012'',''2013'',''2014''))';
    END IF;
    return v_sql;
    end;
    

    and checked

    'Use generic column names (analysis of query during execution only)'

    column of the report used PL/QL name

    declare
    v_sql varchar2(2000);
    begin
    v_sql :=  :P4_BY || ':VENDOR_NAME';
    IF :P4_TIME='MONTH' THEN
    v_sql := v_sql || ' :Jan:Feb:Mar:Apr:May:Jun:Jul:Aug:Sep:Oct:Nov:Dec';
    ELSE
    v_sql := v_sql || ':2011:2012:2013:2014';
    END IF;
    return v_sql;
    end;
    
  • The page validation: function returning a Boolean

    Hi guys,.

    I'm doing a page validation simple to check an element in my presentation table if it is a number or not:

    START
    FOR i IN 1.. apex_application.g_f12. COUNTY
    LOOP
    IF LENGTH (TRIM (TRANSLATE (apex_application.g_f12 (i), "0123456789","" "))) is NOT null
    THEN
    RETURN FALSE;
    END IF;
    END LOOP;
    END;

    but I get this error message if g_f12 = AAA:

    ORA-06502: PL/SQL: digital or value error: character of number conversion error
    ERR-1021 error cannot run the validation of the "body of the function that returns a Boolean.
    Ok

    If g_f12 = A12 or a mixed alphanumeric it will work!

    * (I tried this with the function returning the text and it works like a charm, but in this case I have to use the function returns boolean to allow me to translate the error message) *.

    am I doing something wrong please help

    Thank you

    Hello

    Well, now when I look at the error message, I think that the problem is quite obvious.

    Kind regards
    Jari

    -----
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Function - return multiple values in a concatenated string

    Hello

    Is it possible for a function return a concatenated string (combining more than one number). I'm trying to return the purchase by the introduction and invoice_id number and code order number, but an invoice_id can have several PO with the same code number. I want to concatenate the PO numbers with commas, for example

    10124, 10090, 10987

    At the present time, the function returns NULL for those cases that have more than one purchase order number.

    Thank you
    func_get_po(i.invoice_id, cc.code_combination_id) "PO No",
    func_get_po_requester(i.invoice_id, cc.code_combination_id, func_get_po(i.invoice_id, cc.code_combination_id)) "PO Requester",
    

    Of course, this can be done without any problem.
    If it returns NULL, then you must debug function and check the operating logic. I know that it will take a little of your time, but not problems with the logic of syntax and concatenation.

  • Component returned error code: 0 x 80570015

    Loading Firefox, I get this error

    Component returned error code: 0 x 80570015 (NS_ERROR_XPC_CI_RETURNED_FAILURE) [nsIJSCID.createInstance]

    I click OK and Firefox loads as if nothing is wrong - but it's embarrassing

    Hello OleDad127, this error message is probably triggered by one of your extensions - please disable them one by one (and reboot after each step) to know that could be causing it.

    then please directly contact the developers of extension through the channels of support they provide - they can probably give you more detailed advice and are the only ones who can fix bugs or make necessary adjustments in the addon for new versions of firefox. Thank you...

    Troubleshoot extensions, themes, and issues of hardware acceleration to resolve common problems of Firefox

  • HP Mini 1000MiE tranfer files - net usershare returned error 255

    My mini was just delivered. So I try to transfer files from my old Dell Latitude on Ubuntu to the Mini on a Netgear wireless router

    I put the files on the Dell to share. But the Mini does'nt find them well that he does not see a corresponding to the Dell printer Windows workgroup.

    The Mini does none of the files in the working group.

    When I tried to go the otherway to see if the Dell could see files shared on the Mini. I received a request to install 'actions' on the Mini and now when I try to share a file this error message.

    'net usershare' returned error 255: net usershare: cannot open/var/lib/samba/usershares usershare directory. Error Permission denied
    You may not create a usershare. Ask your administrator to grant you permissions to create a share.

    Now, I have two groups of windows work visible on my Linux machines but no files inside.

    How can I transfer files between two computers on Linux via a wireless network? It will not be a big problem.

    I am new to the Mini, but not in Ubuntu. I have not found how to open a command line terminal on this machine yet.

    I would really appreciate help on this issue.

    Transfer files between linux machines using a program called ssh. I found information on the web. It was not very difficult.

    Never got the two machines to connect using the shared windows resources, now I don't have to.

    Error 255 was a matter of a box under 'users' to allow file sharing.

    I also found the command line terminal hidden but available.

    Had a difficult start with the crumb of the Mini, but I am more familiar with linux OS crumbs now.

  • 1456 CVS - VISA error connection problems?

    Hello

    I bought a new unit 1456 of old stock, put CVS to update its bios and all the software and will have questions, operate without errors.  It is connected to a Point gray Flea2 640 x 480 camera.  I use Vision Builder for Automated Inspection 4.0 (trial for now, the full version is on order).  Here is a description of the problem.

    1. I can see and connect to the camera via VB for AI or MAX.

    2. There is an error VISA to the MAX with the camera:

    0XBFFF00A8 (VI_ERROR_NPERMISSION)

    viFindRsrc return 0xBFFF00A8 (access to the resource or the remote machine is denied. This is due to the lack of sufficient privileges for the current user or machine).

    Please check the settings of the remote machine and make sure that you added the computer's network address to the whitelist.

    Possible causes of this error:

    1. the remote machine, you access didn't you leave granted.

    2. the remote machine, you access you refused permission to access its resources.

    3. you may have configured your server with a specific IP address and set up your client computer to different IP address rather than the computer name (IE, the client IP address is assigned by a DHCP server).

    3. all software appear to be up-to-date.

    4. There is also one uninstalled OR-IMAQdx with a component IEEE 1394.  Currently installed is NOR-IMAQ for IEEE 1394 2.0.5.  When both are installed, the camera is listed twice.  Which of these is best, or necessary, or both are needed?

    5. the error when I create a new acquisition in VB to HAVE.  I can well access the camera, capturing images and change the settings.  As soon as I try and run the inspection (which brings me to register the program in the unit of 1456), program errors, the inspection does not and does not allow me to acquire new images of the camera until the unit of 1456 has been restarted (reopening the program does not help).

    6. the error that appears after trying a purchase of the aircraft of 1456 is:

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

    Inspection open error

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

    The validation of inspection returns errors. Possible reasons include:

    -Some image files used by acquiring simulate steps are not available on the remote target.

    Save the image folder 'c:\User Images' folder on the target.

    -The screws used by LabVIEW enforcement measures are not available on the remote target.

    Save the screw or LLBs in the folder 'c:\User screws' on the remote target.

    -A few steps of inspection are not supported on this goal.

    -Inspection step on the target plugins are missing or damaged.

    Details:

    State: Inspect - step 1: 'Acquire picture (IEEE 1394) 1' could not be initialized.

    This problem has been resolved.  Apparently the 1456 dislikes Point Grey Flea2 color cameras, but it works very well with mono 8 - bit counterparts.  Thank you
    Tom

  • Maybe you are looking for

    • 'Add to list' button to WoWHead (Javascript function) does not?

      Hey guys, hope everyone is having a great Friday. I encounter a situation with the WoWHead website, which is a Blizzard-World of Warcraft fansite. They have a button called, add to the list, which allows the user to add a piece of equipment, weapons,

    • Live wall paper crashing

      All, I picked up Atrix a few days back and when I tried to use the existing Live wall paper (fall) that comes by default with the phone, the phone becomes unstable and screen begins to blink and if it works when it goes into lock mode and returns tha

    • To re - install my web download drivers for my Deskjet F4280 all-in-One Printer

      I have installation problems with my Deskjet F4200 all-in-One printer on my Windows 7, Home Premium desktop PC / 64 bit version & I had, once last month, uninstalled my I bought online for my version of platform & bit of the os, printer drivers & all

    • dialog remaining time calculation and then crashes...

      When you remove the desktop icons, the dialog box hangs after the display of the mention "calculating time remaining".

    • Replacement for advanced key mini dock 2504?

      Is it possible to get a replacement key for a mini advanced docking station 2504? I lost mine. It is unlocked so I can still use it, but it would be nice to have a key. [IMG] http://i.imgur.com/hhAlQ.jpg [line]

    ">$date; ?>