Copying indicator causes force close during execution

I'm not sure if this action is frowned upon but when I need a new control or indicator I often copy and paste existing ones instead of dragging them from the pallete. Of course I rename the new ones. This has not presented a problem for me until this past weekend. I had made some minor changes to some code that included adding two additional charts. The new charts are identical to the existing ones except they get data from a different column of an array. After adding the charts the program would run for 2-3 minutes and force close Labview. After ~1 day of debugging I found that if I left the charts in question unwired the program ran fine. But wiring them up caused a crash.
I solved the problem by deleting the new charts and dragging new ones from the palette. Now the program does not crash.
Any comments? Is this a bug? Or bad programming on my part?
Thanks,
Dave

I have read about an occational curpted control leading to a crash with the fix being to delete and replace it.
The other factor that could come into play is the "default" data for the chart.
If you found this in a recnet version of LV and you have backups from before the change and can recreate the crash, then by all means pass it along to NI so they can witness all of the glory of LV crumbling themselves and get it fixed of course.
Speaking only for myself, I do not find your method of copying a control bad at all. It is less time consuming than create custom controls which is what is recomended if you are dropping the same type of control often.
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • SQL Server 2012 Developer Edition will not install. Setup files don't even get copied completely. Win 8.1. ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    SQL Server 2012 Developer Edition will not install.  Setup files don't even get copied completely.  Win 8.1.  ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    Hello,
    I am glad it worked.
    Thank you for visiting MSDN forums!
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Why is Creative Cloud sync causing photoshop touch on iPad to force close?

    Sometime on March 28, 2014, having the sync function on or attempting to sync files from your Photoshop touch app to the creative cloud causes force closing. Within 4 to 5 seconds of being in the organizer view the app simply shuts down. As long as you are off-line or you have the sync capability turned off the app works fine.
    Obviously this is a major problem because your creative cloud membership doesn't really do anything for you. Rebooting the iPad does not fix the sync/crashing issue. Downloading the Photoshop touch app on a different iPad results in the same problem.
    Is anyone at Adobe who is responsible for the functioning of the Photoshop touch app and the creative cloud aware of this issue? Before this began on the 28th of March, I had never encountered a problem like this. A solution to this problem would be greatly appreciated. Nothing that I have tried from my end changes the current problem. Please, please, help!

    I FIXED IT!!!
    So it seems that at least my issue may have been a RAM memory problem. And no amount of restarting was fixing it...
    Now, this may sound shady, yet it did it for me so I thought I'd share. There are a couple of free apps that "reallocates" the RAM in your iPad or iPhone. I tried one that didn't seem to fix the issue. Then I tried another and TA-DA! Not only PS Touch didn't crash, but it synced and remained stable. Beautifully!
    Below is the link for the free app I used. You can use this or do a search for a similar RAM allocator. Once the app is downloaded, get it to reallocate your device's RAM a couple of times, it's pretty self-explanatory. Then restart PS touch.
    https://itunes.apple.com/us/app/cm-security-ram-assist-quickly/id778352285?mt=8
    Good luck!

  • Downloading files from filesharing sites causes the Android market to force close.

    After the last big Android Market update, any time I download a file from a filesharing site like Rapidshare a prompt asks me to force close the Android Market. This continues throughout the download but stops once the file has been downloaded.

    yes i am having that problem too, but i do not know how to fix it either

  • VI Metric.Dat​aSize Property Error 1000 during execution

    OK, maybe this will be an easy one for someone.  Today I'm attempting to detect an apparent memory leak in a Windows executable on 8.6.1 that, despite my best efforts, is still causing the painfully ambiguous "Not enough memory to complete this operation" dialog to appear.
    This is within an executable, so I thought the best way to tackle this would be to read the "Metric.DataSize" property off of suspect VIs during execution.  I'm getting error 1000, which leads me to believe that I can't read the property while the VI in question is running.  Is there some way around this?  Is there an easier way that I've forgotten?
    I saw a rather old post of a similar nature relating to 7.1, but the recommendation was to use the memory monitor example.  I took a look at that example's code, but they're calling the same property without error handling.
    Thanks a lot,
    Jim

    Hello Marti,
    First of all, thanks for getting back to me.  I did manage to track down the memory leak -- more on that soon enough -- but here are some answers to your questions:
    First, I'd recommend trying to tackle this issue in the original VI.  When you run the VI, do you get the same error?
    If you're asking whether I see the error in the development environment, I haven't, unfortunately.  However, I haven't run the VI for any extended period of time, either.  Also, I don't know if I was clear on this: it's not really an error message in the traditional sense of a code and description.  It's just a plain dialog that appears to be thrown by the runtime engine.
     If not, can you monitor LabVIEW's usage in the Windows Task Manager, and see if it creeps up continuously?
     I hadn't resorted to trying that just yet because I was hoping there was an easier (and more specific) way.  The dialog I had seen was the plain one that the runtime engine seemed to have launched, so I figured it was a pretty safe bet that it was a memory leak.  I could confirm this with task manager, though, if it's helpful.
    If it does not, then you may not have a memory leak but be performing operations or copying large data arrays inadvertently. What is your VI doing?  Are you ensuring to close all references at the end of your code?
    In this case it's a "web viewer" application that receives data from a parent VI via a notifier and displays it for connected browsers.  I'm also scanning some status strings and parsing out relevant information.  I know it's within the web viewer VI because the parent VI hasn't changed and has run for weeks without any issue.  (I only recently added the web viewer)  I am downright paranoid about memory!   I close every reference every time and even use the "in place" structure every time I can.
    Does the VI run for a bit or error out with the memory issue immediately?
    It takes a while; usually an hour or two.
    Please investigate into the original VI so we can continue troubleshooting.  If this is isolated to the executable, it will be a little tougher to debug.  Additionally, if you don't have the original VI, you will need to get it either way so that we can investigate the source of this issue.
    Okay, as I said earlier, I think I've figured it out.  I have a VI that writes to a string indicator by reference.  I had a circular buffer for messages (it used the in place structure, too!) and I was updating the string indicator with the buffer contents.  I'm almost certain that the circular buffer works properly because I've used it before without any issue.  However, I think it had something to do with the manner in which I was updating that string by reference over and over again.  I know, it sounds crazy because I've updated indicators by reference continuously before and had never had an issue.  It's possible that I was also using my circular buffer in a different way than I was before.  I could explain what I did differently to fix the issue, but it would be a couple more paragraphs. (I will if you want!)  For the record, I was definitely closing the reference every time, too.  In any case, I think the issue is solved, but if you're interested in additional information I'll try my best.
    By the way, here's my circular buffer VI.
    Again, Marti, thanks very much for your assistance.
    Regards,
    Jim
    Attachments:
    Circular Buffer (Strings).vi ‏14 KB

  • How can I show and hide an image or a decoration on the front panel during execution of the vi?

    Hello,
    I've made a user interface with a little grafic description.
    That description should change depending on user actions, e.g. if the user switches a button, some lines should disappear and some other lines should appear.
    I thought some decorations could be shown and hidden via something like a property node, but that is not possible. Images can also not be hidden during execution of the program.
    Is there any posibility to change a grafic user interface?
    Johannes
    LV 7.1
    Greetings Johannes
    Using LabVIEW 7.1 and 2009 recently
    Attachments:
    LV_Grafic.JPG ‏21 KB

    Thanks to Tim for drawing what I suggested as option while I had some real work to do.
    There is a trick of overcoming the index problem that was presented/devloped in the forum in the last month's: 
    You can place the decoration inside a cluster, so you can use the lable of the cluster to adress the decoration you want. The data type of the cluster doesn't mather for this, so you will hide the control/indicator. And you colour the cluster transparent (hint: right click with the coloring tool and use space to toggle). 
    Felix 
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • ORA-04088: error during execution of trigger

    Error Description :
    We have more than 100 of records in a csv file which we are processing through a script. At the first execution let
    say it generates trigger exception for five records ... when I execute the script second time those five records
    are not throwing any exception but may be some other records. But consecutive trigger exception is not happening for any record . If a particular record is throwing exception at first attempt then in the second attempts it's not throwing the trigger exception.
    Input file
    PROPRTY_ID,NAME,OLD STREET,CITY,STATE,ZIP,NEW STREET,NEW CITY,NEW STATE,NEW ZIP
    88527091,SAM PAUL SUMMU ,1061 XYZ,CITY1,ST,95626,5512 XX YY ZZ,TOWN,PA,12345-9812
    Error :
    88527091,SAM PAUL SUMMU ,1061 XYZ,CITY1,ST,95626,5512 XX YY ZZ,TOWN,PA,12345-9812 - PROPERTY Update Error : ORA-00001: unique constraint (PROD.PK_AUDIT_LOG) violated
    ORA-06512: at "PROD.PROPERTY_AUD", line 159
    ORA-04088: error during execution of trigger 'PROD.PROPERTY_AUD'
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> desc property
    Name                                      Null?    Type
    PROPERTY_ID                               NOT NULL NUMBER(20)
    TYPE_CODE                                          VARCHAR2(10)
    TYPE_PREFIX                                        VARCHAR2(10)
    DWELLING_TYPE_CODE                        NOT NULL VARCHAR2(10)
    DWELLING_TYPE_PREFIX                      NOT NULL VARCHAR2(10)
    STREET_NUMBER                                      VARCHAR2(25)
    STREET_DIRECTION                                   CHAR(2)
    STREET_NAME                               NOT NULL VARCHAR2(45)
    UNIT_NUMBER                                        VARCHAR2(15)
    CITY_CODE                                          VARCHAR2(10)
    STATE                                     NOT NULL CHAR(2)
    ZIP_CODE                                           VARCHAR2(10)
    UNIT_TYPE                                          VARCHAR2(10)
    UNIT_PREFIX                                        VARCHAR2(10)
    COUNTY_CODE                                        VARCHAR2(10)
    COUNTRY_CODE                              NOT NULL VARCHAR2(10)
    SQUARE_FEET                                        NUMBER(6)
    NUMBER_MOTHER_LAW_UNITS                            NUMBER(6)
    YEAR_BUILT                                         DATE
    PROPERTY_VALUE                                     NUMBER(12)
    ZIP_PLUS_4                                         VARCHAR2(4)
    SFI_REQ_FLAG                                       CHAR(1)
    LAST_MODIFIED                             NOT NULL DATE
    LAST_MODIFIED_BY                                   VARCHAR2(31)
    STANDARDIZED_STATUS                                VARCHAR2(10)
    STANDARDIZED_DESC                                  VARCHAR2(200)
    SQL> desc audit_log
    Name                                      Null?    Type
    SEQ_NO                                    NOT NULL NUMBER(20)
    TABLE_NAME                                         VARCHAR2(31)
    USER_STAMP                                         VARCHAR2(31)
    TIME_STAMP                                         DATE
    TRAN_CODE                                          CHAR(2)
    RECORD1                                            VARCHAR2(2000)
    RECORD2                                            VARCHAR2(2000)
    FLAG_FLD                                           CHAR(1)
    SFI_FLAG_FLD                                       CHAR(1)
    ERROR_NUMBER                                       NUMBER
    Update Query which is getting executed :
    UPDATE PROPERTY
    SET DWELLING_TYPE_CODE = 'SFR',
    DWELLING_TYPE_PREFIX = 'DWELLING',
    STREET_NUMBER = NULL,
    STREET_DIRECTION = NULL,
    STREET_NAME = ln_new_street_name,       -- <From input file>
    UNIT_NUMBER = NULL,
    CITY_CODE = ln_city_code,               -- <From other Table>
    STATE = ln_new_state,                   -- <From input file>
    ZIP_CODE = ln_new_zip_code,
    UNIT_TYPE = NULL,
    UNIT_PREFIX = NULL,
    COUNTY_CODE = ln_county_code,           -- <From Other table>
    COUNTRY_CODE = 1,
    ZIP_PLUS_4 = ln_zip_plus_4            -- <From Input file>
    WHERE PROPERTY_ID = ln_property_id;   -- <From Other table>
    *NOTE :* Property.LAST_MODIFIED field is auto populate through other trigger. It does not causing any problem.
    This might be helpful :
    SQL> select OWNER, CONSTRAINT_NAME, TABLE_NAME,COLUMN_NAME from dba_cons_columns where CONSTRAINT_NAME='PK_AUDIT_LOG';
    OWNER                          CONSTRAINT_NAME                TABLE_NAME  COLUMN_NAME
    PROD                           PK_AUDIT_LOG                   AUDIT_LOG          SEQ_NO
    PROD_ARCH                      PK_AUDIT_LOG                   AUDIT_LOG          SEQ_NO
    SQL> select SEQ_NO, trim(RECORD1), trim(RECORD2),TIME_STAMP
    from audit_log where RECORD1 like '%BUTTE%' order by  TIME_STAMP;
    SEQ_NO
    1675677212
    TRIM(RECORD1)
    00000000000031814095...SFR       .DWELLING  ...5512 BUTTE VIEW CT                           ..15532
        .CA.95765     ...1377      .1         .....5000..20100922.SUSMSAHA                       ..
    TRIM(RECORD2)
    00000000000031814095...SFR       .DWELLING  ...5512 BUTTE VIEW CT                           ..15532
        .CA.95765     ...1377      .1         .....5000..20100922.SUSMSAHA                       ..
    TIME_STAMP
    22-sep-2010
    Trigger Body which is fired and throwing the exception :
    create or replace trigger PROPERTY_AUD
    before insert or update on PROPERTY
    for each row
    declare
    rec1            varchar2(2000);
    rec2            varchar2(2000);
    tcode           char(1);
    ln_seq_id       NUMBER:=Null;
    ls_sql  VARCHAR2(2000):=Null;
    begin
    select temp_audit_seq.nextval into ln_seq_id from dual;
    rec1 := null;
    rec2 := null;
         if user = 'NONREP_USER' then
            return;
         end if;
         if (dbms_reputil.from_remote = FALSE) then
              :NEW.last_modified := sysdate;
              if (user = 'SALESFORCE_SYNC') then
                      :new.last_modified_by := NVL(:new.last_modified_by,USER);
              else
                   :new.last_modified_by := user;
              end if;
         end if;
    if inserting then
    rec1 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'I';
    elsif deleting then
    rec1 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'D';
    else
    rec1 :=
    LPAD(:old.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:old.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:old.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:old.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:old.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:old.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.STATE, 2, ' ' ) || '.' ||
    RPAD(:old.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:old.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:old.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:old.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:old.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:old.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:old.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:old.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:old.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:old.STANDARDIZED_DESC, 200, ' ' );
    rec2 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'U';
    end if;
    ls_sql :='
    INSERT INTO AUDIT_LOG
    ( seq_no,
    table_name,
    user_stamp,
    time_stamp,
    tran_code,
    record1,
    record2)
    VALUES
    ( :id,
    :s_table_name,
    :s_user_name,
    :d_sysdate,
    :s_tcode,
    :s_rec1,
    :s_rec2
    EXECUTE IMMEDIATE ls_sql
    USING ln_seq_id,
    'PROPERTY',
    user,
    sysdate,
    tcode,
    rec1,
    rec2;
    end;
    Your suggestion is highly appreciated ..
    Edited by: Bipul on Sep 23, 2010 12:40 AM

    TEMP_AUDIT_SEQ generates number with the increment of +1
    Although there seems other sequence populating the AUDIT_LOG table through a different sequence with the increment of +10. So till now there are already 1179 different numbers residing in audit_log.seq_no and yet to be generated by the TEMP_AUDIT_SEQ sequence. I will look into more details.
    SQL> select max(seq_no) from audit_log;
    MAX(SEQ_NO)
    1675689121
    SQL> select TEMP_AUDIT_SEQ.nextval from dual;
       NEXTVAL
    1675677285
    SQL> select count(*) From audit_log where seq_no>1675677285;
      COUNT(*)
          1179
    SQL> select count(*) from audit_log where seq_no>1675677283 and mod(seq_no,2)=1;
      COUNT(*)
          1179
    SQL> select seq_no from audit_log where seq_no>1675677283 and mod(seq_no,2)=1 and rownum<12;
        SEQ_NO
    1675677291
    1675677301
    1675677311
    1675677321
    1675677331
    1675677341
    1675677351
    1675677361
    1675677371
    1675677381
    1675677391
    11 rows selected.
    Thank you Lee and  Herald ten Dam   ...

  • After ICS update, camera forces close

    After the latest ICS update, (which I love the look of it) but I've been having a couple of frustrating issues. My camera on my Motorola Razr forces close. It says it had an unexpected error and needs to close. When you finally get it to work, when you take a picture, it freezes and the image will not open. Some of my pictures wont load now, even ones that I just downloaded.  Also some of my music wont play, the pictures are no longer accurate, and it sometimes forces close as well. Also the battery life sucks now. Before I just had to charge it in the afternoon before I leave the office and it would then last until early in the morning, but now I take it off the charger when I leave work and with very little use, a couple of hours later and its almost completely dead. I never had an issue with it just shutting off either and now it will just randomly freeze and shut off. I hope there is going to be another update to correct these issues!

        Sorockerchic, I’m glad to hear you are liking the look of the ICS update. Now let’s get this issue with the camera resolved so you can get back to taking your pictures.
    You mentioned that the issue with the camera, battery life, and freezing started after the ICS update. You may have some apps that are not compatible with the update and causing these issues. I recommend you perform a hard reset http://bit.ly/tQ0nkT to help resolve these issues. This is recommended especially after such a big software update.
    Please post back if you continue to experience any of these issues after performing the hard reset. I’ll be more than happy to further troubleshoot.
    John B
    Follow us on Twitter @VZWSupport

  • Trigger compiles but errors out during execution

    You guys wouldn't like this. Its about a trigger !
    Below is a trigger i've found in OTN. I've a similair requirement. The below trigger will compile . But, during execution i get
    ORA-00936: missing expression during executionI have this feeling that the last line in the INSERT statment is causing the issue.
    create or replace trigger trg_test
    before insert or update on central_dtls.emp_config
    for each row
    declare
    v_schema varchar2(100);
    v_sql_stat varchar2(32767);
    begin
    select schema_name into v_schema from central_dtls.master_config where company_id= :new.id;
                                  v_sql := 'insert into ' ||v_schema||'..emp_config_local
                                  company_id,
                                  values
                                   ||:new.col1||', '
                                   ||:new.col2||', '
                                   ||:new.lastcol||  ')';    ----- Potential issue in this line
    exception
    when others then ......;
    end;
    /I've tried the below things.
    ||:new.lastcol  ');';   --- Trigger Will not compile
    ||:new.lastcol||  ')';    --- Trigger Will compile , but, will get "ORA-00936: missing expression" during execution
    ||:new.lastcol|| ');';   --- Trigger Will compile , but, will get "ORA-00936: missing expression" during execution

    You have:
                                  v_sql := 'insert into ' ||v_schema||'..emp_config_local Try with:
                                  v_sql := 'insert into ' ||v_schema||'.emp_config_local (only one dot between schema and table name :) )

  • RH9 Snippets not saving, RH not closing have to force close

    I'm a new RH user so please forgive me if this is answered somewhere else (I did search for awhile first).
    Windows XP Pro 2002 Service Pack 3
    RoboHelp 9 HTML 9.0.1.232 (recent upgrade from RH7) Project has about a thousand topics
    Using Visual SourceSafe (VSS) for version control
    There were snippets in the project before I started and before this upgrade - those all are usable and stay where you put them through saving and closing RH. Other edits to topics seem to be surviving the save process also. Snippets I create (have not created any before this) are not surviving when I save the project, but they are creating .hts files on the hard drive (but not showing up in VSS).  Also, when I create multipe new snippets, the first one and only the first one I create shows up in the snippet pod (before closing RH), and when I save/close/reopen RH, none show in the pod.
    Note: had the same as problem/related to this forum question.
    Also, now when I try to close RH it just closes the active tabs but does not close the project and I have to force close RH in the Windows Task Manager.
    Summary:
    Edits to topics that do not      involve snippets are being saved
    Edits that involve snippets      created before yesterday are saved
    Snippets created by me:
    All are creating files       on my hard drive
    None are going into       Visual SourceSafe
    Only the first shows       up in the Snippet pod before RH closes
    None show up in the       Snippet pod when RH is reopened later
    So there we are.  Any ideas or suggestions?

    OK, my colleague (who is a RH certified expert) figure out what was going on.  Basically, in addition to our two hard drive copies of the project being out of sync (which we fixed by deleting some, taking some out of VSS that didn't belong, and recopying everything onto my hard drive) there is an underlying snippet problem which my colleague diagnosed as follows (her description):
    The project was worked on in RH7 for a couple of years. In early June 2011, RH9 was installed. The project was opened in RH9, and the appropriate ‘do you want to convert the project’ message displayed. I proceeded to do the conversion.
    Everything seemed to convert rather well except for one thing – the snippets. If you opened the Properties window for a snippet, you could see the description; however, the description would not display in the Pod in the designated “Description” column.
    As a test, I created a new snippet in RH9, which generated the following code:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="topic-comment" content="here's the description" />
    <title>New Snippet</title>
    <meta name="generator" content="Adobe RoboHelp 9" />
    </head>
    <body>
    <p>This is placeholder text for your snippet. To add content to the body,
    replace this text. </p>
    <p>&#160;</p>
    <p>For information about applying snippets to topics, press <b>F1</b>.</p>
    </body>
    </html>
    However, the code for a converted snippet looks like this:
    <!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
    <html><head>
    <meta http-equiv=content-type content="text/html; charset=utf-8">
    <meta name=generator content="Adobe RoboHelp - www.adobe.com">
    <meta name=generator-major-version content=0.1>
    <meta name=generator-minor-version content=1>
    <meta name=filetype content=RoboHelp>
    <meta name=filetype-version content=1>
    <meta name=page-count content=1>
    <meta name=layout-height content=487>
    <meta name=layout-width content=424>
    <title>Use this snippet as the explanation for the Credit Type field on a form.</title>
    </head>
    <body>
    <p>Unit of credit for the course. Together with the Credit Value, it defines
    the possible credit hours earned for the course.</p>
    </body>
    </html>
    Notice how the text that is in the title tag is actually the DESCRIPTION for the snippet. Also, there is no meta tag for the real description in the converted code. The real title for this snippet is Credit Type, but for some reason, that does not display in the converted snippet code. The name only displays correctly in the Properties window, like this:
    Strange how the name (or “Title” as the code seems to indicate it should be) correctly displays in the Properties window, but that name is nowhere in the actual code in the HTS file.
    So it seems to me that there is a disconnect between what’s in the code, and what’s displaying in RH, and I’m not sure how or why that happened. I simply allowed RH9 to convert my RH7 project, and this Snippet problem was the only resulting problem that I’ve found.
    Is there any way to get this properly fixed by Adobe? Even when we enter the appropriate descriptions ourselves, they STILL don’t display properly in the Snippets pod. Sometimes some of them display, sometimes all of them don’t display, and sometimes if you perform an action (like creating a new snippet), then that action will cause some or all of the descriptions to display.
    Here’s an example --
    1st screenshot below – the Snippets pod as it typically displays for us in RH9. Absolutely no descriptions displaying.
    2nd screenshot below – I created a new snippet. The description for the new snippet displays PLUS the two descriptions for recently created snippets display! You can only see one of them in the screenshot (“Curriculum Considered Complete Situations”), but further down the list, the description for a snippet named “Requiring Search Criteria” also displays after creating the new snippet (Note: Both of these snippets were created in RH9, which raises the questions: Why didn’t the descriptions already display *before* I created a new snippet? Why did the action of creating a new snippet *cause* the two snippet descriptions to suddenly display?)
    Another Note: After my co-worker had manually gone through all of the snippets and manually added descriptions (and updated the “Title” tags to reflect the actual title of each snippet), this caused some issues – erratic Snippet pod behavior, and he had to keep using the Task Manager to close RH (normal close methods wouldn’t work). So since RH9 started acting funny and wouldn’t close for him, we reverted back to using the HTS files and the rhsnippet.apj snippet file that RH9 originally converted for us, and those original files are what we are continuing to use, but we would like to have a solution for the problem. Why didn’t RH9 properly convert the HTS files? Or at least, to us, based on the code that’s actually in the files, they don’t appear to be properly converted.

  • Firefox crashes and can't scroll anymore unless I force close the browser.

    I'm on a Mac OSX and after I start firefox, I go to Youtube, and then the video starts lagging. After that, I can't scroll up or down. In that case, I have to force close firefox and it works again. A few hours later, the same thing happens. When I re-open, it shows the, "Well this is embarrasing screen."

    it may be a malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!
    In order to uninstall a possibly unwanted extension, please do the following:
    #From the Firefox window click the Firefox button at the top left and select ''Add-ons'', or, if the Firefox button is not shown, click the ''Tools'' menu and click ''Add-ons''.
    #Once the Add-on Manager has opened in a new tab, click the ''Extensions'' button on the left side of the window.
    #You should now see a list of your installed extensions on the right side together with buttons on the right side of each extension.
    #To remove an extension from Firefox, simply click the ''Remove'' button. You should see a message that informs you about the successful removal of the add-on.
    #Note that some add-ons require a Firefox restart to be removed completely. To perform a Firefox restart after the add-on removal, click the ''Restart now'' link in the message.
    You can find further information about uninstalling extensions in the following articles:
    [[Disable or remove Add-ons]]
    [[Remove a toolbar that has taken over your Firefox search or home page]]

  • Force close Mystery App every Power On

    HI all,
    I have 822_SG build as i bought in Singapore.  Since I did the 1st and only system update to 822, I have a recurring "force close" issue.  It is driving me crazy, because I can't figure out what app is causing the issue.  This is the error message:
    "The application FaceService (process com.arcsoft.faceservice) has stopped unexpectedly.  Please try again"  It happens once, I click "force close" at bottom of same error bar.  It goes away, then comes back one more time.  Same force close.  Then it's gone till I power on again.
    Firstly, is it an "app" issue, or something else?
    Secondly, what to do?
    I had to delete and re-install many apps after the 822 build so I'm kind of tired of guessing.
    Thanks.
    JW
    Solved!
    Go to Solution.

    Jward, how did you solve your problem? Did you uninstall FaceService? If so, how? Or did you uninstall ArcSync and that removed FaceService?
    ¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸ Lenovo ThinkPad Tablet 1838CTO (not rooted, from Lenovo Direct Japan); WiFi-only model (w/ Galaxy Note LTE as tether); 64GB system memory with Transcend 64GB Class 10 SDXC card; ThinkPadTablet_A310_02_0039_0090_JP rom; GPS works (slowly) after 2012/04 return (power button had broke); Camera will not focus. (note: I have not re-tested these since the ICS update 2012/06/21) ¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸

  • After Update: Dropping Calls, Phone freezes, and more Force Close messages

    Hey everyone,
    Just wondering if there is anyone else who has noticed after the update that there has been more dropped calls? Do you chalk it up to the phone trying to switch between 3g and 4g? I normally have my phone on the wifi setting (free wifi on my college campus---saves using my data). Also I've noticed recently that the phone will tend to freeze up once in a while to the point where I have to shut the phone off and reboot.  Also I have been getting more error messages using most (if not all) my applications [Pandora, facebook, games] with the only option to force close the program.
    Is there any solutions to these annoying little problems? Trying to have a conversation on the phone is virtually impossible without the connection being dropped (have a record of 6 dropped connections in one conversation).
    Any help would be appreciated!

    Hi SV23:
    You've listed a number of issues that you are experiencing after the software update, and I would like to help you resolve them.   If the force closes seem random, it's likely due to some corruption of the software post-update. Most people can resolve software-related issues via a factory reset.  This rules out all of the applications that could possibly cause conflictions with the device.  If the phone force closes after a master reset and there are no apps on it, we may need to look into replacement options for the device. You can contact the warranty center directly at 866-406-5154. 
    Please list any troubleshooting steps that you've completed, and post any updates.
    Thanks,

  • A Windows Workflow Foundation workflow failed during execution

    Needed to know if there was some way to identify what the workflow was that is causing this error? I see this: "Workflow Identifier: 0cb64340-3a44-009e-67af-70963215b839" just not sure what SMLet I can use to see what this corresponds too.
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          1/2/2013 1:56:56 PM
    Event ID:      33880
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      scsm
    Description:
    A Windows Workflow Foundation workflow failed during execution.
    Workflow Type: Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow
    Workflow Identifier: 0cb64340-3a44-009e-67af-70963215b839
    Exception Type: Microsoft.EnterpriseManagement.Common.ObjectNotFoundException
    Exception Message: An object of class ManagementPackRelationship with ID 6ec982d4-207f-da19-3bc9-e6d2ff7b067e was not found.
    Exception Stack:    at Microsoft.EnterpriseManagement.Configuration.TypeSpaceCache.Get[T](Guid id)
       at Microsoft.EnterpriseManagement.EntityTypeManagement.GetRelationshipClass(Guid id)
       at Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow.prepareNotificationActivity_ExecuteCode(Object sender, EventArgs e)
       at System.Workflow.ComponentModel.Activity.RaiseEvent(DependencyProperty dependencyEvent, Object sender, EventArgs e)
       at System.Workflow.Activities.CodeActivity.Execute(ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(T activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(Activity activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutorOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)
       at System.Workflow.Runtime.Scheduler.Run()
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">33880</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-02T19:56:56.000000000Z" />
        <EventRecordID>1098867</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>scsm</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow</Data>
        <Data>0cb64340-3a44-009e-67af-70963215b839</Data>
        <Data>Microsoft.EnterpriseManagement.Common.ObjectNotFoundException</Data>
        <Data>An object of class ManagementPackRelationship with ID 6ec982d4-207f-da19-3bc9-e6d2ff7b067e was not found.</Data>
        <Data>   at Microsoft.EnterpriseManagement.Configuration.TypeSpaceCache.Get[T](Guid id)
       at Microsoft.EnterpriseManagement.EntityTypeManagement.GetRelationshipClass(Guid id)
       at Microsoft.EnterpriseManagement.WorkflowFoundation.ConfigurationWorkflow.prepareNotificationActivity_ExecuteCode(Object sender, EventArgs e)
       at System.Workflow.ComponentModel.Activity.RaiseEvent(DependencyProperty dependencyEvent, Object sender, EventArgs e)
       at System.Workflow.Activities.CodeActivity.Execute(ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(T activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(Activity activity, ActivityExecutionContext executionContext)
       at System.Workflow.ComponentModel.ActivityExecutorOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)
       at System.Workflow.Runtime.Scheduler.Run()</Data>
      </EventData>
    </Event>
    Help

    Everytime I run it I get nothing.
    Tried using the workflow identifier: 0cb64340-3a44-009e-67af-70963215b839 and tried this number as well: 6ec982d4-207f-da19-3bc9-e6d2ff7b067e
    Both just take me to the prompt with no info.
    EVENT ID 33880 Health Service Modules is the event title.
    Help

  • Mass Close PR and Mass Force close PO (delivery completed)urgent

    Hi All,
    I need your  advice in detail regarding in how to do the mass close PR and Mass force close PO. In order to bring back all unused value to available budget in Project (WBS).
    Many thanks in advance.
    Best Regards,
    Nies.

    Hi,
    I have not done for PR, so i m not sure abt it, but for POs u can do as i told u.
    U need to go to massd transaction.
    Dere choose purchase orders, then in selection criterial chose purchase order no. and u can choose item no also if u want to close any selective items in a PO, or if u want to close complete PO as a whole then just choose purchase order no and against it give ur PO no.s which u wanna close.
    Below u choose deleivery completion indicator, then click on select and choose change with display.
    U'll get all ur POs with their items on the right side, now against delivery completion indicator set fixed value and give 'X' dere. Then apply to all the items and save.
    Reward if helpful
    Noopur

Maybe you are looking for