Problem with release semaphore reference

I wrote a simple routine to try to understand the functioning of semaphores (see the attached vi).  In this routine, I have 2 LEDs I want to Flash for 5 seconds each (independently of each other).  I assumed that the operation would be the same regardless of the LED that blinks first, but this is not the case.  When I ran the vi, the semaphore reference vi release was connected to the loop 1 exit semaphore vi.  When my vi ran, loop 2 executed first, and I got runtime error 1111,

Possible reasons:

LabVIEW: Semaphore of liberation called on a semaphore that was not currently acquired.

«"" "String of full appeal:»»"»
Release Semaphore.vi
semiphor.VI.

The only way I managed to do work was to connect the semaphore reference vi output 2 vi release semaphore loop (as indicated).  Can someone explain and make recommendations?

Thanks in advance.

The apperead for the error, because the 'release semaphore reference' was performed before the semaphore 'liberation '. You should force the order of execution so that "rsr" is always executed after the two 'r '. I suggest to use the mistakes of merger on both loops and pass error merged into the "ISR".

Felix

Tags: NI Software

Similar Questions

  • Problem with Indesign CC reference grid

    Hi all, I noticed that the baseline grid is always show when I open a new document, but only the A4 wire and lower.

    I have to go into the toolbar and disable each time.

    Is it possible to disable this feature?

    Without documentation open - go to the preferences and set the parameters here.

    And without documentation open - uncheck the box in the view > grids and Guides

    Which will affect all new documents, documents that this can already establish in.

    To change each of them, open them and follow the steps described above.

  • problem with the making of reference levels

    Hello!

    I have a problem with taking the basic lines - when the SQL is called from PL/SQL code...

    For example if I run in the SQL session * more

    ALTER session set optimizer_capture_sql_plan_baselines = true;

    exec dbms_mview.refresh ("VIEW_CLIENT_KONTO", "C");
    ...
    exec dbms_mview.refresh ("VIEW_CLIENT_KONTO", "C");


    nothing happens... I can't find the base line in dba_sql_plan_baselines...
    ========================================================

    optimizer_use_sql_plan_baselines = TRUE... of course and I can capture some baselines for SQL plain-not only if SQL is called from PL/SQL...

    Now, nowhere in documentation I could find that capture does not PL/SQL... in my opinion, would disadvantage-code so sderious in the database runs as PL/SQL...

    We habe Oracle Enterprise Edition 11.2.0.3

    optimizer_features_enable = 11.2.0.3

    What could be worng here... I forgot some settings or configuration. Thank you for your help in advance.

    Now, nowhere in the documentation I could find that capture does not PL/SQL... it would be, in my opinion.
    be sderious drawback-code so the database runs as PL/SQL...

    You're quite right. It would be a serious disadvantage.
    But it is not true that they are not captured in PLSQL.

    Installation program:

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    
    SQL> select name, value from v$parameter where name like '%baseline%';
    
    NAME                                               VALUE
    -------------------------------------------------- ------------------------------
    optimizer_capture_sql_plan_baselines               FALSE
    optimizer_use_sql_plan_baselines                   TRUE
    
    SQL> create table t1
      2  (col1 number);
    
    Table created.
    
    SQL> INSERT /*+ domtest sql */ INTO t1 select 1 from dual;
    
    1 row created.
    
    SQL> begin
      2  INSERT /*+ domtest plsql */ INTO t1 select 1 from dual;
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id, substr(sql_text,1,30) sql_text, child_number c, to_char(force_matching_signature
    ) sig, sql_plan_baseline
      2  from   v$sql
      3  where  sql_text like 'INSERT /*+ domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    
    SQL> select to_char(b.signature) sig, b.created
      2  from   v$sql s
      3  ,      dba_sql_plan_baselines b
      4  where  s.sql_text like 'INSERT /*+ domtest%'
      5  and    b.signature = s.force_matching_signature;
    
    no rows selected
    
    SQL> alter session set optimizer_capture_sql_plan_baselines = true;
    
    Session altered.
    
    SQL> 
    

    Database created for the SQL statement:

    SQL> INSERT /*+ domtest sql */ INTO t1 select 1 from dual;
    
    1 row created.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,30) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          1 17374141102446297863           SQL_PLAN_1ayk9a0wnr
    
    SQL> 
    

    Database created for PLSQL statement:

    SQL> begin
      2  INSERT /*+ domtest plsql */ INTO t1 select 1 from dual;
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,30) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          0 7407988653257810022
    gmskus7sbgt5d INSERT /*+ domtest plsql */ IN          1 7407988653257810022            SQL_PLAN_5s3v02k7yx9
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          0 17374141102446297863
    64rzqgrt63wzu INSERT /*+ domtest sql */ INTO          1 17374141102446297863           SQL_PLAN_1ayk9a0wnr
    
    SQL> 
    

    Cleaning guidelines:

    SQL> declare
      2   l_spm_op pls_integer;
      3  begin
      4   for x in (select sql_handle from dba_sql_plan_baselines b where created >= trunc(sysdate))
      5   loop
      6       l_spm_op :=
      7       dbms_spm.drop_sql_plan_baseline(x.sql_handle);
      8   end loop;
      9  end;
     10  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    So I expect that this is related to the DBMS_MVIEW and a restriction on recursive, internal instructions.

    For example, if you capture base plan sql lines you don't capture baselines for sys and system statements, etc.

    Further investigation required.

    For example, we will build a MV:

    SQL> create materialized view mv1
      2  build immediate
      3  refresh on demand
      4  as
      5  select /*+ domtest mv */ col1 from t1;
    
    Materialized view created.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    We see two statements of the initial creation of the MV and the subsequent update (the latter is the one with the BYPASS_RECURSIVE_CHECK trick).

    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT %domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
    
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
    
    SQL> 
    

    Even if we repeat the update, we do not need to obtain a reference level:

    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT %domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
    
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
    
    SQL> 
    

    So... maybe BYPASS_RECURSIVE_CHECK have nothing to do with it?

    It is not likely to be relevant, but maybe we should just check?

    Let's see what happens if we return to our original plsql statement because we cannot insert a MV directly.

    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    ------------- -------------------------------------------------- ---------- ------------------------
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    ------------- -------------------------------------------------- ---------- ------------------------
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    
    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO t1 select 1 from dual;
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  --,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  from   v$sql
      7  where  sql_text like 'INSERT /*+ BYPASS_RECURSIVE_CHECK */%';
    
    SQL_ID        SQL_TEXT                                                    C SQL_PLAN_BASELINE
    ------------- -------------------------------------------------- ---------- ------------------------
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          0
    6kjvr1gu6v2pq INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO T1 SELEC          1 SQL_PLAN_aq62u7rqdfcs8125daea2
    
    SQL> 
    

    Yes, nothing to do with it.

    I would say it is because running via DBMS_MVIEW, he is special and bypasses the review of basic data.

    We can somehow get around this?
    Perhaps, the basic lines of being a flexible vehicle that work off SIGNATURE (and PLAN_HASH_2).

    We will check the hash of the signature and the plan must reproduce.

    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    PLAN_HASH_VALUE
    ---------------
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
         3617692013
    
    SQL> 
    

    And replace the materialized by a table view:

    SQL> drop materialized view mv1;
    
    Materialized view dropped.
    
    SQL> create table mv1
      2  (col1 number);
    
    Table created.
    
    SQL> 
    

    And try to get a statement with the same signature and plan that uses a reference database:

    SQL> begin
      2   INSERT /*+ BYPASS_RECURSIVE_CHECK */ INTO "RIMS"."MV1" select /*+ domtest mv */ col1 from t1 ;
    
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    PLAN_HASH_VALUE
    ---------------
    ctyufr5b5yzfm INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    
    5n6auhnqpb258 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872           SQL_PLAN_b6tnbps6tn
                  ECK */ INTO "RIMS".
         3617692013
    
    gfa550uufmr34 INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872
                  ECK */ INTO "RIMS"."
         3617692013
    
    SQL> 
    

    Now, if we remove and recreate the materialized view:

    SQL> create materialized view mv1
      2  build immediate
      3  refresh on demand
      4  as
      5  select /*+ domtest mv */ col1 from t1;
    
    Materialized view created.
    
    SQL> exec dbms_mview.refresh('MV1');
    
    PL/SQL procedure successfully completed.
    
    SQL> select sql_id
      2  ,      substr(sql_text,1,50) sql_text
      3  ,      child_number c
      4  ,      to_char(force_matching_signature) sig
      5  ,      sql_plan_baseline
      6  ,      plan_hash_value
      7  from   v$sql
      8  where  sql_text like 'INSERT %domtest%';
    
    SQL_ID        SQL_TEXT                                C SIG                            SQL_PLAN_BASELINE
    ------------- ------------------------------ ---------- ------------------------------ -------------
    PLAN_HASH_VALUE
    ---------------
    dac4d22mf0m6k INSERT INTO "RIMS"."MV1" selec          0 12798978218302414227
                  t /*+ domtest mv */
         3617692013
    
    cn4syqz9cxp3y INSERT /*+ BYPASS_RECURSIVE_CH          0 12927173360082366872           SQL_PLAN_b6tnbps6tn
                  ECK */ INTO "RIMS"."
         3617692013
    
    SQL> 
    

    And cleaning:

    SQL> drop table t1;
    
    Table dropped.
    
    SQL> drop materialized view mv1;
    
    Materialized view dropped.
    
    SQL> declare
      2   l_spm_op pls_integer;
      3  begin
      4   for x in (select sql_handle from dba_sql_plan_baselines b where created >= trunc(sysdate))
      5   loop
      6       l_spm_op :=
      7       dbms_spm.drop_sql_plan_baseline(x.sql_handle);
      8   end loop;
      9  end;
     10  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    Then...
    Baselines are created for the sql statements executed in PLSQL? Yes.
    Baselines are created for internal instructions of DBMS_MVIEW? N °
    Why? Don't know. But I think that this is the expected behavior.
    Is there a convoluted way to apply a basic strategy to the internal refresh statement? Yes.

  • Problems with supposed strictly typed reference...

    I am having some problems with the so-called references strictly typed.

    Can anyone look at the related code (LV2010) and tell me why the example at the top of the page does not work and the background doesn't do. What more, the General method for only the top of the example page work?

    The discussion of strict and low conditions typed is quite short in the help documentation. Pointers to the relevant documentation would be appreciated.

    Thank you!

    You can not write the Strings property of [] of an Enum during execution of the VI.  If you need to do this, a common way is to use a ring of text instead of an Enum.

  • Problems with 5.4 Mirage download reference CVD

    Hello

    I tried to go down my 5.4 Mirage ground infrastructure, but I continue to turn in questions with the CVD reference do not download.

    I have two Mirage servers behind a Barracuda Load Balancer, and even if I point the Mirage customer directly to one of the nodes in an attempt to capture the reference machines I get the same error below.

    Any help is appreciated.

    Full download failure

    Device ID is 3 ', CVD ID is 10003'

    System.NullReferenceException: Object Reference not set to an instance of an object.

    to Wanova.Server.Common.Database.CommonStorageOperations.GetPrimaryMongoVolume (ISession session)

    to b__0 (ISession s) Wanova.Server.Common.FileSystem.OperationsWrapper.Sis2FileSystemErrorWrapper. < FindCurrentProblematicVolume >

    to Wanova.Server.Common.Database.Storage.RunDbOperationInternal [T] (try Func 2 dbOperation, IsolationLevel isolationLevel, Int32, Int32 batchSize, IStorageRetryChecker retryChecker, String funcName)

    to Wanova.Server.Common.Database.Storage.RunDbOperation [T] (try Func 2 dbOperation, IsolationLevel isolationLevel, Int32, Int32 batchSize, IStorageRetryChecker retryChecker, String funcName)

    to Wanova.Server.Common.Database.Storage.RunQuery [T] (Func 2 doQuery)

    at Wanova.Server.Common.FileSystem.OperationsWrapper.Sis2FileSystemErrorWrapper.FindCurrentProblematicVolume)

    to Wanova.Server.Common.FileSystem.OperationsWrapper.Sis2FileSystemErrorWrapper.Wrap [T] (Func 1 action)

    to Wanova.Server.Common.FileSystem.ErrorHandlingRemoteSis2FileSystem.BatchExists (IList 1 fileProperties)

    to b__0 Wanova.Server.Common.FileSystem.BatchingUnit.HoardingFileSystem. < BatchExists > (IEnumerable 1 inList)

    to Wanova.Server.Common.FileSystem.BatchingUnit.HoardingFileSystem.ChunkIntoBatches [TIn, everything] (IEnumerable 1 fileProperties, Func 2 application)

    to Wanova.Server.Common.FileSystem.BatchingUnit.HoardingFileSystem.BatchExists (IList 1 fileProperties)

    at Wanova.Server.Common.FileSystem.BatchingUnit.ManifestBasedCachingFileSystem.ProcessManifest (IStreamingManifest manifesto)

    at Wanova.Server.Server.Upload.PrepareUploadCompletion.CreateSis2DedupIndex (IDedupIndex, dedupIndex, clear IStreamingManifest)

    to Wanova.Server.Server.Upload.PrepareUploadCompletion.OnCompleteWithSuccess (IFileSystem tempAreaFs, onSuccess, Action 1 onError Action)

    I was using a Dell FS8600 NAS back ends with Compellent SAN.

    The problem was the storage subsystem.  Confirmed by the creation of a file out on the network server and use it as my first volume.  Operations have succeeded at this time.

    Will have to study with Dell to find out why their device does not work with the Mirage.

    Fluid FS version 3

  • Fix for the problems of release of WebHelp with IE 11 breaks search

    I use RoboHelp HTML 9 and you had problems with WebHelp generated in IE 11. The table of contents was completely empty and the 'Search' tab was going well, but have not worked. Everything worked fine in Firefox. After much research online and experimenting in these forums and elsewhere, I was able to get the table of contents to display properly in IE 11 (and Firefox), but the fix caused the Search tab to stop functioning in accordance with this other forum post RH9 Webhelp search function does not work properly.

    I need to have BOTH COT and research displays and works correctly but in order to get the table of contents displays correctly I had to change the preferred Format "Pure HTML" and, according to the above-mentioned position setting, it's what messes up the search function. is there a solution that will enable the TOC and research work properly?

    Here is a summary of the steps I took to get to this point:

    • Tested WebHelp output of two different projects myself so that the startup project Salesbuilder - all would display or function properly in Firefox but not in IE (empty TOC and non-functional research) 11.
    • Find a "patch" for RH10 exactly the problem I have experienced with RH9 but wasn't able to find a version for RH9. Since the patch included only 2 files (whutils.js and whver.js), I saved these files in the RoboHTML\WebHelp5Ext\template_stock directory and replace them with the new.
    • Regenerated one of my RoboHelp projects - still does not work in IE 11 and now does not work in Firefox either!
    • Tried to turn on mark of the Web but this did not help and did not allow for opening PDF that is necessary for one of the projects, I turned it again.
    • Change the preferred Format setting "Pure html" instead of "DHTML" and the table of contents displays and worked properly in 11 IE and Firefox! Hooray!
    • Celebrated for 10 seconds until I clicked on the "Search" tab and see the input box filled with letters of the alphabet with other random letters, words, numbers below. It looks almost like an index, but none of my projects using an index and I've not generated one or the other project.
    • Found the post mentioned above which States that the solution is to change the preferred Format of DHTML, but when I do this I am back empty TOC and look clean but non-functional search!
    • I have now deleted the search the output of one of the projects tab, it is not really necessary, but I need to find a solution for this for my other project.

    Two of my projects are run locally - it is documentation that is distributed on a CD release and the other is CSH, which is loaded on the local server with the software for which it was created.

    Dorothy

    Note to administrators: Sorry, but I posted this in response to a previous post , summary, Index, & Research do not appear in the generated... help -then perhaps it should be removed from this thread to avoid confusion.

    There is an official fix for RoboHelp 9 IE10. But who is unable to solve your problem. If you PM me, I can send you a pre-test to fix IE11 on RH9 to see if it works in your situation.

    The only real solution is probably to update RH11.

    Kind regards

    Willam

  • Initial problems with my Qosmio

    Hi all

    Now please don't misunderstand here because I liked my Qosmio, it's good game power little. - but there are a few things that I was very unhappy and others I was impressed and have simply not had the opportunity to share with the community.

    First of all, I live in Christchurch, New Zealand, and you may remember that we had major problems with earthquakes, these are now installed but nevertheless relate to my story.

    Also related that I have a blood disease which caused damage to my skin over the years, leaving less sensitive most people are accustomed.

    First parts of displeasure.
    I bought my Qosmio, nine of Harvey Normans in Christchurch, I bought the extended warranty, the yards brand new... No problems; However after about 6 weeks, I finally decided to look beyond the image of the BIOS Toshiba reviews that see you when the machine starts up to read what was on my machine.

    (1) to my surprise and dismay I found out that my bios stated that 1 my 4 core CPU core was locked and that the BIOS was NFR (not for resale) that is to say the machine was supposed to be one that was released by Toshiba as a demonstrator, confused, that I talked to Toshiba New Zealand , who basically told me that it "was not possible and I must be mistaken", to research on the Web from Toshiba site, I couldn't find a BIOS version later.

    (2) I decided after using for the system that it was time to make a recovery and began in the recovery disc creation process, everything went well and I decided to do a clean cleaning at all, even if it would take some time, some time was certainly what he needed, I started on the first CD and started the process. 8 hours later I finally got a message pop up on the screen saying that the recovery had... failure of SIP. OH NO.. !

    I restarted the hard disk in the vain hope that it was a mistake on the part of the message, but it wasn't.
    Trolling the Internet on my desktop computer, I found a reference to failed drives to rescue & recovery for my model due to a fault in the creation of the disk.

    I called Toshiba who informed me the only way I could get the disks of rescue and recovery had to pay for them, I informed them that I already had rescue and recovery disks, but they did not work, they don't want to know - essentially pay up or shut up.

    I got my DVD of windows 7 and install it on my Toshiba using the serial number on the device that I caught from the recovery discs manually, decompression all drivers and install them manually as well, in the end, I had a whole system that works, no thank you recovery disks.

    Now these are not all the bad things, but I must say that the service I received from Toshiba SUCK!

    Shortly after that, we had earthquakes of Christchurch that killed so many people, at the time that their Commission that I had my Qosmio on the kitchen table and had prepared just a large cup of coffee, I sat or rather is dropped down as the earthquake hit - it was extremely violent and struck me on the floor. When everything settles I picked up myself - to find my coffee - all 900mls worth was now on the keyboard of Toshibas and biscuit barrel my wife kept on the table had fallen more to slam the back of the lid of the laptop and it has broken in two places; However, the computer was still ongoing! incredible.

    I very quickly stop the machine down and very gently at end it to the back corner to allow the coffee to drain on a towel. Although damaged keyboard soaked after I had dried the machine and dehumidified it I then ran it for a month to use it to manage our statement of claim - I have to say its a bit beasty Tuff.

    Now, a kind word for Toshiba, after them on incidents and curious about the status of the warranty etc, phoning told me that I should have my Qosmio verified and provided with a certified Toshiba technician said he was OK, clean to the top of the coffee and all repairs worked that "Toshiba would honour all other issues related to the guarantee based on own issues merit" I was basically shocked if their tech said that it was OK then, it was OK and my warranty would continue. So Bravo to Toshiba for a vision very fair to the guarantees.

    Now for the good, the bad and the dangerous plain.
    Finally a new BIOS has appeared on the support site, I downloaded it looking forward with impatience to unlock this core I was missing, I installed it and the system has restarted after you start Windows 7 installed some additional elements of INF files and I found that I had a couple of additional entries in the BIOS.

    After that my system has been repaired I had some more memory added to it by Toshiba technology, it also made me a working set of rescue and recovery disks that I was crazy, he did a beautiful job on the machine and it was back to looking brand new, into the new smell of tech.

  • What are the Causes of 'loop Hang"problem with file i/o when using timed multiple loops on one OR cRIO-9012?

    Normal 0 false false false fr X-NONE X-NONE / * Style Definitions * / table. MsoNormalTable {mso-style-name : « Table Normal » ; mso-tstyle-rowband-taille : 0 ; mso-tstyle-colband-taille : 0 ; mso-style-noshow:yes ; mso-style-priorité : 99 ; mso-style-qformat:yes ; mso-style-parent : » « ;" mso-rembourrage-alt : 0 à 5.4pt 0 à 5.4pt ; mso-para-marge-top : 0 ; mso-para-marge-droit : 0 ; mso-para-marge-bas : 10.0pt ; mso-para-marge-left : 0 ; ligne-hauteur : 115 % ; mso-pagination : widow-orphelin ; police-taille : 11.0pt ; famille de police : « Calibri », « sans-serif » ; mso-ascii-font-family : Calibri ; mso-ascii-theme-font : minor-latin ; mso-hansi-font-family : Calibri ; mso-hansi-theme-font : minor-latin ;}

    I experienced a problem with an application. I think I've isolated the problem in the "Timed loop question - Source Code.zip" attached source code. A detailed list of my results are in the attached document "Timed loop detailed question - Results.docx.

    Overview - it seems to be closely related to the IO files and the use of "Timed loops" on the OR cRIO-9012

    1. If I activate the e/s in two loops, then two loops crash simultaneously

    2. If I activate only the e/s in a loop, then only this loop crashes

    3. If I activate the e/s in two loops and make a 'While' loop earrings, then it don't crash

    4. If it is wrote nothing in the file I/o, then it don't crash

    5. If the reference to the file is left open instead of opening and closing on each call, so it don't crash

    6. If I try to run it on "My Computer", then it don't crash

    7. If the IO is only activated in a loop and programmed to wait for one second between the file access, then it always crashes

    In my real application, any given row is only writing (at least) once a minute, but I couldn't still my application to plant within a period of 24 hours by writing a single error of a single loop once per minute, with a low CPU use. It was the impulse to test the seventh point above.

    It seems that the best solution was to open the reference to the file and let it open. I think it is a good practice in general and I'll do the update in the application. This should solve the problem, but it is very difficult to verify this due to the sporadic nature of the question. As such, I'd like to understand what was causing the problem so I can verify that it was fixed. So far, my attempts to create a single, coherent theory able to explain all aspects of this issue have failed.

    I just wanted to know at all that there has been a request for corrective action (CAR #214156) has filed for this issue to be fixed in a future release. This seems to be a problem with the VxWorks operating system, we use in real time. We have additional cRIO chassis which have a Pharlap OS where it does not work. For now, you can search for this CAR ID notes to see if this problem has been resolved for publication in the future.

    Currently, there are two solutions, we have identified for this problem:

    1. open the file before the loop and close it after. (recommended)
    2 perform file i/o in a normal loop and transfer data to a queue.

  • You try to run the system on my desktop restore encounters a problem with the program looping.

    Original title: System Restore loops

    Hi, I am trying to run restoring the system on my desk is a problem with the program in a loop.  He directs the system restore and then comes back just to start the system again Restore page.  How to solve this?  I started having problems when I have updated the BIOS on my motherboard.  When I installed the motherboard at the start, I think I used the incorrect installation disc (my son has same brand motherboard but the sound is more advanced).

    Recovery of your computer (Windows) using "Recovery Partition" of the Manufacture or
    contact PC manufacturing (see support links below) and order the recovery media.

    Note: Activation is not required when you use the recovery partition or recovery media, but you will need to reinstall all your applications.

    Also to save your documents on external support (if possible) before starting the recovery process.

    Once completed, your PC will be actually in the State when you first purchased it and turned on for the 1st time.

    To access the recovery Partition, start your computer, and then by pressing the appropriate function key. It can be either F1, F2, F9, F10, F11, F12, DEL or tab key. Check the list below or your user manual for your brand and model.

    If your hard drive has failed, do not have a recovery partition or the recovery partition is not accessible,
    Then, you must contact the manufacturer support team and ask for a "recovery disc" which allows to reinstall Windows 7.

    How access/start the process of recovery of the manufactures listed below.

    Acer: Press and hold ALT + F10, as soon as you see the logo
    http://Acer.custhelp.com/app/answers/detail/A_ID/2631
    Acer support: http://www.acer.com/worldwide/support/
    Acer recovery support: http://store.acer.com/store/aceramer/en_US/eRecovery

    Advent: restart your computer, then the immediate start by pressing the [F8] key or the F10 key.
    The fastest way to restore your computer is to use the hard disk recovery tools. You can access them by restarting your computer and then pressing the [F8] key or the F10 key until the Advanced Boot Menu appears. Use the arrows to select "Repair your computer", then press [Enter]. Read all of the instructions on the website of advent and made your choice as to the action you want to perform: http://www.adventcomputers.co.uk/restore-or-reinstall-windows-your-computer
    Support: http://www.adventcomputers.co.uk/product-support/support-services

    ASUS: Press or press the F9 key as soon as you see the Asus logo.
    http://support.ASUS.com/troubleshooting/detail.aspx?SLanguage=en&m=X53E&OS=&no=1775
    ASUS support: http://support.asus.com/contactus.aspx?SLanguage=en

    Dell: Press F8 directly after switching on / to start the computer
    Recovering detail instructions:
    http://www.Dell.com/support/troubleshooting/us/en/19/KCS/KcsArticles/ArticleView?docid=DSN_362066
    http://www.Dell.com/support/troubleshooting/us/en/19/KCS/KcsArticles/ArticleView?docid=52182
    Dell support: http://www.dell.com/support/home/us/en/19?c=&l=&s=
    Or: http://www.dell.com/

    EMachines: hold the Alt key and hold press and release the key F10
    http://Techchannel.RadioShack.com/eMachines-system-recovery-1747.html
    Support: http://www.emachines.com/ec/en/US/content/support

    Fujitsu: Press F8 several times directly after switching on
    https://answers.Yahoo.com/question/index?QID=20110406074143AAcx1Zw
    Support: http://www.fujitsu.com/global/support/

    Gateway:
    http://www.ehow.com/how_6297937_restore-gateway-laptop-factory-settings.html
    https://support.gateway.com/s/software/Microsof/Vista/7515418/7515418su531.shtml
    Support: http://www.gateway.com/worldwide/support/

    HP Notebook: Usually to begin recovery process press the F10 key, power on the computer
    HP Mini: Press F11 directly after switching on / to start the computer
    http://h10025.www1.HP.com/ewfrf/wc/document?DocName=c01867418&cc=us&destPage=document&LC=en&tmp_docname=c01867418
    Support: http://www8.hp.com/us/en/contact-hp/ww-contact-us.html

    Lenovo uses the F11 key to launch the restore process:
    http://support.Lenovo.com/en_US/detail.page?LegacyDocID=MIGR-4UFUYK
    Directions for Lenovo OneKey Recovery, hidden partition and recovery DVDs:
    https://support.Lenovo.com/us/en/documents/ht077384
    and: http://support.lenovo.com/en_US/detail.page?DocID=HT077144
    Support: http://support.lenovo.com/en/supportphonelist

    How to run Lenovo Onekey Recovery
    http://support.Lenovo.com/en_US/downloads/detail.page?docid=HT062552
    Detailed as follows: http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?&LegacyDocID=127597018499211

    You can also find parts of this article from Lenovo worth reading:
    http://support.Lenovo.com/en_US/detail.page?LegacyDocID=MIGR-4VFUDU

    LG: Press F11 directly after switching on / to start the computer
    Support: http://www.lg.com/

    Packard Bell: Turn on your computer. When Packard Bell logo is displayed, press in and hold the ALT key while pressing the F10 key several times. Release the keys when a message that Windows is loading files.
    After the system recovery program has loaded follow the instructions to reinstall the operating system.
    Support: http://www.packardbell.com/index.html

    Samsung: Press the F4 key to the Samsung logo when you turn on first of all of the computer.
    Support: http://www.samsung.com/

    Sony VAIO Windows 7: restart and press "F10".
    https://CA.en.KB.Sony.com/app/answers/detail/A_ID/35585/p/48903, 49902,71663,71664/c/65,67/kw/recovery%20using%20f10
    Sony VAIO Vista: Restart and press "F8" repeatedly until the screen "Advanced Boot Options".
    https://us.en.kb.sony.com/app/answers/detail/a_id/41931/~/how-to-perform-a-system-recovery-using-the-vaio-recovery-center.
    https://us.en.KB.Sony.com/app/answers/detail/A_ID/41949/session/L2F2LzEvdGltZS8xNDA4MjI2NTAzL3NpZC8qWVBPbCpfbA%3D%3D
    Support: http://www.sony.net/SonyInfo/Support/

    Toshiba: Press on F12 or the value 0 (zero) key on the top of the keyboard (not the zero on the numeric keypad key)
    and at the same time, press the button power once to turn on your laptop.
    When the Toshiba screen appears; release the 0 key.
    References: http://www.mytoshiba.com.au/support/items/faq/71
    http://forums.Toshiba.com/T5/system-recovery-and-recovery/how-to-perform-system-recovery-Windows-7/Ta-p/279643
    Support: http://www.toshiba.co.jp/worldwide/

    Windows 7 - location of the Partition Recovery and information.
    "Configurations of drive partitions using the BIOS has recommended.
    Note: Check the diagrams of this article
    http://TechNet.Microsoft.com/en-us/library/dd744364%28WS.10%29.aspx

    J W Stuart: http://www.pagestart.com

  • Problem with the key S/4 blackBerry Smartphones.

    Well, Hello community; This is my first post here.

    I have a problem with my Blackberry Curve 8520 device:

    3 days ago I typed the password incorrectly 10 times, then he appeard things like (wiping or something) and some numbers. Later, I turned on my camera; And seen all Contacts and all reset, I restarted from the beginning (adding new contacts Downloding, programs, etc.) This has worked for me for 2 days, but now... My camera is trolling as hell, (S/4) key does not work, I can not activate it with the mute button; I need to activate it with the 'Red' button, too, if I turn off the power, I can't activate it with the 'Red' button, I just pull the battery...

    (Hope you understand my problem and sorry for my English, I know; She sucks...

    Greetings, Diego)

    Hello and welcome to the community!

    You can consider a charge of BONE, that something can be a problem with your OS BB given what you describe. But first, please try safe MODE:

    • KB17877 How to start a smartphone BlackBerry in Mode safe

    It will take several attempts to get the combination of keys ESC (press/release/hold) OK, so be patient. When properly in Safe Mode, run for awhile determine if behaviour will or will not return. If it is then in safe mode, then you should proceed with reloading the OS. But if the behavior does not work in safe MODE, then well... think about what happened just before this behavior started? A new application? An update? A theme? Something else? Think carefully that the slightest change can be causal... and try to undo all that was.

    To perform a reload of the OS, here are some process, you can use:

    At the top of each forum device, there should be some 'sticky' threads dealing with the level of the OS available for many models. If they understand your model, please use those as a reference as you go along. Otherwise, you will have to dig through the download portal official for packages of OS for your model:

    From a PC, you can install any compatible OS package (for example, for your BB model exact number) of a BB via this procedure:

    Note Although written to "recharge" and the storm, it can be used to upgrade, downgrade or recharge any BB device model - depends on the operating system package you download and install on your PC. If this OS package comes from one carrier other carrier for which your BB was built, then remove, on your PC, all copies of the SELLER. XML... There will be at least one and maybe 2, and they will be located in the same way or to (it changes based on your version of Windows) these files:

    • C:\Program Files (x 86) \Common Files\Research In Motion\AppLoader
    • C:\Users\(your Windows username) \AppData\Roaming\Research In Motion\BlackBerry\Loader XML

    Don't forget that you remove, since your PC, any other BB OS devices as packages with more than one installed on the PC can cause conflicts with this procedure.

    You can also study the use of BBSAK (bbsak.org) to perform the wipe what he is capable.

    You can also try this procedure might limit the specific causal element:

    1. Load your OS "bare bones"... If everything is optional, do not install it.
    2. If the behavior is immediately, then try another OS with step 1
    3. If the behavior does not immediately, then run for as long as necessary to make you to be sure that the behavior will not occur.
    4. Add one more thing - no matter how tempting, one.
    5. If the behavior does not immediately present, and then runs for long enough to be sure he won't have the same problem
    6. Repeat steps 4 and 5 until all things are responsible or the behavior presents

    When the behavior shows up, you know the culprit... the last thing you have loaded.

    If the behavior doesn't re-present, then you know that step 1 or 2 cured it.

    If the behavior has anything, then you have probably a problem of material level for which no amount of OS or software can heal.

    If you are on a MAC, you are limited to only your sanctioned carriers OS packages... but can still use any level they currently have to sanction. See this procedure:

    • KB19915 How to perform a clean reload of the smartphone BlackBerry using BlackBerry Desktop Software application software

    Good luck and let us know!

  • Problem with different ASM disaster recovery start - new

    Hello together,

    I had an old net here about it but now will not solve the problem with the points in the old thread. Here's the old: https://community.oracle.com/thread/3608049?start=0 & tstart = 0

    I'm doing a disaster recovery with the 'apex11A' on a new server database, which has an another ASM starts. The old man starts is '+ DGA112_1' and '+ FRA112_1', newcomers are called '+ DATA_QUM169' and '+ FRA_QUM169 '. I changed the settings in the spfile restored by writing in a pfile file and creating the spfile from pfile.

    I tried in several ways. First lay the new ASM with RMAN to the course:

    run
    {
    SET NEWNAME FOR DATABASE TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Then I tried it in RMAN by defining the new ASM for each data file:

    run
    {
    SET NEWNAME FOR DATAFILE 1 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 2 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 3 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 4 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 5 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 6 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 7 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 8 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 9 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 10 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 11 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 12 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 13 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 14 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 15 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 16 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 17 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 18 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 19 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 20 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 21 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 22 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 23 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 24 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 25 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 26 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 27 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 28 TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Then I tried the bot in one:

    run
    {
    SET NEWNAME FOR DATABASE TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 1 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 2 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 3 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 4 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 5 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 6 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 7 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 8 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 9 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 10 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 11 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 12 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 13 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 14 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 15 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 16 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 17 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 18 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 19 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 20 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 21 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 22 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 23 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 24 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 25 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 26 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 27 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 28 TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Whenever I get one

    Starting restore at 03-FEB-16
    using channel ORA_DISK_1
    
    
    creating datafile file number=1 name=+DATA_QUM169
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 02/03/2016 16:20:41
    ORA-01180: can not create datafile 1
    ORA-01110: data file 1: '+DGA112_1/apex11a/datafile/system.1423.788355253'
    

    The backuppiece which I bring are correctly defined with

    RMAN> catalog backuppiece '/usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1', '/usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1';
    
    
    cataloged backup piece
    backup piece handle=/usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1 RECID=3779 STAMP=902851052
    cataloged backup piece
    backup piece handle=/usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1 RECID=3780 STAMP=902851052
    
    
    RMAN> list backup;
    
    
    
    
    List of Backup Sets
    ===================
    
    
    
    
    BS Key  Size       Device Type Elapsed Time Completion Time
    ------- ---------- ----------- ------------ ---------------
    3779    52.61M     DISK        00:00:00     03-FEB-16
            BP Key: 3779   Status: AVAILABLE  Compressed: YES  Tag: TAG20160203T145340
            Piece Name: /usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1
    
    
      List of Archived Logs in backup set 3779
      Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
      ---- ------- ---------- --------- ---------- ---------
      1    24285   11073415926066 03-FEB-16 11073416327345 03-FEB-16
      1    24286   11073416327345 03-FEB-16 11073416678326 03-FEB-16
    
    
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    ------- ---- -- ---------- ----------- ------------ ---------------
    3780    Full    813.86M    DISK        00:00:00     03-FEB-16
            BP Key: 3780   Status: AVAILABLE  Compressed: YES  Tag: TAG20160203T145042
            Piece Name: /usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1
      List of Datafiles in backup set 3780
      File LV Type Ckp SCN    Ckp Time  Name
      ---- -- ---- ---------- --------- ----
      1       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/system.1423.788355253
      2       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/sysaux.1422.788355259
      3       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/undotbs1.1359.788355263
      4       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/users.1362.788355273
      5       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex4.1369.788356305
      6       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex4_files.1366.788356317
      7       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mms_archiv.1358.788357229
      8       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/planwerte.1357.788357243
      9       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/btdb_prod.1352.788456613
      10      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais.1353.788456763
      11      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mms.1354.788456995
      12      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/externe_wirk.1355.788457525
      13      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais2mt.1356.788458151
      14      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/btdb_read.1351.788458291
      15      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329
      16      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657
      17      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/macmon.1340.788458691
      18      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais_read.1339.788458725
      19      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais2srm.266.788458799
      20      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859
      21      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/quickcheck.1338.788458887
      22      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/switch.1337.788459139
      23      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/veit_r.1333.788459167
      24      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/test-btdb.1298.795097725
      25      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex11dev.986.874230931
      26      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex11devbt.985.874230963
      27      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hrbew.1083.851007823
      28      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/optimadata.1032.865951029
    

    I also tried to put the new ASM SQL:

    SQL*Plus: Release 11.2.0.4.0 Production on Wed Feb 3 16:04:05 2016
    
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, Automatic Storage Management and OLAP options
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/system.1423.788355253' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/sysaux.1422.788355259' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/users.1362.788355273' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4.1369.788356305' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/system.1423.788355253' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 1 - new file '+DATA_QUM169' not found
    ORA-01110: data file 1: '+DGA112_1/apex11a/datafile/system.1423.788355253'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/sysaux.1422.788355259' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 2 - new file '+DATA_QUM169' not found
    ORA-01110: data file 2: '+DGA112_1/apex11a/datafile/sysaux.1422.788355259'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 3 - new file '+DATA_QUM169' not found
    ORA-01110: data file 3: '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/users.1362.788355273' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 4 - new file '+DATA_QUM169' not found
    ORA-01110: data file 4: '+DGA112_1/apex11a/datafile/users.1362.788355273'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4.1369.788356305' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 5 - new file '+DATA_QUM169' not found
    ORA-01110: data file 5: '+DGA112_1/apex11a/datafile/apex4.1369.788356305'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 6 - new file '+DATA_QUM169' not found
    ORA-01110: data file 6: '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 7 - new file '+DATA_QUM169' not found
    ORA-01110: data file 7: '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/planwerte.1357.788357243' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/planwerte.1357.788357243' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 8 - new file '+DATA_QUM169' not found
    ORA-01110: data file 8: '+DGA112_1/apex11a/datafile/planwerte.1357.788357243'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 9 - new file '+DATA_QUM169' not found
    ORA-01110: data file 9: '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais.1353.788456763' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais.1353.788456763' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 10 - new file '+DATA_QUM169' not found
    ORA-01110: data file 10: '+DGA112_1/apex11a/datafile/mais.1353.788456763'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms.1354.788456995' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms.1354.788456995' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 11 - new file '+DATA_QUM169' not found
    ORA-01110: data file 11: '+DGA112_1/apex11a/datafile/mms.1354.788456995'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 12 - new file '+DATA_QUM169' not found
    ORA-01110: data file 12:
    '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 13 - new file '+DATA_QUM169' not found
    ORA-01110: data file 13: '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 14 - new file '+DATA_QUM169' not found
    ORA-01110: data file 14: '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 15 - new file '+DATA_QUM169' not found
    ORA-01110: data file 15: '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 16 - new file '+DATA_QUM169' not found
    ORA-01110: data file 16: '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/macmon.1340.788458691' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/macmon.1340.788458691' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 17 - new file '+DATA_QUM169' not found
    ORA-01110: data file 17: '+DGA112_1/apex11a/datafile/macmon.1340.788458691'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais_read.1339.788458725' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais_read.1339.788458725' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 18 - new file '+DATA_QUM169' not found
    ORA-01110: data file 18: '+DGA112_1/apex11a/datafile/mais_read.1339.788458725'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2srm.266.788458799' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2srm.266.788458799' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 19 - new file '+DATA_QUM169' not found
    ORA-01110: data file 19: '+DGA112_1/apex11a/datafile/mais2srm.266.788458799'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 20 - new file '+DATA_QUM169' not found
    ORA-01110: data file 20:
    '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 21 - new file '+DATA_QUM169' not found
    ORA-01110: data file 21: '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/switch.1337.788459139' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/switch.1337.788459139' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 22 - new file '+DATA_QUM169' not found
    ORA-01110: data file 22: '+DGA112_1/apex11a/datafile/switch.1337.788459139'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/veit_r.1333.788459167' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/veit_r.1333.788459167' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 23 - new file '+DATA_QUM169' not found
    ORA-01110: data file 23: '+DGA112_1/apex11a/datafile/veit_r.1333.788459167'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 24 - new file '+DATA_QUM169' not found
    ORA-01110: data file 24: '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11dev.986.874230931' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11dev.986.874230931' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 25 - new file '+DATA_QUM169' not found
    ORA-01110: data file 25: '+DGA112_1/apex11a/datafile/apex11dev.986.874230931'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 26 - new file '+DATA_QUM169' not found
    ORA-01110: data file 26: '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hrbew.1083.851007823' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hrbew.1083.851007823' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 27 - new file '+DATA_QUM169' not found
    ORA-01110: data file 27: '+DGA112_1/apex11a/datafile/hrbew.1083.851007823'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/optimadata.1032.865951029' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/optimadata.1032.865951029' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 28 - new file '+DATA_QUM169' not found
    ORA-01110: data file 28: '+DGA112_1/apex11a/datafile/optimadata.1032.865951029'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    

    But my new database will not set the new ASM and I have no why.

    The db_create_file_dest parameter is set correctly, so I think that:

    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_create_file_dest                  string      +DATA_QUM169
    

    I forgot something? Would be nice to get help ...

    A big thank you and best regards,

    David

    Your data checkpoint SCN file are in the LOW and HIGH range of the SNA for SEQUENCE 24286.

    Therefore, your UNTIL clause should be 24287 SEQUENCE up to THAT.

    Hemant K Collette

  • Problem with hierarchical query in function PL\SQL

    I have a simple table containing the ID of the parent

    -Create table

    create the table1 table:

    (

    ID NUMBER (12) not null,

    year number 4.

    month NUMBER (2),

    parent_id NUMBER (12)

    );

    -Create/recreate primary, unique and foreign key constraints

    change the table1 table:

    Add primary key constraint PK_TABLE1 (ID);

    change the table1 table:

    Add the foreign key constraint FK_TABLE1_PARENT (PARENT_ID)

    reference TABLE1 (ID);

    data:

    Insert into TABLE1 (id, year, month, parent_id)

    values (5, 2015, 12, 3);

    Insert into TABLE1 (id, year, month, parent_id)

    values (6 (2015), 12, 4);

    Insert into TABLE1 (id, year, month, parent_id)

    values (3 (2015), 11, 1);

    Insert into TABLE1 (id, year, month, parent_id)

    values (4 (2015), 11, 2);

    Insert into TABLE1 (id, year, month, parent_id)

    values (1, 2015, 10, null);

    Insert into TABLE1 (id, year, month, parent_id)

    values (2 (2015), 10, null);

    commit;

    and query

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;

    It works, but when I put this request in the procedure pl\sql

    create or replace procedure is get_report (p_cur_out on sys_refcursor)

    Start

    Open the p_cur_out for

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;             

    end get_report;

    /

    They do not compile. And in the fall, with the exception

    Errors of compilation for the PC of the PROCEDURE. GET_REPORT

    [Error: PL/SQL: ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], [], [], [], []]

    Online: 6

    Text: with h as

    Error: PL/SQL: statement ignored

    Online: 6

    Text: with h as

    My version of oracle

    1Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    2PL/SQL Release 11.2.0.3.0 - Production
    3CORE Production 11.2.0.3.0
    4AMT for Linux: Version 11.2.0.3.0 - Production
    5NLSRTL Version 11.2.0.3.0 - Production

    What is the problem with my request? Or database? How to solve this problem?

    If you have access to MOS, you can search the reason of it. If you are using left join syntax instead of joining ANSI, owner Oracle procedure compiles and returns the result.

  • All my games have a problem with my direct3D

    All my games have been good before... and now there are errors...

    It started 4 days ago, when I downloaded "path of exile.

    After that I installed the "pathOfExileInstaller.msi."

    While the game (poe) has been patching, I opened my game ragnarok online and there was a pop up error "cannot init d3d or grf file has a problem."

    so I thought that it was just a mistake because I opened two games online at the same time... so I closed the ragnarok and finished the patch/dwnload POE.

    While the "path of exile" was finished patch I started to run the game and an error
    -The D3D device has a nonzero reference number, which means that some objects were not released.
    N ' was not resetting Direct3D device objects.
    -DXUTCreateDevice failed

    I opened my other games Prototype 2, The Sims 2, Frozen Throne III and ragnarok online. all games will not start because of an error regarding with d3d.

    I checked my dxdiag and found I have a DirectX version 11 and the DirectDraw acceleration, Direct3d acceleration, AGP Texture acceleration are all enabled.

    I don't know what to do... Please help me...

    I use windows 8

    Hey Amaya,

    For a better understanding of the issue at stake, I would need more information on your side.

    1. What web browser do you use?
    2. Faced with this problem on all web browsers?

    DirectX enhances the multimedia capabilities of your computer. DirectX provides access to features of your display and audio cards, which allows programs to provide realistic three-dimensional (3d) images and immersive music and audio effects. Microsoft DirectX is included as an integral part of operating systems Windows and Direct X 11.1 is included with Windows 8. Try the steps listed here and see if it helps.

    Method 1:
    I also suggest you to install all Windows updates available including optional updates. Check if it helps.

    Method 2:
    If the problem persists, I suggest you try the procedure described in the article which you have not tried before. Check if it helps.

    Diagnosing basic problems with DirectX

    See the article for more information.

    How to install the latest version of DirectX

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • What is the problem with my sql says invalid identifier

    CREATE THE TABLE PROJECT

    (proj # NUMBER (6) NOT NULL,)

    p_name VARCHAR2 (15) NOT NULL,

    p_desc VARCHAR2 (150) NOT NULL,

    p_budget NUMBER (8).

    CONSTRAINT project_proj PRIMARY KEY #pname_pk (proj #, p_name));

    CREATE TABLE WORK ORDERS

    (wo # NUMBER (6))

    proj # NUMBER (6).

    wo_desc VARCHAR2 (150).

    wo_assigned VARCHAR2 (30),

    wo_hours NUMBER (5),

    wo_start DATE,

    wo_due DATE,

    wo_complete char (1),

    CONSTRAINT workorders_wo #_pk KEY(wo#) primary SCHOOL.

    CONSTRAINT workorders_wo #_fk FOREIGN KEY (proj #)

    REFERENCES PROJECT (proj #).

    Workorders_wodesc_uk of CONSTRAINT UNIQUE (wo_desc).

    CONSTRAINT workorders_hours_ck CHECK (wo_hours > = 0).

    CONSTRAINT workorders_wocomplete_ck CHECK (wo_complete in ('Y', 'n')));

    Whenever you have an error message the best thing to do is post a copy of your session with your statement sqlplus output. Like this.

    I have no problem with your first statement regarding the syntax and semantics

    SQL> create table project
      2  (
      3  proj# number(6) not null,
      4  p_name varchar2(15)not null,
      5  p_desc varchar2(150)not null,
      6  p_budget number(8),
      7  constraint project_proj#pname_pk primary key (proj#, p_name)
      8  );
    
    Table created.
    

    Second table a problem that his tent to make reference to project.proj #. But the problem is that it doesn't have a primary or unique key defined in this topic.

    SQL> create table workorders
      2  (
      3  wo# number(6),
      4  proj# number(6),
      5  wo_desc varchar2(150),
      6  wo_assigned varchar2(30),
      7  wo_hours number(5),
      8  wo_start date,
      9  wo_due date,
     10  wo_complete char(1),
     11  constraint workorders_wo#_pk primary key(wo#),
     12  constraint workorders_wo#_fk foreign key (proj#)
     13  references project (proj#),
     14  constraint workorders_wodesc_uk unique (wo_desc),
     15  constraint workorders_hours_ck check (wo_hours >=0),
     16  constraint workorders_wocomplete_ck check (wo_complete in ('y' ,'n'))
     17  );
    references project (proj#),
                        *
    ERROR at line 13:
    ORA-02270: no matching unique or primary key for this column-list
    

    I defined a

    SQL> alter table project add constraint project_proj#_uk unique (proj#);
    
    Table altered.
    

    Now, the second table is also created correctly

    SQL> create table workorders
      2  (
      3  wo# number(6),
      4  proj# number(6),
      5  wo_desc varchar2(150),
      6  wo_assigned varchar2(30),
      7  wo_hours number(5),
      8  wo_start date,
      9  wo_due date,
     10  wo_complete char(1),
     11  constraint workorders_wo#_pk primary key(wo#),
     12  constraint workorders_wo#_fk foreign key (proj#)
     13  references project (proj#),
     14  constraint workorders_wodesc_uk unique (wo_desc),
     15  constraint workorders_hours_ck check (wo_hours >=0),
     16  constraint workorders_wocomplete_ck check (wo_complete in ('y' ,'n'))
     17  );
    
    Table created.
    
    SQL>
    

    My Version of DB's

    SQL> select * from v$version where rownum = 1;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    
    SQL>
    
  • Problem with the opening of intention with the type ' application/pdf' and no extension of file in Acrobat 16.0 for Android

    I'm having a problem with an Android app that opens pdf files through an intention with ' application/pdf ' as type a uri that does not include an extension (something like "file:///storage/emulated/0/Android/data/package.name/cache/Documents/Document20136000217 25840499999") the file picker opens properly, but if I choose Adobe Acrobat, Acrobat is activated but immediately closes with the message "No applications available on the device to open files of this type".

    If I select the Reader PDF Viewer to open intend the file opens correctly. I also tried adding '.pdf' name of the file and in this case the intention also works with Adobe Acrobat.

    Acrobat seems to ignore the mime type. Documentation to http://developer.android.com/intl/es/reference/android/content/Intent.html#getData () which seems to be a mistake - the mime type must take precedence over the content of the data.

    The application runs on a Nexus with Android Marshmallow 6.0.1 5.

    Hello Colin,

    We just released the last version (16.1) demand in the PlayStore where we tried to include a fix for the problem you are seeing. Upgrade you to the latest version and let us know if you are still having it ask.

    Thank you

    Adobe Acrobat team

Maybe you are looking for