Update a "point" table with the poly_id the point belongs to

Sorry, I'm re-posting this message as I initially included in my previous question!
Hi,
Dan, thanks for your help on "improving performance in loading spatial data" question.
Yes, after droping the spatial index it worked much quicker!
Now I have another problem with the table I've managed to populate at a decent speed (with your help!)
There is a column, poly_id which is the polygon the point belongs to. There is another table that stores all the polygons.
I tried the following PL/SQL code but again, it takes ages to run, regardless of having the table indexed or not.
So the tables are
Measurements - unit_id, start_time,relative_time,meas_point,meas_type,dv_id,poly_id
and
areas - poly_id,poly_name,polygon,layer
And the code is
PROCEDURE upd_meas
IS
CURSOR pos_cur IS
SELECT * FROM measurements;
BEGIN
FOR pos_rec IN pos_cur LOOP
UPDATE measurements SET poly_id = (select poly_id from areas a WHERE layer='MAR'
and mdsys.sdo_filter(a.polygon,pos_rec.meas_point,'querytype=WINDOW' ) = 'TRUE'
and rownum =1)
WHERE relative_time=pos_rec.relative_time
AND meas_type=pos_rec.meas_type
AND unit_id=pos_rec.unit_id;
COMMIT;
END LOOP;
END;
Any hint on how to improve the performance? I've also tried sdo_relate without any difference in the execution time.
With thanks in advance,
Silvia

Hi Silvia,
Is there an index on the layer column in the areas table? If so, you may want to use the noindex hint
so it doesn't get used instead of the spatial index. For more info on hints check the Oracle doc for
Designing an Tuning for Performance.
I would use SQL*PLUS to prototype getting a fast response from a filter or relate call (only - not in the context
of the update statement), then use that syntax in spatial portion of the pl/sql update statement.
The spatial portion of the query to test might look something like this:
select /*+NO_INDEX(a layer_idx_name) */  poly_id from areas a WHERE layer='MAR'
and mdsys.sdo_filter(a.polygon,pos_rec.meas_point,'querytype=WINDOW' ) = 'TRUE'
and rownum =1;
or
select /*+ index (a polygon_spatial_idx_name) */...
Hope this helps,
Dan

