"The eigenvalues and the vectors.vi" produce different results in BT 7.0 and 8.0

I noticed that 'clean and vectors.vi values' product of different results when it is used in LV8.0 and LV7.0.

The attached VI is saved in LV7.0.  The default values show the results by operating this VI in LV7.0.

Using the same entries, try running this VI in 8.0 and you will see the results change.

Someone has any ideas why this is happening?


Tags: NI Software

Similar Questions

  • Running Fortran under Windows 7 code produces different results each time.

    I run a FORTRAN code in windows 7 and it produce different results for different courses. Is this a problem of floating point or what? Is there anyone who knows a way to overcome this problem?

    original title: Code Fortran

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the MSDN Windows 7 forum.

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • Copy and paste the code which gives different results

    I use PS CS5 and need to copy and paste the code from one page to another. The reason is that the only difference is a change in the images and titles.

    When I view the page copied in a browser the table continues beyond the wrapper div and none of the images are visible.

    Here is the copied code:

    <! DOCTYPE HTML > < html lang = "en" >

    < html >

    Head of <>< name meta = "robots" content = "INDEX, FOLLOW" / >

    < name meta = "robots" content = "noimageindex" / >

    < name meta = "description" content = "Ace with checkered flag logo" / >

    < name meta = "keywords" content = "Top Trumps, Ace, flag at checkerboard, Classic Cars, drag racing, heavy trucks, 500 miles of Indianapolis, International bus, luxury cars, luxury cars Made in Germany, Yachts of luxury, the NASA Super Jets, cars, Rolls-Royce, Street Bikes, street cruisers, Super-Bikes, Super Sonics, Super Trains in the world." / >

    < title > < /title > checkered flag

    < link href = "css/table.css" rel = "stylesheet" type = "text/css" media = "screen" > "

    < / head >

    < div id = 'wrapper' >

    < body >

    < div id = "bread crumbs" >

    < a title = "Return to Homepage" href = "index.html" > home < /a > & bull; < a title = "Go back to index of England" href = "england.html" > English Top Trumps < /a > & bull; "< a title ="Back to Ace Index"href ="... /... ' / index.html - ace "> Ace Index < /a >

    < / div >

    < div id = "banner logo" >

    "< img src ="... /... / images/title.jpg ">"

    < / div >

    < div id = "page title" > < flag checkerboard of h1 > < / h1 > < / div >

    < div id = "table" align = "center" >

    < table >

    < thead >

    < b >

    < th = "column" range > Classic Cars < /th >

    < th = "column" scope > < /th > Dragster

    < th = "column" scope > < /th > trucks

    < th = "column" scope > Indianapolis 500 < /th >

    < th = "column" scope > International bus < /th >

    < /tr >

    < / thead >

    < tbody >

    < b >

    < td > < img title = "cars classic Ace assets with the checkered flag" src = "images/futbol_yildizlari.gif" > < table >

    < td > < img title = "Dragster Ace assets with the checkered flag" src = "images/HP-ve - zumruduanka.gif" > < table >

    < td > < img title = "Trucks heavy Ace assets with the checkered flag" src = "images/hp_ve_ateskadehi.gif" > < table >

    < td > < img title = "Indianaplis 500 Ace assets with the checkered flag" src = "images/karayip_korsanlari.gif" > < table >

    "< td > < img title ="Bus International Ace assets with the checkered flag"src ="... /... / images/international_buses_ace.gif ' > < table >.

    < /tr >

    < b >

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < /tr >

    < / tbody >

    < thead >

    < b >

    < th = "column" scope > luxury car < /th >

    < th = "column" scope > luxury cars Made in Germany < /th >

    < th = "column" scope > < /th > Luxury Yachts

    < th = "column" scope > the NASA Super Jets < /th >

    < th = "column" scope > race cars < /th >

    < /tr >

    < / thead >

    < tbody >

    < b >

    "< td > < img title ="Luxury cars Ace assets with the checkered flag"src ="... /... /images/luxury-cars-ACE.gif' > < table >

    "< td > < img title ="Cars luxury Made in Germany Ace assets with the checkered flag"src ="... /... / images/Lux_Cars_Made.gif ' > < table >.

    "< td > < img title ="Luxury Yachts"src ="... /... / images/Luxury_Yachts.gif ' > < table >.

    "< td > < img title ="NASA Super Jets Ace with checkered flag"src ="... /... /images/NASA_Super-Jets_Ace.gif' > < table >

    "< td > < img title = 'Race Cars Ace with checkered flag' src = '... /... / images/Race_Cars.gif ' > < table >.

    < /tr >

    < b >

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < td > click on the < table > image

    < /tr >

    < / tbody >

    < /table >

    < / div >

    < div id = 'foot' >

    & copy; 2005-2016 Ultimate Top Trumps. All rights reserved < / div >

    < / body >

    < / html >

    Thanks in advance.

    At first glance, I see that you have a wrapper

    before the openingtag. You can't do that.

    Run the validator at http://validator.w3.org/nu for a list of your html of your page errors. Clean and your page should work fine.

  • Same code running in SQL * more edit the sql buffer vs = different results file

    Hello

    For the last few minutes I was scratching my head trying to understand why my little piece of code was not working.
    As a result, a sample:
    create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
    /
    declare
      booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');  
    begin
      for i in booklist.FIRST .. booklist.LAST LOOP
        dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      end loop;
    end;
    /
    When run interactively, I get the following results:
      1  create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
      2  /
      3  declare
      4    booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');
      5  begin
      6    for i in booklist.FIRST .. booklist.LAST LOOP
      7      dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      8    end loop;
      9* end;
    SCOTT@ORCL> /
    
    Warning: Type created with compilation errors.
    
    SCOTT@ORCL> show errors
    Errors for TYPE BOOKTITLES_NT:
    
    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    2/1      PLS-00103: Encountered the symbol "/"
    So I try without the slash and get nowhere:
      1  create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
      2  declare
      3    booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');
      4  begin
      5    for i in booklist.FIRST .. booklist.LAST LOOP
      6      dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      7    end loop;
      8* end;
      9  /
    
    Warning: Type created with compilation errors.
    
    SCOTT@ORCL> show errors
    Errors for TYPE BOOKTITLES_NT:
    
    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    2/1      PLS-00103: Encountered the symbol "DECLARE"
    8/4      PLS-00103: Encountered the symbol "end-of-file" when expecting
             one of the following:
             ( begin case declare end exception exit for goto if loop mod
             null pragma raise return select update while with
             <an identifier> <a double-quoted delimited-identifier>
             <a bind variable> << continue close current delete fetch lock
             insert open rollback savepoint set sql execute commit forall
             merge pipe purge
    So I think, maybe I'll try it in a .sql file. So I put the first fragment of code in a file, test4.sql:
    SCOTT@ORCL> get C:\Users\J\Documents\SQL\test4.sql
      1  create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
      2  /
      3  declare
      4    booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');
      5  begin
      6    for i in booklist.FIRST .. booklist.LAST LOOP
      7      dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      8    end loop;
      9* end;
    SCOTT@ORCL>
    and run it, and it works:
    SCOTT@ORCL> @C:\Users\J\Documents\SQL\test4.sql
    
    Type created.
    
    Book number 1:Great Expectations
    Book number 2:Ulysses
    Book number 3:1984
    
    PL/SQL procedure successfully completed.
    Can someone tell me why the behavior is different when it is run from a file when it is run, well, interactive? There seems to be some limits on what you can interactively run vs. what you can run from a script.

    Thank you very much
    Jason

    SQL * more buffer cannot contain more than one return, even if you have two - create type and anonymous PL/SQL block. Thus it-error:

    Wrote file afiedt.buf
    
      1  create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
      2  /
      3  declare
      4    booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');
      5  begin
      6    for i in booklist.FIRST .. booklist.LAST LOOP
      7      dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      8    end loop;
      9* end;
    SQL> /
    
    Warning: Type created with compilation errors.
    
    SQL> create or replace type booktitles_nt is TABLE OF VARCHAR2(100);
      2  /
    
    Type created.
    
    SQL> declare
      2    booklist booktitles_nt := booktitles_nt('Great Expectations','Ulysses','1984');
      3  begin
      4    for i in booklist.FIRST .. booklist.LAST LOOP
      5      dbms_output.put_line('Book number ' || i || ':' || booklist(i));
      6    end loop;
      7  end;
      8  /
    Book number 1:Great Expectations
    Book number 2:Ulysses
    Book number 3:1984
    
    PL/SQL procedure successfully completed.
    
    SQL>
    

    SY.

  • PB Kit and FP10 produce different results

    I tried the HSL of Ryan Taylor filter:

    http://www.Boostworthy.com/blog/?p=246

    using 1.0.350192 PBK, building 35, Flex SDK 4.0.0.4065 and the debug version of Flash Player 10,0,12,36 on a MacBook Pro 4.1 with 2.5 GHz Intel Core 2 Duo and GeForce 8600 M GT.

    I do not get the same result in PBK and FP10 during the passage of an image through the filter. PBK entry and exit are as expected equal when none of the transformations are applied (all parameters are set to zero) but not when running in FP10.

    Is anyone able to replicate this? Does anyone have an idea what could cause this? In my case, it seems that green color values are always mapped to the red channel.

    Thanks for the quick response. It seems that you're right about the min/max functions, but I had to replace the functions entirely with my own conditional instructions before it worked. Copy the value of the sample in a temporary variable wasn't enough in my case.

  • ODM 10.2.0.3.1 applies to produce different results to a sam pl/sql export

    I would apply different performance results of work apply within ODM then save the pl/sql and running that.

    Here are the steps I used.
    I created a classification SVM model using text Oracle with ODM 10.2.0.3.1 on Oracle 10.2.0.3.0 RAC.
    I then create an activity to apply using the MDGS using this model.
    The results are good.
    I record the activity to apply it as a pl/sql package, and then run it from sql/plus.
    The output to run the stand-alone package does not match the output to apply it when run in the ODM.

    in the package, I see what, in my view, should be the case.
    The call for the preparation of the feature and the creation of the DM_Nested_Numericals
    attribute and value.
    I don't see a call to feature_explain between the preparation and the DM_Nested_Numericals
    but I'm not sure that this is necessary in any case.

    Has anyone else seen elsewhere?

    Thank you

    Hello
    There was a bug fix in 10.2.0.4.1 ODMr who has addressed an issue that could lead to differences to apply output. What version of ODMr do you use?
    Thank you, Mark

  • Different results of exactly the same query

    Hello

    I wrote a function to calculate the days between 2 dates. If I am running in SQL Developer or directly on the oracle server, I get the results I expected. However, if I run on a client by using ODBC, or PHP connection via the OCI8 extension, I get an incorrect result.

    The function takes 2 parameters: 1st and 2nd date and should output the number of non-working days (weekends and holidays) between 2 dates. The coding is not very pretty, but it does not work very well as I said since the client SQL Developer.

    Here is the code:
    create or replace
    FUNCTION NON_WORKDAYS(fromdate IN DATE, todate IN DATE)
    --Function to calculate non working days between 2 given dates (Weekends & Bank Holidays)
    --Update: Added in a calendar for bank holidays. Bank holidays are listed to the end of 2013
    
    RETURN NUMBER IS
    BANK_HOLS NUMBER;
        ret NUMBER;
    BEGIN
        SELECT count(mydate) INTO ret FROM 
     (SELECT     TO_DATE (fromdate, 'dd-mon-yyyy hh24:mi:ss') + LEVEL - 1 mydate
                    FROM DUAL
               CONNECT BY LEVEL < =
                                TO_DATE (todate, 'dd-mon-yyyy hh24:mi:ss')
                              - TO_DATE (fromdate, 'dd-mon-yyyy hh24:mi:ss')
                              + 1)
         WHERE TO_CHAR (mydate, 'DY') IN ('SAT', 'SUN');
         
         
         select count(mydate) into BANK_HOLS from (
         SELECT     TO_DATE (fromdate, 'dd-mon-yyyy hh24:mi:ss') + LEVEL - 1 mydate
                    FROM DUAL
               CONNECT BY LEVEL < =
                                TO_DATE (todate, 'dd-mon-yyyy hh24:mi:ss')
                              - TO_DATE (fromdate, 'dd-mon-yyyy hh24:mi:ss')
                              + 1
         )
         WHERE TO_CHAR (mydate, 'DD-MM-YYYY') IN 
         ('03-01-2011', 
         '22-04-2011',
         '25-04-2011',
         '29-04-2011',
         '02-05-2011',
         '30-05-2011',
         '29-08-2011',
         '26-12-2011',
         '27-12-2011',
         '02-01-2012',
         '06-04-2012',
         '09-04-2012',
         '07-05-2012',
         '04-06-2012',
         '05-06-2012',
         '12-07-2012',
         '27-08-2012',
         '25-12-2012',
         '26-12-2012',
         '01-01-2013',
         '29-03-2013',
         '01-04-2013',
         '06-05-2013',
         '27-05-2013',
         '12-07-2013',
         '26-08-2013',
         '25-12-2013',
         '26-12-2013'
         );
         ret:= ret + BANK_HOLS;
         
        RETURN ret;
    end;
    The problem is only with certain dates. For example, if I use the date '17-SEP-2012' for the two input parameters, I'm waiting for a result draw. In the SQL Developer client, I get the expected result. However, using ODBC or PHP OCI8 (which I believe is using a direct connection to TNS in the DB), the result returned is '1', which is incorrect ("17-SEP-2012" has been a MONDAY ""). If I use the current date (20-SEP-2012), I get the expected (zero) result in both the SQL Developer client and ODBC/PHP client.

    I also tried to use variants of SYSDATE in place and place the date string, to see if I get different results (i.e. today is 20-SEP-2012, so I used SYSDATE-3 to 17-SEP-2012).

    To be clear, I call the function in a select statement: select (sysdate-3, sysdate-3) non_workdays of the double; or select non_workdays (TO_DATE('17-SEP-2012'), TO_DATE('17-SEP-2012')) of double;

    I have spent hours and hours of troubleshooting this, and it makes me crazy!

    I also checked the view V$ SQLAREA the Oracle DB to see what is actually passed to the ODBC client database engine. I was expecting the statement became corrupted somehow, that's why I get strange results, but this was not the case. The statement in the column SQL_FULLTEXT of V$ SQLAREA, showed exactly the statement I performed on the ODBC Client. I tried with the oracle instantclient and full client (10g).

    Can someone help save my sanity please? I am eternally grateful!

    Sorry for the massive post!

    Published by: user12199535 on 20-Sep-2012 12:20

    Your code is a mess. You convert DATE to DATE, e.g. TO_DATE (fromdate, 'dd-mon-yyyy hh24:mi:ss'). TO_DATE function first parameter is a string, while fromdate is the date. That's why Oracle implicitly converts fromdate to the string of default date format that is client dependent and therefore can produce different results on different customers boxes. In addition, your code is dependent on NLS. If the customer has other date language settings, for example German, Sun and SAT are false. And there is no need to separately calculate the weekends and holidays:

    create or replace
      FUNCTION NON_WORKDAYS(fromdate IN DATE, todate IN DATE)
      --Function to calculate non working days between 2 given dates (Weekends & Bank Holidays)
      --Update: Added in a calendar for bank holidays. Bank holidays are listed to the end of 2013
        RETURN NUMBER
        IS
            BANK_HOLS NUMBER;
            ret NUMBER;
        BEGIN
            SELECT  count(mydate)
              INTO  ret
              FROM  (
                     SELECT  trunc(fromdate) + LEVEL - 1 mydate
                       FROM  DUAL
                       CONNECT BY LEVEL < = trunc(todate) - trunc(fromdate) + 1
                    )
              WHERE TO_CHAR(mydate,'DY','NLS_DATE_LANGUAGE = ENGLISH') IN ('SAT','SUN')
                 OR mydate IN (
                               DATE '2011-01-03',
                               DATE '2011-04-22',
                               DATE '2011-04-25',
                               DATE '2011-04-29',
                               DATE '2011-05-02',
                               DATE '2011-05-30',
                               DATE '2011-08-29',
                               DATE '2011-12-26',
                               DATE '2011-12-27',
                               DATE '2012-01-02',
                               DATE '2012-04-06',
                               DATE '2012-04-09',
                               DATE '2012-05-07',
                               DATE '2012-06-04',
                               DATE '2012-06-05',
                               DATE '2012-07-12',
                               DATE '2012-08-27',
                               DATE '2012-12-25',
                               DATE '2012-12-26',
                               DATE '2013-01-01',
                               DATE '2013-03-29',
                               DATE '2013-04-01',
                               DATE '2013-05-06',
                               DATE '2013-05-27',
                               DATE '2013-07-12',
                               DATE '2013-08-26',
                               DATE '2013-12-25',
                               DATE '2013-12-26'
                              );
            RETURN ret;
    end;
    /
    

    SY.
    P.S. I think that I converted your vacation to literals correctly, but still double check date.

  • Different results from the the DLL source code

    Hi all

    I'm new to this forum and also to labview so understandable...

    Then, I got a source project with many under vi of that graphic plots of excel files. I also got the exe after generation.

    The problem is, if I try to compile this project again, the exe gives me different results than what I already have. They should be the same, because I does no update in the source code.

    Can someone explain this behavior? I don't know anything about how it has been made because the guy who create this left the office... I need to make a few updates, but first of all, I have to build corectly.

    Thank you

    Have you compared the date of the exe file with the date of the source code? Are you absolutely sure that no changes have been made to the source code after the build? The construction specifications are part of the project. Unless you changed something there, builds should be the same.

    You have the source code control? Issues like this should not be a if you make and use wisely.

  • When you try to find the IP address of my computer, I see two different results with two different numbers. Which is accurate?

    original title: a different output for ping - an IP address

    I am trying to determine the name of the computer to an IP address

    When I open a command prompt in a computer (Windows XP connected to our domain) and type ping - a [IP address], I get a result

    When I open a command prompt in another computer (Windows Server 2008 connected to the WORKING group) and type ping - a [IP address], I get a different result

    And there are other times when ping - [IP address] will display the name of the computer on a computer (usually the Windows Server 2008), but not the other

    I tried to google

    1. why this happens

    2. what result is correct

    Please specify.

    The order of DNS in Windows name resolution is as follows:

    1. Name of the local host (file Hosts Local generally in c:\windows\system32\drivers\etc\hosts)
    2. Cache Client DNS resolution
    3. DNS server
    4. Cache of NetBIOS names
    5. WINS server
    6. NetBIOS broadcasts
    7. File LMHosts (same location as the HOSTS file)

    The reason you get different results could be because machines could be on different subnets (different results for broadcast), using a different DNS server machines or are configured for different WINS servers, or the names are already cached because of prior activity.

    HTH,
    JW

  • Why the bounding boxes are different between the XI Acrobat Pro and Acrobat DC?

    Hello

    Firstly apologies if this been asked elsewhere, but so far I have failed to find a solution.

    I have Acrobat Pro XI and Acrobat DC, each on two different PCs using Windows 8. Why the function edit text & Images interprets the same PDF document differently when displaying the bounding boxes. In Pro XI he produced 7 inclusive about 7 decent size paragraphs of text only. In MS bounding boxes are reduced to only 3 each effectively covering most thick of text in the document. To quickly select 3 of 7 bounding boxes to remove them entirely from my PDF seems not to be possible in DC, where I appear instead of having to select large portions of the text instead and delete accordingly.

    I don't see where in preferences maybe you can change the 'sensibility' or 'threshold' to distribute a PDF file in smaller sizes (but more) bounding boxes. Is it possible to make DC behave like a Pro XI?

    Any help would be appreciated.

    Mark

    These boxes are the result of speculation, well enough. The algorithm behind

    He probably changed between versions, so the different results.

    There is nothing you can do about it.

  • I splilled li oquid liquid on my laptop, and now the text jumps to different places where the sentence and out Dyslexic...

    I Ispilled iced tea on my laptop keyboard area and now when I type, the letters jump to different areas of my text, I know its bc it wet spill of iced tea, but s antything here I CA makes type much more mormaelp, it is stil prblematic you can see.lly. o to fix it completely? The longest period of time that passes seems better.  As you can see... it's a perfect example of how my text and typing mess... and it's better that there is

    Someone knows how to fix this problem, so I can type normallt? I would be very grateful. for any advice. Thank you very much. BTW, it's a laptop from samsung. Not very old, I bought in May 2011

    Thank you, I'd be greafful for any help

    Try to leave the laptop open and off (not near a direct heat source) to allow any residual moisture to evaporate. If you had sugar in tea residue can be larger and more sticky and can make them less likely to return to normal without further intervention.

    If after a few days, it is still faulty, I suggest you get the keyboard professionally repaired/replaced.

  • I just bought a Logitech Web c110 camera and every time I try to install the installer crashes. Also, I was making the blue screens with different messages on them.

    Original title: how to find missing or corrupt files on windows xp pro

    I just bought a webcam logitech c110 and whenever I try to install the installer breaks down and I was doing the blue screens with different messages on them... How to scan for missing or corrupted files?  My brother-in-law has built this computer for me and I did not all disks for windows xp pro. system that is on it

    Hello

    1. you receive an error message while trying to install the webcam? If so, then post back the exact error message.
    2 are you able to install any other software?

    Try to capture the error message on blue screen and after return the exact error message. This could help us help you better.

    Step 1: Try to install the webcam software in clean boot state and check.

    From your computer by using a minimal set of drivers and startup programs so that you can determine if a background program is interfering with your game or program. This type of boot is known as a "clean boot".

    Reference:
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:
    1. click on start and then click Run.
    2. type msconfig and click OK.
    The System Configuration Utility dialog box appears.
    3. click on the tab general, click Normal Startup - load all services and device drivers and then click OK.
    4. When prompted, click on restart to restart the computer.

    Step 2: Look for error messages in the event viewer. If you find error messages after return the exact error message so that we can help you better.

    Reference:
    Using the event viewer
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/snap_event_viewer.mspx?mfr=true

    Understanding of event viewer
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/event_overview_01.mspx?mfr=true

    Procedure to view and manage event logs in Event Viewer in Windows XP
    http://support.Microsoft.com/kb/308427

  • BlackBerry 10 cannot delete the email account (unauthenticated) / cannot authenticate the email account with different servers SMTP and IMAP (a gmail)

    After updating the OS on my last night in 10.1.0.4181 Z10 (software) / 4633 (OS), all my accounts set up asked for credentials must be verified. Looks like now that it uses some sort of mechanism of OAuth - worked well for my Gmail accounts with two-factor auth.

    One of my accounts that I have Gmail as IMAP server (using a regular gmail.com account), but another SMTP server, with the address on a different domain. I use Gmail as my email client, basically.

    After the upgrade, I am prompted to authenticate, but at some point, someone on my domain set up Google Apps. Has never been for nothing. I wonder to enter * that * password via Google. I don't, and this is NOT the account that I'm trying to connect. (I want a server with user name [email protected] gmail.com IMAP and SMTP [email protected]).

    So I'm stuck... can not authenticate.

    Even worse: Also, I can not delete the account! Delete option is not available until after you have again authenticated. Because I can not delete the account, I can't try to add it again separately - I get an error indicating that the account is already configured.

    All options except wait for the next update of OS or do a wipe/restore?

    (Wipe/restore is really not an option for me, it takes several hours, and the last time I was forced to restore, I lost a good amount of data that I then had to enter manually in restoring to my old 9790 and then it tapping on my Z10.) Not to take this risk again).

    Try this:

    Open an e-mail account with the same account information and email address, but as a pop account to synchronize the account. Both accounts now appear in a new sub-account. Now you can remove the two accounts together. It worked for me...

  • lost all my sounds and when I passed all the icons were in different places and everything is much broader.

    Hello

    Last weekend or there abouts I seems to have lost all my sounds and when I passed all the icons were in different places and everything is much broader.

    What has gone wrong?

    Hello

    I did (I think) and it did not work, so it looks like I'll have to call Packard Bell and see what they have to say.

    Thanks for your help anyway

    Ken

    As you have already gone to the website of the manufacturer of the computer and reinstalled the drivers is a good thought to contact Packard Bell about this.

    See you soon.

  • Running the Single Instance and RAC on the same server of different homes.

    Hi guys,.

    I already have 4 node RAC12c installed on OLE 6.

    I'm planing on some of my other 12 single instance databases on other migration for RAC nodes.

    Please correct me here if I am wrong...

    My understanding is that, to be able to use DBCA or rconfig for conversion of database instance RAC, the only instance and RAC cluster must run on the same server or machine node.

    Thanks to this understanding... Am planing on the installation of a binary single instance on one of my cluster node node1 say and then use RMAN to duplicate the single instance or just an RMAN restore from the node of the instance that is unique to this node1. Am capable of this plan must then use DBCA or rconfig to convert the CARS database.

    Now, my question is can I run a single instance and RAC on the same server for different homes with different database ports?

    2. for these unique instance that runs on the server RAC 1 node, can I use the RAC database listener that runs from the House of the grid or I have to create another auditor?

    Thank you in advance and also let me know if I can use DBCA or rconfig when the only instance and rac database are on separate nodes.

    K

    Fix. And that's what I would normally do. In general, I would have just an ORACLE_HOME directory that can be used by the punctual and RAC databases at the same time.

    See you soon,.
    Brian

Maybe you are looking for

  • Siri does not not in apple tv in India pls help

    Hi, I recently got a 4th gen apple tv only because of siri. the guy from apple store said it will work in India. but it does not work it is disabled. When siri works in India, can someone help me > > >

  • HP Pavillion desktop questions please help :-(

    My desktop pc Pavilion 20-b013w windows 8 just stoped to work on me. It shows the hp logo and is trying to fix, but after a few minutes, it goes to the black screen... I tried to restore, recover... anything but didn't get to this screen

  • How to keep the private cell phone numbers?

    Please tell me how to stop my ex-husband having all my cell contacts and #.

  • SecureAccess for Cruzer Edge

    I recently bought a Cruzer Edge 16 GB of Office Depot. This was done after that I read in the characteristics of the product on the SanDisk website that it comes with the SanDisk SecureAccess software to protect the contents of the Flash Player. When

  • Speech recognition ceased to recognize my logitech microphone

    Speech recognition ceased to recognize my Logitech microphone.  The microphone works very well in the video camera function.  Perhaps I should uninstall and reinstall the speech recognition.  I don't know how to do this.  Can anyone help?