Possible scenarios of Splitbrain

Hey, informaciones questions about "split brain".

What happens if I have a 2 node rac (10.2) with 2 drives ocr (ROC & ocrmirror)

Now my mutipath of node2 to ocrmirror disk fails.

In this scenario node1 sees the two disks of ocr, node2 sees only the discs of the ocr.

What is the impact of this scenario? What steps need to be done, in order to obtain the cluster back in harmony?
Oracle (on node2) my itself, would detect when the path of the ocrmirror is restored? and if it syncs the disc?

Chris

Hello

Check out the link:

http://geertdepaep.WordPress.com/2009/10/02/the-ultimate-story-about-OCR-ocrmirror-and-2-storage-boxes-Chapter-3/

Kind regards
A H E E R X

Tags: Database

Similar Questions

  • Develop possible scenarios in view

    Hello
    I'm trying to expand the business rules that use a "group a" and the other of this... logic group type for example:
    There are 3 groups:

    in the first group have 2 options
    in the second group, there are 3 options
    in the third group, there are 3 options

    I need my end result to be a full set of data for each scenario:
    Scenarios group option
    -----
    1 1 a
    1 2A
    1 3A
    2 1a
    2 2A
    2 3 b
    3 1 a
    3 2A
    3 3 c
    4 1A
    4 2b
    4 3A


    Currently, I managed to create the correct number of lines for each option for each scenario, but I can't devise a way of ordering them to give the 'Scénario' column in the example above.
    Any help would be most appreciated. If more information is needed, please let me know.
    Thank you
    Julian

    Hi, Julian,.

    Welcome to the forum!

    905015 wrote:
    Hello
    I'm trying to expand the business rules that use a "group a" and the other of this... logic group type for example:
    There are 3 groups:

    in the first group have 2 options

    In the result below, it seems that 'a' is the only option when grp = 1. (The GROUP is not a column name good.)

    in the second group, there are 3 options

    Once again, it seems that there are only 2 options, 'a' and 'b', grp = 2.

    in the third group, there are 3 options

    I need my end result to be a full set of data for each scenario:
    Scenarios group option
    -----
    1 1 a
    1 2A
    1 3A
    2 1a
    2 2A
    2 3 b
    3 1 a
    3 2A
    3 3 c
    4 1A
    4 2b
    4 3A

    What is a 'scenario' in this problem?
    Why don't you want, for example:

    Scenario     Grp     Option
    --------     ---     ------
    5          1     a
    5          2     b
    5          3     b     
    

    ?

    Currently, I managed to create the correct number of lines for each option for each scenario, but I can't devise a way of ordering them to give the 'Scénario' column in the example above.
    Any help would be most appreciated. If more information is needed, please let me know.

    As said Newbie, poster CREATE TABLE and instructions INSERT for your sample data and expected outcomes of these data (if they are not exactly what you posted already).
    Explain how you get these results from these data.
    Always tell what version or Oracle you are using.

    You can get all the combinations (one of grp = 1, one of the grp = 2 and the other grp = 3) like this:

    SELECT  ROW_NUMBER () OVER (ORDER BY NULL)     AS scenario
    ,       SYS_CONNECT_BY_PATH (option, '/')     AS option_list
    FROM     table_x
    WHERE     CONNECT_BY_ISLEAF     = 1
    START WITH     grp     = 1
    CONNECT BY     grp     = 1 + PRIOR grp
    ;
    

    This will produce a line by combination (it is perhaps what you mean by 'scenario') like this:

    SCENARIO     OPTION_LIST
    --------     -----------
    1          /a/a/a
    2          /a/a/b
    3          /a/a/c
    4          /a/b/a
    ...
    

    If you want a row of separate output for each combination and grp, then you can separate the option_list like this:

    WITH     got_option_list          AS
    (
         SELECT  ROW_NUMBER () OVER (ORDER BY ROWNUM)     AS scenario
         ,       SYS_CONNECT_BY_PATH (option, '/')     AS option_list
         FROM     table_x
         WHERE     CONNECT_BY_ISLEAF     = 1
         START WITH     grp     = 1
         CONNECT BY     grp     = 1 + PRIOR grp
         ORDER SIBLINGS BY     option
    )
    ,     all_groups     AS
    (
         SELECT DISTINCT     grp
         FROM          table_x
    )
    SELECT       o.scenario
    ,       g.grp
    ,       REGEXP_SUBSTR ( option_list
                          , '[^/]+'
                         , 1
                         , g.grp
                         )          AS option
    FROM          got_option_list     o
    CROSS JOIN     all_groups     g
    ORDER BY  o.scenario
    ,       g.grp
    ;
    

    Of course, since I don't have your table, I can't really test this.

    Note that this solution does not assume that you know how the options are in the different grps. It does not even assume that you know how many grps there. It does not assume that the groups are numbered with consecutive integers, starting with 1. If this is not the case, use the analytical DENSE_RANK function to map the actual values of grp (they need not be numbers) 1, 2, 3...

  • Site to Site VPN Possible behind routers NAT on both ends?

    Nice day

    After extensive research I have not found an answer so I turn to the community.

    I'm trying to help a friend facility a VPN but it's a scenario that I have not dealt and hope that someone has.

    Here's the basic scheme;

    Site 1 - 172.16.23.0/24

    Site 2 - 172.16.24.0/24

    (Site of ASA 1 - router 172.16.23.5) - Linksys w / static public IP - Internet - Linksys router w / static public IP-(ASA Site 2 - 172.16.24.5)

    Is this possible scenario with port forwarding?  The warnings, I need to watch out for?

    I read that I'll need a route to my ASA, say Site 1 ASA, who said... Route 172.16.24.0 255.255.255.0 1.1.1.1 (point to ASA local public IP).

    I also read I'll need one additional lane in my (site 1) linksys router that says... Route 172.16.24.0 255.255.255.0 172.16.23.5 (point to the local interface of the ASA)

    Thanks for all comments and suggestions.

    A

    Hi Adam,.

    You are right with a port forwarding, you can create an IPSEC tunnel, even if NAT is present on both ends.

    Also, NAT - T is a feature enabled by default on the ASA that automatically detects if the camera is behind a NAT and pass the IPSEC UDP 4500 port. Here is the syntax of the command:

    ASA (config) # crypto isakmp nat-traversal 20

    How NAT - T works

    So, here is a document for your reference build the VPN tunnel:

    http://www.Cisco.com/c/en/us/support/docs/security/ASA-5500-x-series-next-generation-firewalls/119141-configure-ASA-00.html

    About routing, all traffic will go out of the ASA using intellectual property where the card encryption is applied, routing on linkysys devices just take care that this IP is routed Internet and that there is connection between the 2 ASAs.

    It may be useful

    -Randy-

  • Need help developing 'a server scenario' - and MOA & Stuff

    Hi all!

    I need help with the following scenario.

    I have several machines to virtualize via the DRAC or ILO, and I have to keep the local interation in a minimum possible.

    In some sites, I have only one server, do I need to create a virtual computer on a USB drive, install ESXi on this same machine and add to the ESXi virtual machine create earlier.

    I tried to use a CD multiboot I've done with the installer ESXi and MOA on the same disk, to eventually reach:
    1. create a VM with MOA (Windows 2008 R2) cold start
    2 - test this virtual machine with VMware Player on MOA
    3 - reboot
    4. install ESXi
    5 - create a VM 'work' of vsphere client (from my desktop over a wide AREA network)
    6 - start MOA on this work «VM»
    7 use moa to add my VM created in step 1 to the new ESXi


    I can't get to step 5, I can't find a way to import the virtual machine to ESXi, I tried adding converter 5 MOA Build, but no dice. Above all I do not see my ESXi host, or I get another error when you try to run the converter 5 4 or 3, the converter to connect on a Vserver, witch, I have not at this time here.

    So any who has any light for me or another possible scenario to reach my goal?

    Of course - there are several ways to do so.

    You say you have Workstation on your generation? -Then, you also have vmware-vdiskmanager.
    With vdiskmanager you can import VMDK in ESXi.

    Other options will need to use WinSCP to transfer the virtual machine - vmkfstools can be used if you are generating MOA with NFS support.

    Recently, I found a way to use the latest Converterversions so...

    If you like to meet via Skype and we know which option is best for your users

  • occupied buffer waiting scenario

    One of the reasons for 'buffer busy wait' is 'another session contains the buffer in an incompatible mode at our request' (ID 34405.1).
    This happens in the scenarios?

    Say a block has 2 ranks and one of the line is getting an update. If at this point, another process wants to update the ranks will have to "wait" this buffer?

    skde wrote:
    One of the reasons for 'buffer busy wait' is 'another session contains the buffer in an incompatible mode at our request' (ID 34405.1).
    This happens in the scenarios?

    Say a block has 2 ranks and one of the line is getting an update. If at this point, another process wants to update the ranks will have to "wait" this buffer?

    Well, it's a possible scenario for a wait of the buffer "busy". The wait will be very brief, but there is a moment where each session will have to claim access exclusive to the buffer in order to avoid the risk of two sessions by substituting the same bit of memory as they do their updates. Usually a session trying to PIN a buffer in exclusive mode, when he needs to change - and it is the underlying cause of this type of "buffer busy wait" may appear.

    Concerning
    Jonathan Lewis

  • Scenarios for agencies

    We have subscribed to DPS as an agency for the provision of the service to a certain number of customers. So far, all our clients have been happy 0 publish under our name. However, I would like to seek clarification on some possible scenarios that I imagine can happen. Ideally someone from Adobe will be able to answer, but if anyone has any advice I would be grateful:

    Scenario 1

    We are building a unique folio for a client app. They love it, everyone is happy, and they want to now expand it in a multi-folio application.

    Is it possible to update or replace a single folio with a version multi-folio application and have the readers to download?

    Scenario 2

    A client wants us to make an app, but they want to use their own certificates Apple Dist & Dev. It's easy to do, or is DPS somehow linked to our certificates?

    Scenario 3

    We are building a multi-folio for a client application using the details of our own subscritpion. Later, the customer decides to carry the development of internal applications. Is it possible to transfer "ownership" from one application to another part?

    Thanks in advance.

    A few answers to the 4 questions in this thread:

    1. is it possible to update or replace a single folio with a version multi-folio application and have the readers to download?


    Yes, you can start building an application unique folio and then 'upgrade' it to a multi-folio application. In the generator of the Viewer, you create a new application and select Multi-Folio. To the AdobeID for the title, you will place the identification information, where your folio is stored in the producer of Folio (also called on behalf of the Application). This will tell viewers where to find the corresponding pages. Make sure that the first folio (which has been used for simple editing) is published as a 'Public' and ' free / retail "depending on your scenario.  In the last step where you select the mobile configuration files, you select the same files that you did for your simple edition. In the application list, you will see two applications, one is the old single-Folio application, the other is the multi-Folio. Generator Viewer will automatically determine the correct version of marketing based on the platform (iPad) and the bundleID element. You can install the application on your device and the test. You will see that the first folio is available for download. (there is no way to include the folio directly in the application of multi-Folio). If everything works, submit your app to iTunesConnect. After approval, current users will be asked to update their simple editing application and can then download the first folio againl

    2 a client wants us to make an app, but they want to use their own Apple Dist & Dev certificates.  It's easy to do, or is DPS somehow linked to our certificates?


    Yes, you can do and it is also the proposed route. DPS is not related to your own certificates. In another post, I wrote: "I think it's a good practice to publish applications that you create for your customers with their corresponding certificates. An "agency" who plans to start with the DPS, I'll give the same advice. Tell the customer to get an Apple Developer account and let the Agency handle all logistics. Another reason for this: If you sign the application with your own developer account, the customer would be stuck when you cancel your business. They cannot update the app on the app store, because they do not have access to the certificates. If you would sign the application with client certificates, they can always continue business. »

    3. is it possible to transfer "ownership" of an application to another party?


    When you speak of signature and certificates, you must be very careful. (see also the above comment on the termination of business). An application is bound to a signature and which belongs to a company. It is not possible to replace an existing application in iTunes with a new application that is signed with another entity. The only way to do is to have the app from the app store and publish a new application (using a different bundleID element / certificates). This means that all current users do not get a notification to upgrade.

    From a DPS perspective, the content of an application is stored in the account of the Agency and the rights of use of this account are responsible of the Agency only. For migration, the customer must ask his own DPS account and ask the Agency to "migrate content" for his own account. This can be done in two ways:

    • Part of the current account (Agency) to the new account (client) and the use of the producer of Folio's Web Editor to copy the items. Currenlty, it would be a time very consuming and click-heavy process
    • Download the content of the original INDD files in the new (customer) account - see preferred

    Consequences:

    • A new application must be created within the customer account DPS. If it had been originally signed with the signatures of clients and provisioning profiles, it can replace their current (Agency) created about (make sure that the marketing version has higher than the verion of commercialization of the previous application).
    • Because the content has been migrated / recreated, the user must download again its fact sheets on the new application.

    4 would. what type of workflow of group you the facility to avoid the problem of the locations of InDesign files, change for the folio?

    Make sure that your links (overlays) are stored in a folder that is 'under' your INDD file. In this way, you can move a folder containing the links around and INDD files. When you try to update a specific article on another workstation, it will tell that files cannot be found. A solution is to click on the Article and you will see directions (horizontal / vertical). If you "add" the current InDesign Document, it automatically replaces the existing guidance.

    I hope this information is useful

    With sincere friendships.

    KlaasJan Tukker

  • Creation of a system of instant messaging - best case scenario?

    Hello

    We look forward to adding a feature of instant messaging to an application used by two types of users: customers and agents.

    The goal is to allow chat text/audio/video eventually (with the three options at the same time, but more likely with text or audio + video) with the following use cases:

    • Agent (1 or 2) <>- customer (one or two one)
    • <>Agent - (multi-user)
    • Several chat session open for a given user (mutiple windows similar to gmail)

    We also need a list of users (online and offline + capacity (microphone, webcam))-> should we leverage some kind of living room for that as well?

    So far, we have identified three possible scenarios to achieve:

    • A room by chat/conversion: the user will have to create a new room from a template and send the url to other recipients (via a bus messages overall, maybe a room overall/general). This implies also have several logged in as user can have multiple conversations a
    • Create that one room and use groupNames to manage intimacy of a conversation, but which seems to create a collectionNode by groupName, and I don't know how that will scale over the long term.
    • The last option would be to send everything to a single collectionNode (as in simpleChatModel) and simply count on the recipiendIDs to manage privacy, but this seems a little too complicated to manage a conversation with multiple users as it should first share the list of members for a given conversation.

    You guys have any ideas or recommendations around that, or maybe an example of instant messaging?

    Thank you

    Nicolas

    Hi Nicolas,.

    I think that there are 2 aspects to what you intend:

    (1) a system of reception Hall with presence of boyfriend-style for "appointment" to the private sector

    conversations

    (2) the rooms that are used for the actual conversations

    For 1), you will want to use UserManager.anonymousPresence - this means that

    not every person connected in the lobby will be able to see each other;

    on the contrary, only of people who spread their presence in the House on purpose

    (so that everyone can see them) or with pre-defined relationships (such as

    from a buddy list) will be seen. Anonymous presence greatly increases the

    the scale of our rooms in the thousands of connections. Second, you can use

    UserManager.myBuddyList for each user that connects - assign a list of

    User that the current user ID must notify when it arrives.

    For 2), when a private conversation must happen, the initiator

    Ask for a new room of your server. Your server can validate the request,

    and server integration libraries allows to create a new low-COST airlines, and

    Returns the URL to the initiator. From there on, the initiator can private

    message from the URL to the person they are inviting (within a node in the)

    room lobby through which messages with recipientIDs can be used).

    I think it's good to have multiple sessions open at the same time the customer

    (for example, the customer would probably stay connected at the entrance of the whole)

    the time for that evidenced the presence). So I highly recommend the first

    option you presented, with the addition of a general lobby for generic room

    presence and rendezvous. In this way, you get the benefits of a centralized

    system scale of private conversations happening within their own

    rooms.

    It's certainly an area on the product team are looking to the document

    -We have added rather quietly the UserManager feature above,.

    and have been planning systems Hall of sample to share. We are the heads-down

    in a press release that's coming out soon, but once that is done, we will

    begin to gather a few more samples on this topic.

    hope that helps - let us know if we can answer any questions.

    Thank you

    Nigel

  • This type of possible to query (select with based correspondence stop lines)

    I'm trying to write a SQL query and suspect it is impossible. Or at least, I cannot not mentally grasp, despite various stabs with subqueries. I simplified it by changing the metaphor here a bit.

    Let's say I have a truck in a city (say, Chicago). There are several roads leading out of town, with routes, we will label according to the compass points (N, NE, SW, etc.) Each truck can carry only one shipment. It starts along his route, and as soon as it comes to a city in need of his expedition, he stops.

    Yes, one cooked, but it is similar to my problem.

    Here is a table:

    TABLE: truck_routes
    scenario (integer - possible scenarios)
    Route (NE, SW, etc - 8 cardinal points)
    destination (towns along this road)
    sequence_number (order in which should go to the cities)

    So if I have a truck in Chicago, I can tell

    SELECT the road, sequence_number, destination
    OF truck_routes
    Scenario WHERE = 10 (or other)
    ORDER BY road_out, sequence_number;

    And I would get a report like this:

    SE 1 Gary
    SE 2 Valparaiso
    SE 3 Plymouth
    SE 4 Warsaw
    NO 1 Michigan City
    2 Kalamazoo
    ONLY 3 Grand Rapids
    DO 4 Cadillac
    ONLY 5 Traverse City

    So far so good. I have another table with a list of cities that must be the subject of the expedition:

    TABLE: cities
    scenario (integer - possible scenarios)
    Route (NE, SW, etc - 8 cardinal points)
    destination (same keys as in truck_routes)

    for example:

    10 Valparaiso SE
    Warsaw SE 10
    10 DON'T Cadillac
    10 DON'T cross City

    Now... the delicate part... How do rewrite the query above so that after a truck hit a city in need of a shipment (in this case), it stops? In other words, I want a report (for all channels) of which cities the truck stops to- and such that mentioned, it stops at the first one she performed. I don't want to see lines beyond that. If the report is as follows:

    SE 1 Gary
    SE 2 Valparaiso
    NO 1 Michigan City
    2 Kalamazoo
    ONLY 3 Grand Rapids
    DO 4 Cadillac

    Gary arises because it does not require a delivery. Valparaiso (road SE, sequence_number 2) arises because he takes delivery. The rest of the Southeast route does not appear. Same thing for the road DON'T.

    There are scenarios where I actually want to stop at the city just before the place of delivery, etc. and of course in the real world, that it's more complicated, but I think that if I could get this working model I could flesh out in a real-world application.

    Certainly I can code something in PL/SQL for this do, or do it in the logic of the application - but I wonder if there is a way to do it in a single SQL statement? I suspect there is something that could be built with subqueries and sorting, but... I can't reach him quite ;-)
    WITH report AS(
        SELECT 'SE' route, '1' seq_num, 'Gary' dest  FROM DUAL UNION ALL
        SELECT 'SE' route, '2' seq_num, 'Valparaiso' dest FROM DUAL UNION ALL
        SELECT 'SE' route, '3' seq_num, 'Plymouth' dest FROM DUAL UNION ALL
        SELECT 'SE' route, '4' seq_num, 'Warsaw' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '1' seq_num, 'Michigan City' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '2' seq_num, 'Kalamazoo' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '3' seq_num, 'Grand Rapids' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '4' seq_num, 'Cadillac' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '5' seq_num, 'Traverse City' dest FROM DUAL
    ),
    cities AS (
        SELECT '10' scenario, 'SE' route, 'Valparaiso' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'SE' route, 'Warsaw' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'NE' route, 'Cadillac' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'NE' route, 'Traverse City' city FROM DUAL
    ),
    need_a_shipment AS (
          SELECT r.*
              , CASE WHEN EXISTS( SELECT 'Y' FROM cities c WHERE c.route = r.route AND c.city = r.dest )
                     THEN 'Y'
                     ELSE 'N'
                END need_a_shipment
        FROM report r
    )
    
    SELECT  route
          , seq_num
          , dest
          , need_a_shipment
    
    FROM need_a_shipment n
    WHERE seq_num <= (  SELECT MIN(seq_num) FROM need_a_shipment
                        WHERE route = n.route AND need_a_shipment = 'Y' )
    ORDER BY route DESC, seq_num
    ;
    
    ROUTE SEQ_NUM DEST          NEED_A_SHIPMENT
    ----- ------- ------------- ---------------
    SE    1       Gary          N
    SE    2       Valparaiso    Y
    NE    1       Michigan City N
    NE    2       Kalamazoo     N
    NE    3       Grand Rapids  N
    NE    4       Cadillac      Y
    
  • Find my iPhone = locked. How is - anyone can call on it?

    My daughter just lost her iPhone 5 s, for which she has activated locking using footprint.  Using find my iPhone, we have seen that his phone is not connected to the Internet (we travel outside the country of origin). We used to find my iPhone and locked the phone using the software, including the addition of a message/reward. Strangely, its called phone phone my wife (strange random noises, but no voice response)-how is this possible?

    brkling wrote:

    Strangely, its called phone phone my wife (strange random noises, but no voice response)-how is this possible?

    Here's a possible scenario:

    One person recovered the lost iPhone.  Obviously, this person doesn't have access to his fingerprint stored on the iPhone.  But when you try to unlock the iPhone, this screen will appear, looking for password of the iPhone:

    From there, the person clicks on "Emergency" (circled above).

    If your wife's iPhone is classified among the emergency numbers (in the application of health), then it would be possible to call it from the iPhone.

  • Drive hard breaks down again replaced twice.

    My macbook 15 "always crashes after the hard drive replaced twice. Interestingly, the crash is identical to the type of collision before it was replaced. Everything should work fine then the screen goes black and a white screen with a small police saying the computer has encountered a problem and is set to zero. After all this recharges a window pop up titled "Problem report for OS X" saying my computer restarted because of a problem with a huge list of details of the details of the problem and the system configuration (I can stick below if someone can help me solve this problem). It should be noted that sometimes the fan will work abnormally hard sometimes. She sometimes coincides with the crash and sometimes not. There is no decipherable pattern in this area. My DVD player is also not working. I have run the disc several times utilities in all possible scenarios without result and are running out of ideas.

    Here is a list of possible scenarios, I thought, but would like feedback and help with new suggestions or assistance.

    (not in any intentional order of importance or probability)

    1. There is a virus.

    2. the DVD player is somehow originally the crashed hard drive.

    3. a previous operating system incompatible program is causing system to block (not likely because the accident happened until I upgraded the OS and has continued thereafter)

    3 Apple wants me to buy a new machine

    Information on Mac:

    El Capitan

    MacBook Pro mid-2010

    Processor: Intel Core i5 2.53 GHz to

    Memory: 6 GB 1067 MHz DDR3

    HD: a SATA 1 TB disk

    Thank you in advance for your help!

    You said "a huge list details of the details of the problem and the system configuration (I can stick below if someone can help me solve this problem)."

    Yes the poster.

    You can have this problem

    MacBook Pro (15-inch, mid 2010) intermittent black screen or the loss of video quality program is over - Apple Support

    This is the Office Mac Pro forum. I asked that your post be moved to the MacBook Pro laptop forum

  • During the installation of software, I forgot to uncheck to change my start page and now it goes to hi.ru even though I changed it in Firefox.

    I was installing software. I forgot to uncheck the checkbox change my homepage. I changed it in Firefox and it always happens. The site is hi.ru and not in English. I checked for any new or unusual software in Control Panel and you will see nothing unusual.

    This problem is on your system Windows 8.1? (Somehow that got post split as filed, that is for certain phones).

    If Firefox ignores the setting of your home page, there are two possible scenarios:

    (1) an extension is the substitution of the implementation in
    (2) your desktop icon is 'hacked' with the unwanted address (in this case, the home button on the toolbar tools and the Ctrl + n would both work correctly)

    As the first step, here's my method of tracking down and cleaning of unwanted modules. I know it seems long, but it's not so bad.

    (A) open the Control Panel, uninstall a program. After the loading of the list, click on the column heading "installed on" to group infections, I mean additions by date. This can help the undisclosed items bundle smoker who snuck out with some software, you have agreed to install. Beware of everything that you don't recognize / remember, since malware often uses sounding names important or innocent to discourage you remove. Out as much garbage as possible here.

    B open Firefox page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons
    • in the Windows "Run" dialog box, type or paste
      firefox.exe "about:addons"

    In the left column, click on Plugins. Set essential and unrecognized plugins 'never enable '.

    In the left column, click Extensions. Then, in case of doubt, disable (or delete, if possible) not recognized and unwanted extensions. Remember that all extensions are optional, none come with Firefox.

    Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    Any improvement?

    If you have extra time:

    (C) you can search the rest of problems with scanning/cleaning tools listed in our technical support article: Troubleshooting Firefox problems caused by malware. These scanners on request are free and take a long time to run. If they end quickly, especially if they require the payment you have a serious infection. I suggest the specialty forums listed in the article in this case.

    Success?

  • First HP Calculator virtual missing mfc120u.dll error since upgrading to version 1.21.8151.102

    The first HP Virtual calculator will not start since the last update (version 1.21.8151.102). A windows system error window appears when you attempt to start the calc virt, saying: "the program can't start because mfc120u.dll is missing on your computer. Try reinstalling the program to fix this problem. »

    Needless to say that "resettlement" has not fixed the problem. It is clear from research that the specified DLL is associated with related debug versions if you wonder if the last version was poorly built? Does anyone else have this problem? Any solution of HP? I had to go back to my "shipped" version that is less than optimal. It has been no problem so far with my device real first HP since the last update of the firmware so phew... but the virtual calc is very convenient when working on the PC with the code.

    I am running windows 7 64 bit - all the latest updates applied to MS etc had no problem until this version of the vCalc

    A possible scenario:

    • During installation, the 64-bit OS is recognized and installed the 64-bit version of the redistributable.
    • The emulator is probably a 32-bit version (compatibility, 32-bit programs usually work on 64-bit systems, but not vice versa).
    • There looking for the 32-bit version of the redistributable is not installed.

    Note, this is one of the many possibilities in the world of software. However, the fact that 32-bit programs require the redistributable 32-bit and 64-bit programs require 64-bit redistributable is why I suggested to install both versions. It is not only useful for the HP emulators, but many other programs (this is why I have so many people already installed).

    Best regards.

  • Qosmio G30-163 asks if I want to put HDD2 for mirroring

    I just got my new G30-163. Whenever I turn it on it asked if I would like to configure HDD2 for mirroring. I always press Cancel, but it repeates demand with every start upward. As a result, my second drive does not appear and cannot be used. I tried to reinstall the whole system of the disk, but I always get the same request at the end.

    I really don't want to have to go through the sending of the computer, so I hope you can tell me how to solve this problem from here.

    I put t know how you've changed this option, but AFAIK the RAID mirroring can be set in the BIOS.
    AFAIK that Toshiba strongly advised not to change the configuration of RAID in the BIOS because by selecting the incorrect settings may destroy the data on your hard disks.
    In some circumstances, however, configure RAID in BIOS is required, for example to prepare a fresh drive for RAID operation

    But please take extra precautions when changing the RAID configuration to avoid accidental loss of data!

    1. turn on your laptop, and then press [ESC] until a message: "check the system. Then press [F1]. »

    2. Press [F1] to enter the BIOS Setup.

    3. press on [PGDN] twice to move to the third page of the BIOS.

    4 move the cursor to the State entries to create and edit states like requires it (you cannot change the entries in the current state).

    5. Press [space] to scroll through all the possible scenarios of RAID possible.

    6. then move the slider to run creation.

    7. a message appears at the bottom of the screen:
    «WARNING: If you change the RAID array, you must reinstall OS.»

    8. press on [space].

    9. another message will appear at the bottom of the screen: "are you sure? All data on the HDD (s) will be destroyed. You want to do this? If 'Yes', please enter the string key that is written in the manual. »

    10. enter [1] [2] [3] [4] and then [Enter].

    11. Finally, press [END] to exit the BIOS configuration and [Y] to confirm any other BIOS changes.

    Note:
    The RAID-1 (mirroring) stored data twice (on two HDDS) so that even if there are problems with the other HARD drive HARD drive can be used to retrieve the data.
    Please read more on RAID in your user manual!

    Post edited by: Jimi

  • Prevent users from deleting datafile

    Hi guys

    My first great application is now complete and I'm about to do a setup of all my files. In the attempt to make my application bulletproof, I came across a possible scenario with a bad result.

    A little info: my application gathers a number that the user input and some readings of voltage of an acquisition of data. Because I have much skill in the formatting of an Excel sheet in Labview, I did everything in Excel. When the data comes by adding shape Labview, my Excel spreadsheet formats cellcolors, calculates data and creates some dynamic graphs that develops when the data are added. So, as you can understand, I spent my whole day layout of this monster-sheet-Excel file.

    Users can open the Excel-sheet form simple press of a button in the Labview program. I did not a dialog box to the user to choose the path to the excel sheet, in other words, the path is static in my code.

    BUT... Then it hits me. What happens if the user deletes the file or destroys the formatting?

    Since I already choose to fit excel sheets in Excel I'll stick with this. That's why I ask you; How do you manage this with your applications?

    Can Labview access a read only file, insert the data and when users open the file they can't change it? As change a read-only file for writing, insert data, then change new read-only.

    What would be the best way to manage the data files?

    Kind regards

    Even

    Hi guys again

    Thanks for the tips!

    I thought this question during a good night's sleep. Today, I talked to my boss and he said that I had an extra month to complete the project due to latency on the client side. So I think using all your advice:

    1. make all the formatting in Labview and create a new file if the original file does not exist or is moved.

    2. copy the data and allow the user discovers, to make a backup of the local computer on our server.

    3. write a good manual and inform users how to use the software.

    I had this in mind from the beginning, but when I got the original deadline, time started to run and I had to do a quick fix and do any of the formatting in Excel. Especially the Council Excel on this forum help me a lot

    Thank you and have a great day and weekend

    -Even

  • too many comm usb ports

    Hello

    I ran into what may be soon, where we test units that have built in USB ports that appear as serial comm ports. The problem is that whenever we connect to an object that has not been run on this computer until Windows assigns it a new com port number to measure. My concern is that fast enough, as the production line is in full swing, we will hit the 'magic number' of 255, the highest number of com port and I have not any idea that Windows will do at this point. Before you begin to write the code to analyze the new com port number returned by VISA and adjust"registry entries accordingly, I want to know if it's necessary. I think there are a couple of possible scenarios, Windows complains and it won't deliver a com port #, that Windows starts from the beginning, or that Windows strikes only 255, then keeps the front it. I'd rather it be at least two, won't my program messing around in the registry and really have no time at the moment, nor access to the machine (s) to experiment to see.

    Thank you


Maybe you are looking for