Similar Messages

  • Trigger to update field on a table with the sum of fields on another table

    My experience creating triggers and pl/sql in general can best be described in oracle terms as null. I've been practicing by creating tables and applications on my personal home server to help me with some of my work related tasks. Right now I'm trying to create a trigger that will, after insert, update, delete on the assignment_time_track table update the time_spent field on the assignments table with the sum of the time_spent fields on the assignment_time_track table. Hopefully that run on sentence there is clear to people other than myself. I've attempted to script this on my own using the trigger creation tool for Oracle Database Express Edition but I get the following error:
    Trigger create was not successful for the following reason:
    ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    Here is my attempt at creating the trigger on my own.
    create or replace trigger "ASSIGNMENT_TIME_TRACK_T1"
    AFTER
    insert or update or delete on "ASSIGNMENT_TIME_TRACK"
    for each row
    begin
    update assignments
    set time_spent = (select sum(time_spent)
    from assignment_time_track
    where assignment_time_track.name = assignments.name);
    end;
    If what I've posted isn't clear or more detail is needed, let me know and I'll respond with a complete description of both tables and my goals for each table. Thanks in advance for any help. I will also gladly accept links to tutorials or lessons that explain how to do this sort of thing.
    Edited by: bobonthenet on Mar 9, 2009 2:01 PM

    Hi,
    If the assignments table has only one row per assignment, why is the primary key the combination of name and time_spent? If you have two two assignments called "Lab Report", isn't it possible that you would spend the same amount of time on each of them? I suggest using a sequence to assign an arbitrary id number to each assignment, and use that as the primary key.
    What does each row in assuignment_time_track represent? It sounds like it is a chunk of time spent on one assignment (that is, you want to know that you spent 90 minutes on Tudesday morning working on some assignment, and that you spent another 30 minutes on Tuesday afternoon working on the same assignment). If so, then there should be a foreign key constraint in assignment_time_track referencing the primary key of assignemnt, and not the other way around.
    Alex is right; you can get the total time spent on each project in a query or view; there is no need to replicate that data.
    If you're new to Oracle and SQL, you should invest your time in getting more experience with the basics: everyday things like queries (using joins and GROUP BY) and views, and not spend much time on things that aren't used that much, like triggers.
    If you really did have to copy the data, then you could have a trigger on assignemnt_time_track that kept the total in assignment up to date, like this:
    UPDATE  assignment
    SET     total_time_spent = total_time_spent
                    + NVL (:NEW.time_spent, 0)
                             - NVL (:OLD.time_spent, 0);I suggest you name the column in assignment something different than the column in assignment_time_track, to reduce the risk of confusion. Also, since they represent different things, the same name can't be the most descripttive for each of them.
    In case you're wondering about the use of NVL, above: It allows the same statement to take care of the situation when you INSERT, UPDATE or DELETE a row in assignment_time_track. That is, if you UPDATE a row in assignment_time_track, and change the time_spent from 60 to 90, then you want to add the new time (90) and subtract the old time (60) fro the total_time_spent in assignment: that is, total_time_spent would increase by 30. If you INSERT a new row into assignment_time_track with time_spent=30, you just need to add the new time_spent (30): there is nothing to subtract. But rather than write an IF statement and a second UPDATE for that situation, you can just rely on hte fact that all :OLD values are NULL iwhen INSERTing, and treat that NULL as a 0. Likewise, when DELETing, all :NEW values are NULL..

  • How can I update attribute1 of CSI_ITEM_INSTANCES with the operating org

    Hi
    I am working on Install base (Customer services) module of Oracle E-Business Suite.
    I want to update the CSI_ITEM_INSTANCES.attribute1 with the operating org from a profile option.
    Could anyone help me to figure out how can i do this?
    Is there is any API which can be used to update this table.
    Actually to update this column i wrote a trigger on this table which does the updation of CSI_ITEM_INSTANCE.ATTRIBUTE1 with the operating org from the profile option set at responsibility level but i got the wrong value for this profile option. Because when the data is inserted into this table the user_id, resp_id and resp_appl_id has been changed to sysadmin so i got the value for this user not the user who logged in.
    If anybody has worked on this or done something like this please guide me
    Thanks

    Hi Naga,
    Thanks for the Reply...
    Actually I want to update the org_id in the CSI_ITEM_INSTANCE.attribute1 at the time of creation as well as any update.
    I have looked into the api csi_item_instances_pub. it has two procedures 1) create_instance and 2) update _instance
    I am not be able to understand where can I call these api's to update and creation for an instance and it has several parameters like record type and table type. So I am in a confusion state about the parameters list also. Could you help me to figure out this please?
    And I want to restrict the Installed Base View Page by the value of attribute1(org_id) in CSI_ITEM_INSTANCES. In a thread I saw that this could not be done because this is a JTT/JTF page. Is there any way to customize the Install base view page by org_id?
    Please suggest.
    Thanks
    Munish Mittal

  • HT4623 I updated my ipad 3 with the ios7 update. Now the screen shows the itunes icon and a pic of the plug in (as to plug into itunes)  I can't get it to go away or to access my ipad.  Any hints?

    I updated my ipad 3 with the ios7 update.  Now the screen shows the itunes icon and a pic of the plug in (as to plug into itunes)  When I do this it wants to restore my ipad, which I have already done.  I can't get out of this screen.  Any hints on what to do next?

    Something went wrong with your update; you are in Recovery Mode.
    Follow step 1 to 6 closely to recover your iPad.
    http://support.apple.com/kb/HT1808
    Note: You may have to repeat the above a few times

  • How can I build a table with the time values of a timer from a while loop

    Hi:
    I have a question concerning building a table:
    Every 100ms I read a value from a sensor (while loop with a timer). I would like to build a table with the actual time and the concerning value. For example:
    0msec         1V
    100msec     2V
    200msec     3V
    300msec     4V
    etc.
    If I use the Express VI for building a table, I always get the date and time, but I don't need the date and the time is in the following format: HH:MMS, which is nonsensical for me as I can't differentiate within msec. Can I change the format anywhere?
    Can I also save the table to a file or even to an Excelsheet? How can I do that?
    Thanks for your help!

    Hi Craig:
    thank you very much. To solve the mystery : ) :
    I want to drive a stepper motor with a specific frequency. To get the current degree value of the motor I would like to measure the current time (from the beginning of the move on). (With a formula I get the degree value out of the time)
    Concurrently I would like to get data from a torque sensor and from a pressure sensor. That's why I asked you about the time and the table. The measurement should start with the movement of the motor. How can I do that? Right now I have different block diagrams (different while loops) (see attachment) and I would like to put them in one.
    I haven't done the block diagram for the pressure sensor yet, so there is only the one for the torque sensor and the one for the motor.
    I also would like to set a mark in the table when the voltage value of an analog input gets under a specific threshold value. Is that possible?
    I'm sorry, I'm a novice in LabVIEW. But maybe you can help me.
    Thank you very much!
    Steffi
    Attachments:
    motor.vi ‏238 KB
    sensor.vi ‏59 KB

  • Blue screen of death? I just updated my MacBook Air with the latest OX (25 Jun 11). When I restart - I get the Apple logo and then a blue screen and nothing else. Help!!!

    Blue screen of death? I just updated my MacBook Air with the latest OX (25 Jun 11). When I restart - I get the Apple logo and then a blue screen and nothing else. Help!!!

    Insert the install disk and press c on startup. Select your langauge then, if there's a menubar click utilities then click Disk Utility. If you didn't see the menubar continue with the installer until you see it.
    Once in disk utitly select the drive and repair permissions.
    After the repair is done, quit the utiltiy.
    You can try to reboot and see if it works if you reboot, but if it doesn't repeat the same as before again.
    Now you can continue with the installer and install the os.
    Quit

  • HT201210 I tried to update my iPad 2 with the iOS 6.0.  Now I am stuck in restore mode and keep getting an unkown error 3014 and sometimes -1.  What in the world can I do?

    I tried to update my iPad 2 with the iOS 6.0.  Now I am stuck in restore mode.  I get "unknown" errors 3014 and sometimes -1.  Any ideas?

    Try a hard reset: hold the power and home buttons simultaneously until the Apple logo appears.

  • I recently updated my iPhone 5 with the latest update. when it restored, it deleted about 90 photos. how do i get them back if the phone wasn't backed up

    please please help. today i tried to update my iphone 5 with the most recent update and it crashed. i had to restore it but i noticed that about 90 of my photos were deleted. i didnt back the phone up but i need to recover those photos. how can i do it?

    If it's in recovery mode, the data is already gone. Why did you never back up your important data?

  • I ran an iTunes update.  It failed with the message  System Error.  The program can't start because MSVCR80.DLL is missing from your computer.  Try reinstalling the program to fix this problem.   I tried reinstalling but get the same message.

    I ran an iTunes update.  It failed with the message  "System Error.  The program can't start because MSVCR80.DLL is missing from your computer.  Try reinstalling the program to fix this problem."   I tried reinstalling but get the same message.  I looked in my Recycle Bin for that file name but there is none there.  Is this a new file that iTunes wants?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99683)

  • How to encrypt column of some table with the single method  on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

  • How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single
    method ?How to encrypt column of some table with the single
    method ?
    using dbms_crypto package
    Assumption: TE is a user in oracle 10g
    we have a table need encrypt a column, this column SYSDBA can not look at, it's credit card number.
    tha table is
    SQL> desc TE.temp_sales
    Name Null? Type
    CUST_CREDIT_ID NOT NULL NUMBER
    CARD_TYPE VARCHAR2(10)
    CARD_NUMBER NUMBER
    EXPIRY_DATE DATE
    CUST_ID NUMBER
    1. grant execute on dbms_crypto to te;
    2. Create a table with a encrypted columns
    SQL> CREATE TABLE te.customer_credit_info(
    2 cust_credit_id number
    3      CONSTRAINT pk_te_cust_cred PRIMARY KEY
    4      USING INDEX TABLESPACE indx
    5      enable validate,
    6 card_type varchar2(10)
    7      constraint te_cust_cred_type_chk check ( upper(card_type) in ('DINERS','AMEX','VISA','MC') ),
    8 card_number blob,
    9 expiry_date date,
    10 cust_id number
    11      constraint fk_te_cust_credit_to_cust references te.customer(cust_id) deferrable
    12 )
    13 storage (initial 50k next 50k pctincrease 0 minextents 1 maxextents 50)
    14 tablespace userdata_Lm;
    Table created.
    SQL> CREATE SEQUENCE te.customers_cred_info_id
    2 START WITH 1
    3 INCREMENT BY 1
    4 NOCACHE
    5 NOCYCLE;
    Sequence created.
    Note: Credit card number is blob data type. It will be encrypted.
    3. Loading data encrypt the credit card number
    truncate table TE.customer_credit_info;
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    BEGIN
    for cred_record in (select upper(CREDIT_CARD) as CREDIT_CARD,
    CREDIT_CARD_EXP_DATE,
    to_char(CREDIT_CARD_NUMBER) as CREDIT_CARD_NUMBER,
    CUST_ID
    from TE.temp_sales) loop
    dbms_output.put_line('type:' || cred_record.credit_card || 'exp_date:' || cred_record.CREDIT_CARD_EXP_DATE);
    dbms_output.put_line('number:' || cred_record.CREDIT_CARD_NUMBER);
    input_string := cred_record.CREDIT_CARD_NUMBER;
    raw_input := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    dbms_output.put_line('> Input String: ' || CONVERT(UTL_RAW.CAST_TO_VARCHAR2(raw_input),'US7ASCII','AL32UTF8'));
    encrypted_raw := dbms_crypto.Encrypt(
    src => raw_input,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    encrypted_string := rawtohex(UTL_RAW.CAST_TO_RAW(encrypted_raw)) ;
    dbms_output.put_line('> Encrypted hex value : ' || encrypted_string );
    insert into TE.customer_credit_info values
    (TE.customers_cred_info_id.nextval,
    cred_record.credit_card,
    encrypted_raw,
    cred_record.CREDIT_CARD_EXP_DATE,
    cred_record.CUST_ID);
    end loop;
    commit;
    end;
    4. Check credit card number script
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    decrypted_raw RAW(2048);
    decrypted_string VARCHAR2(2048);
    cursor cursor_cust_cred is select CUST_CREDIT_ID, CARD_TYPE, CARD_NUMBER, EXPIRY_DATE, CUST_ID
    from TE.customer_credit_info order by CUST_CREDIT_ID;
    v_id customer_credit_info.CUST_CREDIT_ID%type;
    v_type customer_credit_info.CARD_TYPE%type;
    v_EXPIRY_DATE customer_credit_info.EXPIRY_DATE%type;
    v_CUST_ID customer_credit_info.CUST_ID%type;
    BEGIN
    dbms_output.put_line('ID Type Number Expiry_date cust_id');
    dbms_output.put_line('-----------------------------------------------------');
    open cursor_cust_cred;
    loop
         fetch cursor_cust_cred into v_id, v_type, encrypted_raw, v_expiry_date, v_cust_id;
    exit when cursor_cust_cred%notfound;
    decrypted_raw := dbms_crypto.Decrypt(
    src => encrypted_raw,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    decrypted_string := CONVERT(UTL_RAW.CAST_TO_VARCHAR2(decrypted_raw),'US7ASCII','AL32UTF8');
    dbms_output.put_line(V_ID ||' ' ||
    V_TYPE ||' ' ||
    decrypted_string || ' ' ||
    v_EXPIRY_DATE || ' ' ||
    v_CUST_ID);
    end loop;
    close cursor_cust_cred;
    commit;
    end;
    /

  • To upload a data into SAP Table with the help of RFC function in BODS

    Hi,
    Please provide me step-by-step solution to upload data into any SAP table with the help of RFC function in Data Services.
    I have created RFC function that upload data into SAP table. RFC Function contains one table that has same structure as my database table.
    In the data services how can i filled the table of RFC function, i am using this function in query transform of data services but it gives me error.
    I am also follow link http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsDataServicesTipsand+Tricks
    but it did not help me.
    Thanks,
    Abhishek

    Hi Abhishek,
    Did you import the function module in the SAP datastore first? When you open the SAP datastore, the function should be listed in the 'functions' section. If not, import it. Make sure your function is remote executable.
    Once the function is there, you can use it in a transformation. In 'Schema Out' right-click on 'Query' (top level) and choose 'New Function Call'. You can then select a datastore and a function in the datastore. The wizard will show you which output parameters are available. I believe you have to add at least one and can select as many as you like.
    After confirming your selection the function and the output parameters appear in Schema Out. You can then right-click on the function and choose 'Modify function call'. A popup will appear where you can specify the input parameters.
    I hope this helps.
    Jan.

  • HT4623 how do i update my mac book with the latest version of itunes?

    Hi all, can anyone help me with updating my Mac Book with the latest itunes. I'm a bit old school and usually stick to same programs but now need to update?? Cheers!!

    Make a backup of your computer first before doing any updates.  In rare but unfortunate cases an update seems to result (from what the people posting here say) in libraries being deleted.  Then too, sometimes people update and discover they really don't like the new version.  Downgrading without a backup is difficult. In the long run you can't avoid going to a newer version but I, for example, have been running the same iTunes version for 7 years now so it is possible to hang on.
    You also don't provide details about your MacBook which includes many models.  If you are truly old school you could even be running a MacBook that can't  update to the newest, or at least may require other software or hardware upgrades.  Get more information about your computer. Go to the Apple in the upper left corner of any window, then  "About This Mac".  Write down what it says about "version"and report that here.  Now continue to "More Info..."  Copy and paste the information here, but omit the serial number and Hardware UUID (if present).

  • An update of iMovie failed with the message "an error has occurred." That message remains posted by iMovie on the Mac App Purchases page. iMovie is now unavailable. It will not start, update, or reinstall from purchases page. How reinitialize app?

    An update of iMovie failed with the message "an error has occurred." That message remains posted by iMovie on the Mac App Purchases page. iMovie is now unavailable. It will not start, update, or reinstall from purchases page. How do I reinitialize the app?

    Thank you again. Here's the console messages from trying to open iMovie and then opening the App Store. Clicking on the iMovie icon in App Store purchases and clicking on check for unfinished downloads:
    8/28/14 4:56:26.743 PM Dock[214]: LSOpenFromURLSpec(file:///Applications/iMovie.app/) failed with -10699
    8/28/14 4:56:47.878 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:56:47.879 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:57:50.201 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:57:50.201 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:35.745 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:35.745 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:35.824 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:35.824 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:35.847 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:35.847 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:36.276 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:36.276 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:39.448 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:39.448 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:39.449 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:39.449 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:55.996 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:55.996 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.021 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.022 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.051 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.052 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.342 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.342 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.411 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.411 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.425 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.425 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.508 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.508 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.518 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.519 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.696 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.696 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.808 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.808 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.826 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.827 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.838 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.839 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.843 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.843 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.857 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.857 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.893 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.894 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.907 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.907 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.923 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.924 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:56.969 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:56.970 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.039 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.039 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.045 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.045 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.145 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.145 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.231 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.231 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.249 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.249 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.293 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.293 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.350 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.350 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.352 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.353 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.400 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.400 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:57.402 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:57.402 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:59.814 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:59.814 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:58:59.932 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:58:59.932 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:00.697 PM acwebsecagent[127]: Connection : Failed to connect to 167.8.226.9:80. Code : 60
    8/28/14 4:59:00.698 PM acwebsecagent[127]: Connection : Caught exception. Code : 60
    8/28/14 4:59:00.698 PM acwebsecagent[127]: Connection : Failed to connect externally. Code : 60
    8/28/14 4:59:01.352 PM acwebsecagent[127]: Connection : Failed to connect to 167.8.226.9:80. Code : 60
    8/28/14 4:59:01.352 PM acwebsecagent[127]: Connection : Caught exception. Code : 60
    8/28/14 4:59:01.352 PM acwebsecagent[127]: Connection : Failed to connect externally. Code : 60
    8/28/14 4:59:01.402 PM acwebsecagent[127]: Connection : Failed to connect to 167.8.226.9:80. Code : 60
    8/28/14 4:59:01.402 PM acwebsecagent[127]: Connection : Caught exception. Code : 60
    8/28/14 4:59:01.402 PM acwebsecagent[127]: Connection : Failed to connect externally. Code : 60
    8/28/14 4:59:26.564 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:26.565 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:26.660 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:26.660 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:26.840 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:26.840 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:26.864 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:26.864 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:26.984 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:26.984 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.069 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.069 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.079 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.079 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.083 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.084 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.385 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.385 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.389 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.390 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.391 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.391 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.411 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.411 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.435 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.436 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.443 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.443 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:27.479 PM acwebsecagent[127]: Connection : Auth key is not provided or is invalid, applying connection failure policy. CMode : 2 TMode : 1
    8/28/14 4:59:27.479 PM acwebsecagent[127]: OnConnectionFailure : Fail Open - Reason = Unable to verify the license key
    8/28/14 4:59:31.036 PM acwebsecagent[127]: License : One or more of the License/Public Key can't be NULL
    8/28/14 4:59:31.036 PM acwebsecagent[127]: SSLExt : Failed to get ScanSafe headers
    8/28/14 4:59:31.036 PM acwebsecagent[127]: DownloadUpdatedConfig : Failed to download updated config. Host hostedconfig.scansafe.net. Code 0x80004005

  • Is it a good idea to update my iphone 3GS with the new io6 software?  I did it with my iphone 3G and the io4 software ruined it really!

    Is it a good idea to update my iphone 3GS with the new io6 software?  I did it with my iphone 3G and the io4 software ruined it really!

    Your plan is generally OK, but I would suggest a different approach, since you're so frazzled by it.
    1. Update iPhoto first; check and backup the iPhoto Library;
    2. Upgrade to Yosemite; This will prompt you to migrate to Photos, but you don't have to do it, so don't!
    3. iPhoto 9.6.1 will remain in your Applications folder and you can continue to use it;
    4. Learn more about Photos, it's features and how iCloud Photo Library really works (for example, once you turn it on, you won't need to download manually);
    5. When you do feel you know enough about Photos, only then launch it to migrate your photos; after migration your iPhoto Library remains fully functional, in case you want to revert to using iPhoto, so that part should not worry you.
    Thet biggest issue you have is the small amount of free space. You might want to address tha first, or locate your new Photos Library on an external drive as well, and only move it to your local drive when it's been optimized (or keep it on an external).

  • I have just updated my ipad mini with the new ios software and it has caused may ipads onboard keyboard to run very slowly does anyone no how to fix this issue

    I have just updated my ipad mini with the new ios software and it has caused may ipads onboard keyboard to run very slowly does anyone no how to fix this issue

    *Typing lag iOS 7*
    Settings>General>Reset>Reset all settings. This should improve the typing responsiveness
    *Note:* Settings, preferences, network settings, etc will be reset. *NO data or media will be lost*
    and/or
    Settings>iCloud>Documents and Data (turn it OFF)

Maybe you are looking for

  • Get an error message on premiere startup

    Cant open premiere without error message coming up. Have tried reinstall of premiere and problem persists. This is the error message: Process:         Adobe Premiere Pro CC [4020] Path:            /Applications/Adobe Premiere Pro CC/Adobe Premiere Pr

  • Why is this error happening?

    Hello, I've noticed that Flash Catalyst CS5.5 is much more bugged than the previous version of the program. We have been working for a long time now (more than 6 months) on an interface design for a website. We're a workgroup and a developer uses Bui

  • ODI - How to clear a slice before executing the data load interface

    Hi everyone, I am using ODI 10.1.3.6 to load data daily into an ASO cube (version:11.1.2.1). Before loading data for a particular date, I want the region to be cleared in the ASO cube defined by "that date". I suppose I need to run a PRE_LOAD_MAXL_SC

  • FOC items received from vendor...

    Hi Experts, I have a FOC item which receive from vendor. Which module i should use for good receipt? Goods Receipt PO or Goods Receipt? Thanks. Regards, Danny

  • Purchase requisition  creation date ...

    Our auditor want to know the creation date of purchase requisition  , i have check table CDHDR ... using  Object value <PR NUMBER>  and using BANF, it only display change history only ... where can i find creation date of PR ?