Query strage behavior

Hi,
I tried to ask this before, but it came again.
I have an application query (which means I can't really change it) with a condition in the beginning.
When the condition is false - it should be very fast.
However - it is checking the second condition anyway.
version 11.2.0.2
optimizer_features_enable 11.2.0.2
SQL Text
select :intvar from DUAL where ( to_number(:TINVOICES$IV$) <> 0 ) and exists ( select 'X' from TABULA.macdent$FNCITEMS where ( macdent$FNCITEMS.QIV = to_number(:TINVOICES$IV$) ) )
Global Information
Status : DONE (ALL ROWS)
Instance ID : 1
Session : VINEVICH (1434:13395)
SQL ID : cxnwuby99fddr
SQL Execution ID : 16777223
Execution Started : 04/01/2012 16:15:44
First Refresh Time : 04/01/2012 16:15:44
Last Refresh Time : 04/01/2012 16:17:12
Duration : 88s
Module/Action : TABULA/WINFORM TINVOICES -g C:\TMP\AAAD
Service : pri
Program : WINFORM.exe
Fetch Calls : 1
Binds Name Position Type Value
:TINVOICES$IV$ 2 NUMBER 0 -------> This is the value of the variable - 0
:TINVOICES$IV$ 3 NUMBER 0
Global Stats Elapsed
Time(s) Cpu
Time(s) IO
Waits(s) Cluster
Waits(s) Other
Waits(s) Fetch
Calls Buffer
Gets Read
Reqs Read
Bytes
177 24 153 0.00 0.20 1 1M 8777 8GB
Parallel Execution Details (DOP=2 , Servers Allocated=2)
Name Type Server# Elapsed
Time(s) Cpu
Time(s) IO
Waits(s) Cluster
Waits(s) Other
Waits(s) Buffer
Gets Read
Reqs Read
Bytes Wait Events
(sample #)
PX Coordinator QC 0.21 0.00 0.20 13 .
p000 Set 1 1 88 11 77 520K 4095 4GB db file scattered read (80)
p001 Set 1 2 89 12 76 0.00 578K 4682 4GB db file scattered read (86)
SQL Plan Monitoring Details (Plan Hash Value=883410849) Id Operation Name Rows
(Estim) Cost Time
Active(s) Start
Active Execs Rows
(Actual) Read
Reqs Read
Bytes Activity
(%) Activity Detail
(# samples)
0 SELECT STATEMENT 1
1 . FILTER 1
2 .. FAST DUAL 1 2
3 .. PX COORDINATOR 1 +88 3 1
4 ... PX SEND QC (RANDOM) :TQ10000 64M 2 87 +2 2 2 0.57 Cpu (1)
5 .... PX BLOCK ITERATOR 64M 2 87 +2 2 60M
6 ..... TABLE ACCESS FULL MACDENT$FNCITEMS 64M 2 88 +1 42 60M 8777 8GB 99.43 Cpu (9)
db file scattered read (166)
So - the condition 0<0 is FLASE. why Oracle checks the second condition as well??
Thanks

It's amazing how sometimes a simple case can surprise you.
You're right and it's not a new thing either.
SQL> create table t1
  2  as
  3  select * from dba_objects;
Table created.
SQL> var n number
SQL> var n2 number
SQL> exec :n := 0
PL/SQL procedure successfully completed.
SQL> exec :n2 := 1
PL/SQL procedure successfully completed.
SQL> select /*+ monitor gather_plan_statistics*/
  2         :n2
  3  from   t2
  4  where  :n > 0
  5  and    exists (select 1 from t1 where object_name = 'T1');
no rows selected
SQL>
SQL> select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST'));
PLAN_TABLE_OUTPUT
SQL_ID  8tmd7ptyd0dh3, child number 0
select /*+ monitor gather_plan_statistics*/        :n2 from   t2 where
:n > 0 and    exists (select 1 from t1 where object_name = 'T1')
Plan hash value: 2132554994
| Id  | Operation          | Name | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
|   0 | SELECT STATEMENT   |      |      1 |        |      0 |00:00:00.02 |     868 |
|*  1 |  FILTER            |      |      1 |        |      0 |00:00:00.02 |     868 |
|   2 |   TABLE ACCESS FULL| T2   |      0 |      1 |      0 |00:00:00.01 |       0 |
|*  3 |   TABLE ACCESS FULL| T1   |      1 |     11 |      1 |00:00:00.02 |     868 |
Predicate Information (identified by operation id):
   1 - filter(( IS NOT NULL AND :N>0))
   3 - filter("OBJECT_NAME"='T1')
Note
   - dynamic sampling used for this statement (level=4)
26 rows selected.
SQL> Whereas if we'd written the bind check into the subquery, then it has the desired shortcut effect.
SQL> select /*+ monitor gather_plan_statistics*/
  2         :n2
  3  from   dual
  4  where  exists (select 1 from t1 where :n > 0 and object_name = 'T1');
no rows selected
SQL>
SQL> select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST'));
PLAN_TABLE_OUTPUT
SQL_ID  gjtrmbtczvsrr, child number 0
select /*+ monitor gather_plan_statistics*/        :n2 from   dual
where  exists (select 1 from t1 where :n > 0 and object_name = 'T1')
Plan hash value: 4023761791
| Id  | Operation           | Name | Starts | E-Rows | A-Rows |   A-Time   |
|   0 | SELECT STATEMENT    |      |      1 |        |      0 |00:00:00.01 |
|*  1 |  FILTER             |      |      1 |        |      0 |00:00:00.01 |
|   2 |   FAST DUAL         |      |      0 |      1 |      0 |00:00:00.01 |
|*  3 |   FILTER            |      |      1 |        |      0 |00:00:00.01 |
|*  4 |    TABLE ACCESS FULL| T1   |      0 |     11 |      0 |00:00:00.01 |
Predicate Information (identified by operation id):
   1 - filter( IS NOT NULL)
   3 - filter(:N>0)
   4 - filter("OBJECT_NAME"='T1')
Note
   - dynamic sampling used for this statement (level=4)
28 rows selected.
SQL> So, yes it's surprising but it's not new behaviour and funny things can happen depending on how you write something.

Similar Messages

  • Af:query unusual behavior 11.1.1.4.0

    JDeveloper 11.1.1.4.0
    Hi, I'm experiencing unusual behavior in an af:query object. I have two variables VariableClientId and VariableCan in a view object's view criteria. When I run the form in Weblogic to test it, the af:query shows not only the two mentioned variables, but also two fields ClientId and Can. How do I make two of these input fields disappear and only show two inputs for the af:query object? I've searched all over and can't seem to find what is driving the extra fields.
                      <af:query id="qryId1" headerText="Search" disclosed="true"
                                value="#{bindings.SearchByCIDAndCanQuery.queryDescriptor}"
                                model="#{bindings.SearchByCIDAndCanQuery.queryModel}"
                                queryListener="#{MyBean.processQuery}"
                                queryOperationListener="#{bindings.SearchByCIDAndCanQuery.processQueryOperation}"
                                resultComponentId="::pc1:resId1"/>Thanks,
    Troy

    Make sure they are not in query. Otherwise they have to be required, you can change the display hint to hidden if you want to hide them

  • Pivot query, phantom behavior, possible bug?

    Hi experts,
    Oracle 11g
    We are trying to construct a binary type table using a pivot query. (I know there will be no 0's, I will fill that in later.)
    The query to create this table is as follows:
    create table TEMP_T1 as
                select * from (
                select master_id, mbr_id
                        sub_id,
                        NVL(max(den_flag),0) DF,
                        NVL(max(num_flag),0) NF,
                        NVL(sum(den_flag),0) DXF,
                        NVL(sum(num_flag),0) NXF
                from MEM_SUM
                group by master_id, mbr_id,
                        sub_id
                pivot ( max(DF) D_FLAG,
                          max(NF) N_FLAG,
                          sum(DXF) D_COUNT,
                          sum(NXF) N_COUNT
                          FOR sub_id in
                        ( 'MEAS-1' AS "MEAS1",'MEAS-2' AS "MEAS2",'MEAS-3' AS "MEAS3",'MEAS-4' AS "MEAS4"))I am seeing unusual results when I run this query, and am unsure why. Wanted to get some thoughts.
    First issue:
    Although the query selects master_id and mbr_id, I only get master_id with the pivoted results (when it should be master_id, mbr_id & pivot results). Not sure why.
    Second issue:
    And this is where it gets even more strange, if I
    1) do something to the code to make it have a syntax problem, re-run, it will fail, naturally.
    then
    2) fix the syntax back to the original query above, it will run and return master_id, mbr_id & the pivoted results.
    Has anyone encountered such a strange issue before? Any suggestions on a solution welcome.
    Edited by: chris001 on Feb 22, 2013 8:09 AM

    I've experienced a similar problem with my FaderPort controller but only under odd circumstances.
    If I accidentally unplugged my FaderPort and then plugged it back in, the Control Surfaces preferences that I had assigned it would get deleted and the MIDI messages would come through as note data and other really weird stuff depending on what track I had selected in the arrange window...
    What I noticed was that when I just went in and re-did my Control Surfaces stuff for that controller it would reset and work perfectly.
    Eventually I had to contact PreSonus and let them know what was happening. Turns out it was a problem with the driver, and the driver had to be updated to accomodate 8.0.2.
    I can only imagine that this is still the case for many companies (including the ones who made your volume pedal) since Logic 9 came so suddenly, without even a 8.1 ever being released....Try contacting that company and seeing if there are any known issues with the driver for the device and Logic 9... might help, can't hurt.

  • Query Cache Behavior

    Hi Experts,
    I'm running 12.0.5, and have enjoyed 6 months or more of uptime for our production server, until Thursday when an electrical strom coupled with an odd occurance with our UPS system brought it to an abrupt halt.
    Dev and Test environments came up OK, however the icon related to the J2EE server on production remained yellow.  We were unable to access MII, or NWA for that matter.
    I handed the problem over to our Basis team, who couldn't figure it out then passed a note to SAP.  While waiting for a response, I decided to do some more poking around, as it was now 8:00pm Friday night and any hope of doing anything over the weekend (other than work) was quickly fading.
    Poking around in the NW database, I found that the XMII_QUERYCACHE table had >2.5M rows (that seemed odd).  Initital attempts to Truncate the table were unsuccessful (something about resources and NOWAIT, should have captured that error), however I was able to Truncate by shutting down the server, then executing just as the database was starting, and VOILA!, NW and MII came online.
    My assumption is that either the table is read on startup, or perhaps an attempt is made to 'delete' all rows on startup (delete would attempt to build a rollback segment in order to execute), is that the case?  Also, are 'expired' cache entries supposed to be hanging around?
    I found that I have a single frequently executed query that was the culprit, query caching was enabled with a duration of 2Hours (many jobs use this query).   I'll correct that situation, but I wanted to try and correct the root cause.
    Thanks,
    Rod

    I entered a ticket and just received a resolution from SAP, as follows..
    We have added this feature in both MII 12.0 and MII 12.1.
    The changes will be available with next SP release on SAP Service
    Marketplace.
    MII 12.0 SP12 will be available on 15-Dec-2010.
    My assumption is that there will be a system job that clears out expired query cache rows at some frequency, nightly maybe.
    Wanted to update the thread with the resolution in case anyone was having the same problem.
    Rod

  • OIM 9.1.0.1 Lookup -  Lookup Query

    Hi all
    We have already develop connector. But still have some questions...
    Parent process form with two lookup fields where second lookup values depends of the first lookup selected value.
    We have created second lookup like 'Lookup Query', yes we see right CODE, DECODE with relation of first lookup, and when pick value, only one value (DECODE or CODE) can be passed, not like simple Lookup ( when pick row ( DECODE and CODE ) saved to DB, and next review of the form field show DECODE value (but in mind) it is CODE) :)
    i want 'Lookup Query' with behavior of simple Lookup.
    any suggestions, it is possible?

    I'm positive there's a great way to do it with SQL, but you'll need to look at 4 tables:
    1) OBJ (Objects) - Here you are looking in OBJ_NAME for 'OID User', once found get the OBJ_KEY value for the row.
    2) OST (Object Status) - In this table, you can find all the statuses for the OID User resource based on the OBJ_KEY value. Look for the applicable ones and get the OST_KEY value for each row.
    3) OIU (Object Instance for Users) - Now you can query this table for all results where OST_KEY equals the desired values as found in step 2.
    4) USR (Users) - Here you can get the User ID's (usr_login), User Key (usr_key) or any other value for users to help with the query.

  • Query for Find Mode Fails-AutoGenerated WHERE clause missing quotation mark

    Using Oracle JDev 10.1.3.2. In 'Find Mode' the query execution fails.
    The error shown below is caused by the WHERE clause statement. The column name is quoted in the database but the code generated by the ADF framework does not use quotes. As a result the column name is illegal. Is there a way to hint to the ADF framework to ALWAYS use quotation marks?
    (oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT "PLATE","WROW","WCOL","WFIELD","AVGNUC.NUC_CELL_INTENSITY","MEDNUC.NUC_CELL_INTENSITY","AVGORG.INCLUSION_BCKG_INTE","MEDORG.INCLUSION_BCKG_INTE","MEDORG.COUNT","MEDORG.SPACING","MEDORG.NEIGHBOR_COUNT" FROM ICSUMSTAS_1888_295) QRSLT WHERE ( ( (MEDORG.COUNT >0) ) )

    It is true that these are not the most column 'friendly' names, but they are what they are. In the database these columns are quoted and they must be so in order for the query to work correctly.
    The suggestion of directly manipulating the View Criteria is a good one and I have implemented a solution based on it but it's cumbersome. Here is how it works:
    First, use the default query mode UI to add new View Criteria. If you were to execute the query at this point it would fail due to the columns names not being quoted. So, instead, implemented my own execute query button that first uses the View Criteria to create a properly quoted WhereClause for the ViewObject.
    I then reset the ViewCriteria (or they will interfere with the WhereClause), set the custom constructed WhereClause on the ViewObject, and re-execute the query. The cumbersome part is that I have to create my own parser for user input to write a valid WhereClause. And when the user uses query mode again the previously set ViewCriteria have been reset (which is annoying, and not the typical query mode behavior which might confuse the user)
    below are some of my code snippets:
    * This action is triggered by clicking the FIND button on the UI.
    * It uses a combination of the ViewCriteria default UI and custom code that processes
    * user input into a whereClause for the ViewObject
    private void jbFind_actionPerformed(ActionEvent e) {
    jbAddRow.setEnabled(false);
    //reset old where clause
    System.out.println("OLD WHERE:"+myView.getWhereClause());
    myView.setWhereClause(null);
    String customWhere=getCustomWhere();
    /* The case for null and blank View Criteria is tested below
    * when there are blank ViewCriteria the sequence (--) is generated from getCustomWhere
    * Note the use of contains instead of equals
    * The use of equalIgnoreCase etc for unexplained reasons seem to fail to detect when customWhere is (--)
    if(customWhere==null||customWhere.contains("(--)")){
    return;
    }else{
    /*remove ViewCriteria because they can not handle special Column names
    * That's why we go into the trouble of creating our own find function
    myView.getViewCriteria().removeAllElements();
    myView.setWhereClause(customWhere);
    myView.executeQuery();
    jUNavigationBar1.doAction(JUNavigationBar.BUTTON_EXECUTE);
    jTable1.revalidate();
    private String getCustomWhere(){
    StringBuffer custom=new StringBuffer();
    ApplicationModule am = (ApplicationModule) panelBinding.getApplication().getDataProvider();
    DCJboDataControl jbodc = new DCJboDataControl(am);
    JUIteratorBinding iterBinding = new JUIteratorBinding(jbodc,myView );
    int criteriaCount=iterBinding.getViewCriteria().getRowCount();
    //Validation when no ViewCriteria are defined
    if (criteriaCount==0){
    System.out.println("ViewCriteria Count: "+criteriaCount);
    return null;
    }else{
    System.out.println("ViewCriteria Count: "+criteriaCount);
    int attr=iterBinding.getViewCriteria().getCurrentRow().getAttributeCount();
    int criteriaRows=iterBinding.getViewCriteria().getAllRowsInRange().length;
    String[] attrNames=iterBinding.getViewCriteria().getCurrentRow().getAttributeNames();
    for (int r=0;r<criteriaRows;r++)
    {custom.append("(");
    for (int k=0;k<attr;k++){
    if(iterBinding.getViewCriteria().getRowAtRangeIndex(r).getAttribute(k)!=null){
    custom.append("(\""+attrNames[k]+"\"");// LIKE '"+(String)iterBinding.getViewCriteria().getRowAtRangeIndex(r).getAttribute(k)+"') AND ");
    //trim white space
    String attrK=((String)iterBinding.getViewCriteria().getRowAtRangeIndex(r).getAttribute(k)).trim();
    String qual=attrK.substring(0,1);
    if(qual.equalsIgnoreCase(">")||qual.equalsIgnoreCase("<")||qual.equalsIgnoreCase("=")||qual.equalsIgnoreCase("!")){
    custom.append(" "+qual+"'"+attrK.substring(1)+"') AND " );
    }else{
    custom.append(" LIKE '"+(String)iterBinding.getViewCriteria().getRowAtRangeIndex(r).getAttribute(k)+"') AND ");
    }custom.append("--");
    custom.append(")");
    custom.append(" OR ");
    }//end criteria rows
    custom.append("--");
    //now need to remove terminal AND and OR tagged with --
    String cleanWhere=custom.toString().replaceAll("AND --","").replaceAll("OR --","");
    System.out.println("NEW CUSTOM WHERE: "+cleanWhere);
    return cleanWhere;
    }

  • CBO calculates un acceptable cost while using index.

    Hi,
    I was wondering to see the execution plan for both the case using index/without index.
    We are using oracle 10G(10.2.0.3.0) with RAC in production at O/S:- sun solaris 10.
    Java based application is running in this database. One of the sql query is taking long time to fetch the records. I analyzed the sql plan and noticed the FTS. I created indexes to the column(s) which is refering in where clauses. I noticed a strage behavior. Execution plan shows that the CBO is using right path but its not acceptable as application is time outs while return the rows.
    first execution plan with/without index (not using the index).
    PLAN_TABLE_OUTPUT
    Plan hash value: 419342726
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 196 | 3332 | 67845 (3)| 00:13:35 |
    |* 1 | TABLE ACCESS FULL | CWDBENUMDESCRIPTIONS | 1 | 35 | 3 (0)| 00:00:01 |
    | 2 | SORT GROUP BY | | 196 | 3332 | 67845 (3)| 00:13:35 |
    |* 3 | TABLE ACCESS FULL| CWORDERINSTANCE | 51466 | 854K| 67837 (3)| 00:13:35 |
    Predicate Information (identified by operation id):
    1 - filter("ERR"."CODE"=:B1)
    3 - filter("OI"."ERROR_CODE" IS NOT NULL AND "OI"."DIVISION"='OR9' AND
    "OI"."ACTIVE"=TO_NUMBER(:1) AND "OI"."ORDER_STATE"<>'O_NR_NS' AND
    "OI"."ORDER_STATE"<>'C_C_QR' AND "OI"."ORDER_STATE"<>'O_NR_NS_D')
    SQl query was modified to force the index to use /*+ index(oi oi_div) */ the execution is as below:-
    PLAN_TABLE_OUTPUT
    Plan hash value: 1157277132
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 196 | 3332 | 394K (1)| 01:18:52 |
    |* 1 | TABLE ACCESS FULL | CWDBENUMDESCRIPTIONS | 1 | 35 | 3 (0)| 00:00:01 |
    | 2 | SORT GROUP BY | | 196 | 3332 | 394K (1)| 01:18:52 |
    |* 3 | TABLE ACCESS BY INDEX ROWID| CWORDERINSTANCE | 51466 | 854K| 394K (1)| 01:18:52 |
    |* 4 | INDEX RANGE SCAN | OI_DIV | 3025K| | 14226 (1)| 00:02:51 |
    Predicate Information (identified by operation id):
    1 - filter("ERR"."CODE"=:B1)
    3 - filter("OI"."ERROR_CODE" IS NOT NULL AND "OI"."ACTIVE"=TO_NUMBER(:1) AND
    "OI"."ORDER_STATE"<>'O_NR_NS' AND "OI"."ORDER_STATE"<>'C_C_QR' AND
    "OI"."ORDER_STATE"<>'O_NR_NS_D')
    My questions are here:-
    1). why FTS is less costly comparing index scan where there are 15000000 rows in the table.
    2). while forcing index to use cost increase drastically (the statistics is latest one analyzed on 6th of feb 2009)
    3). what should i suppose to change to get the performance benefit.
    Thanks,
    Pradeep

    user587112 wrote:
    select null, oi.division, oi.METADATATYPE, oi.ERROR_CODE,
           (  select err.DESCRIPTION
    FROM   CWDBENUMDESCRIPTIONS err
    WHERE  oi.ERROR_CODE = err.CODE
    count(*)
    from CWORDERINSTANCE oi
    where
         oi.ERROR_CODE is not null
          and oi.division in ('BK9')
         and oi.order_state not in ('O_NR_NS_D', 'C_C_QR', 'O_NR_NS')
          and oi.metadatatype = :1
         and oi.duedate>=:2
         and oi.active = :3
    group by oi.division, oi.metadatatype, oi.error_code
    order by oi.division, oi.metadatatype, oi.error_code
    In this query, if we use as it is how its being displayed, it runs like a rocket, but if we change division in ('OR9') instead of 'BK9' it does not use index and leads to time out the application.
    Number of records   division
    1964690                             ---------------- why this field is null ?
    3090666              OR9
    3468                 BA9
    1242                 EL9
    2702                 IN9
    258                  EU9
    196198               DT9
    1268                 PA9
    8                    BK9
    2332                 BH9
    1405009              TP9
    According to the stats in your original execution plan, it looks like you have a histogram on this column, and the index you want to use is on just the division column.
    Oracle estimate for 'OR9' is 3M rowids from the index, resulting in 50,000+ rows from the table - that's a lot of work - it's not surprising that the optimizer chose a tablescan for 'OR9' - but chose to use the index for 'BK9' which has only 8 rows.
    How often do you want to run this query ? And how accurate does the answer have to be ?
    If you want this query to run faster even when it's processing a huge number of rows, one option would be to create a materialized view over the data that could supply the result set much more efficiently (possibly getting your front-end code to call a materialized view refresh before running the query).
    The only other altenative is probably to create an index that covers all the columns in the query so that you don't have to visit the table - and if you order them correctly you won't have to do a sort group by. I think this index should do the trick: (division, metadatatype, error_code,active, duedate,orderstate). You could also compress this index on at least the first column, but possibly on far more columns, to minimise the size,
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    "The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge."
    Stephen Hawking
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Corporate connectivity not working for some users

    Hi,
    I'm having an issue that started about a month ago but is getting worse.  A select group of users are no longer able to connect using DirectAccess, even though these users have been using their computers for a few months without issue.
    BACKGROUND:
    -Windows 2008 R2 DirectAccess server
    -Windows 7 x64 enterprise clients
    -Most clients experiencing the issue have a newer laptop (Lenovo T440 with Intel 7260AC wireless), but the issue is not limited to this model. Also, I have 25+ other Lenovo T440 units that connect without issue to this day.
    TROUBLESHOOTING STEPS:
    I have tried disabling the various interfaces used for directaccess on these problem machines and have not been able to narrow it down.  Essentially- I've noticed the IP-HTTPS interface shows deactivated, so I'll disable Teredo.  This
    usually allows the IP-HTTPS to show activated, and connectivity is restored.  However, after 30 seconds to a few minutes, connectivity will once again drop.  So I'll re-enable teredo (default,client, or enterprise client) and connectivity will kick
    on for another brief period, but drops again shortly after.
    I have confirmed that during these short periods of connectivity working, the wf.msc shows connectivity using NTLM and Kerberos, but the clients just can't seem to stay connected on any interface.  
    However, in the wf.msc when the clients are not functioning, I only ever see one NTLM entry.

    LOGS:
    Below is a directaccess client log pulled from a non-functioning client before making any changes or any testing.  Feel free to ask for the rest of the log if needed-- I have put in place holders for information that may be sensitive.  Thank you!!
    RED: Corporate connectivity is not working.
    Windows is unable to relocationve corporate network names. Please contact your administrator if this problem persists.
    24/3/2015 18:21:43 (UTC)
    Probes List
    FAIL PING: location-dc.domain.local
    FAIL PING: location-file.domain.local
    DTE List
    PASS PING: 2002:'mac':5a1c::'mac':5a1c
    PASS PING: 2002:'mac':5a1d::'mac':5a1d
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>ipconfig /all
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : c2075
    Primary Dns Suffix . . . . . . . : domain.local
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : domain.local
    domain2.ad
    System Quarantine State . . . . . : Not Restricted
    Wireless LAN adapter Wireless Network Connection 3:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Virtual WiFi Miniport Adapter #2
    Physical Address. . . . . . . . . : 2A-B2-BD-'mac2'-E5
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Wireless LAN adapter Wireless Network Connection 2:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Virtual WiFi Miniport Adapter
    Physical Address. . . . . . . . . : 2A-B2-BD-'mac2'-E6
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Ethernet adapter Bluetooth Network Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network)
    Physical Address. . . . . . . . . : 28-B2-BD-'mac2'-E9
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Wireless LAN adapter Wireless Network Connection:
    Connection-specific DNS Suffix . : attlocal.net
    Description . . . . . . . . . . . : Intel(R) Dual Band Wireless-AC 7260
    Physical Address. . . . . . . . . : 28-B2-BD-'mac2'-E5
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    IPv6 Address. . . . . . . . . . . : 2602:304:'mac3':d370:5a1:c77:834:86a9(Preferred)
    Temporary IPv6 Address. . . . . . : 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'(Preferred)
    Link-local IPv6 Address . . . . . : fe80::5a1:c77:834:86a9%12(Preferred)
    IPv4 Address. . . . . . . . . . . : 192.168.1.86(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Lease Obtained. . . . . . . . . . : Tuesday, March 24, 2015 1:48:21 PM
    Lease Expires . . . . . . . . . . : Wednesday, March 25, 2015 1:48:21 PM
    Default Gateway . . . . . . . . . : fe80::21b:5bff:febf:4f21%12
    192.168.1.254
    DHCP Server . . . . . . . . . . . : 192.168.1.254
    DNS Servers . . . . . . . . . . . : 192.168.1.254
    NetBIOS over Tcpip. . . . . . . . : Enabled
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . : domain.local
    Description . . . . . . . . . . . : Intel(R) Ethernet Connection I218-LM
    Physical Address. . . . . . . . . : 28-D2-44-C5-24-59
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.attlocal.net:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . : attlocal.net
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter iphttpsinterface:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : iphttpsinterface
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter 6TO4 Adapter:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft 6to4 Adapter
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{FD31098B-E475-49A1-9AFA-8C43FF928F97}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.domain.local:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #3
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Teredo Tunneling Pseudo-Interface:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    IPv6 Address. . . . . . . . . . . : 2001:0:'mac':5a1c:342d:25dd:b4e1:12c8(Preferred)
    Link-local IPv6 Address . . . . . : fe80::342d:25dd:b4e1:12c8%18(Preferred)
    Default Gateway . . . . . . . . . :
    NetBIOS over Tcpip. . . . . . . . : Disabled
    Tunnel adapter isatap.{E1BE09BA-B38B-4F87-8893-E3D32A88EDFC}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #4
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{0C04B587-7861-4D8D-9DA9-6326AB71D701}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #5
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int teredo show state
    Teredo Parameters
    Type : client
    Server Name : 204.16.90.28 (Group Policy)
    Client Refresh Interval : 30 seconds
    Client Port : unspecified
    State : qualified
    Client Type : teredo host-specific relay
    Network : unmanaged
    NAT : restricted
    NAT Special Behaviour : UPNP: No, PortPreserving: Yes
    Local Mapping : 192.168.1.86:55842
    External NAT Mapping : 75.30.237.55:55842
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int httpstunnel show interfaces
    Interface IPHTTPSInterface (Group Policy) Parameters
    Role : client
    URL : https://uag.webdomain.com:443/IPHTTPS
    Last Error Code : 0x0
    Interface Status : IPHTTPS interface deactivated
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh dns show state
    Name Relocationution Policy Table Options
    Query Failure Behavior : Always fall back to LLMNR and NetBIOS
    if the name does not exist in DNS or
    if the DNS servers are unreachable
    when on a private network
    Query Relocationution Behavior : Relocationve only IPv6 addresses for names
    Network Location Behavior : Let Network ID determine when Direct
    Access settings are to be used
    Machine Location : Outside corporate network
    Direct Access Settings : Configured and Enabled
    DNSSEC Settings : Not Configured
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh name show policy
    DNS Name Relocationution Policy Table Settings
    (ENTRIES OMITTED TO SAVE SPACE)
    Settings for .domain.local
    Certification authority : DC=local, DC=domain, CN=HDT CA
    DNSSEC (Validation) : disabled
    DNSSEC (IPsec) : disabled
    DirectAccess (DNS Servers) : 2002:'mac':5a1d::'mac':5a1d
    DirectAccess (IPsec) : disabled
    DirectAccess (Proxy Settings) : Bypass proxy
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh name show effective
    DNS Effective Name Relocationution Policy Table Settings
    (ENTRIES OMITTED TO SAVE SPACE)
    Settings for .domain.local
    Certification authority : DC=local, DC=domain, CN=HDT CA
    DNSSEC (Validation) : disabled
    IPsec settings : disabled
    DirectAccess (DNS Servers) : 2002:'mac':5a1d::'mac':5a1d
    DirectAccess (Proxy Settings) : Bypass proxy
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int ipv6 show int level=verbose
    Interface Loopback Pseudo-Interface 1 Parameters
    IfLuid : loopback_0
    IfIndex : 1
    State : connected
    Metric : 50
    Link MTU : 4294967295 bytes
    Reachable Time : 40000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : disabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection Parameters
    IfLuid : wireless_0
    IfIndex : 12
    State : connected
    Metric : 25
    Link MTU : 1472 bytes
    Reachable Time : 1101000 ms
    Base Reachable Time : 1805000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 64
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.attlocal.net Parameters
    IfLuid : tunnel_4
    IfIndex : 22
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 27500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection 2 Parameters
    IfLuid : wireless_5
    IfIndex : 15
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 24000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface iphttpsinterface Parameters
    IfLuid : tunnel_5
    IfIndex : 17
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 31500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : enabled
    Other Stateful Configuration : enabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Local Area Connection Parameters
    IfLuid : ethernet_6
    IfIndex : 11
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 31500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface 6TO4 Adapter Parameters
    IfLuid : tunnel_6
    IfIndex : 19
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 39500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : disabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{FD31098B-E475-49A1-9AFA-8C43FF928F97} Parameters
    IfLuid : tunnel_7
    IfIndex : 21
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 33000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.domain.local Parameters
    IfLuid : tunnel_8
    IfIndex : 39
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 36000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Bluetooth Network Connection Parameters
    IfLuid : ethernet_9
    IfIndex : 14
    State : disconnected
    Metric : 50
    Link MTU : 1500 bytes
    Reachable Time : 17000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection 3 Parameters
    IfLuid : wireless_9
    IfIndex : 16
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 17000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Teredo Tunneling Pseudo-Interface Parameters
    IfLuid : tunnel_9
    IfIndex : 18
    State : connected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 14500 ms
    Base Reachable Time : 15000 ms
    Retransmission Interval : 2000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : enabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{E1BE09BA-B38B-4F87-8893-E3D32A88EDFC} Parameters
    IfLuid : tunnel_10
    IfIndex : 20
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 41000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{0C04B587-7861-4D8D-9DA9-6326AB71D701} Parameters
    IfLuid : tunnel_11
    IfIndex : 23
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 40000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh advf show currentprofile
    Private Profile Settings:
    State ON
    Firewall Policy BlockInbound,AllowOutbound
    LocalFirewallRules N/A (GPO-store only)
    LocalConSecRules N/A (GPO-store only)
    InboundUserNotification Enable
    RemoteManagement Disable
    UnicastResponseToMulticast Enable
    Logging:
    LogAllowedConnections Disable
    LogDroppedConnections Disable
    FileName %systemroot%\system32\LogFiles\Firewall\pfirewall.log
    MaxFileSize 4096
    Ok.
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh advfirewall monitor show consec
    Global Settings:
    IPsec:
    StrongCRLCheck 0:Disabled
    SAIdleTimeMin 5min
    DefaultExemptions ICMP
    IPsecThroughNAT Never
    AuthzUserGrp None
    AuthzComputerGrp None
    StatefulFTP Enable
    StatefulPPTP Enable
    Main Mode:
    KeyLifetime 60min,0sess
    SecMethods DHGroup2-AES128-SHA256,DHGroup2-AES128-SHA1,DHGroup2-3DES-SHA1
    ForceDH No
    Categories:
    BootTimeRuleCategory Windows Firewall
    FirewallRuleCategory Windows Firewall
    StealthRuleCategory Windows Firewall
    ConSecRuleRuleCategory Windows Firewall
    Quick Mode:
    QuickModeSecMethods ESP:SHA1-None+60min+100000kb,ESP:SHA1-AES128+60min+100000kb,ESP:SHA1-3DES+60min+100000kb,AH:SHA1+60min+100000kb
    QuickModePFS None
    Security Associations:
    Main Mode SA at 03/24/2015 14:21:44
    Local IP Address: 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'
    Remote IP Address: 2002:'mac':5a1d::'mac':5a1d
    Auth1: ComputerCert
    Auth2: UserNTLM
    MM Offer: None-AES128-SHA256
    Cookie Pair: 9398e38420480425:51071d5bae9eb503
    Health Cert: No
    Quick Mode SA at 03/24/2015 14:21:44
    Local IP Address: 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'
    Remote IP Address: 2002:'mac':5a1d::'mac':5a1d
    Local Port: Any
    Remote Port: Any
    Protocol: Any
    Direction: Both
    QM Offer: ESP:SHA1-AES192+60min+100000kb
    PFS: None
    Thanks again,

  • OBIEE 11g "WITH SAWITH0 AS" subquery factoring clause in the generated sql

    I've observed that the OBIEE 11g generates in the query log physical query using the WITH (sub-query factoring) clause to make the generated sql elegantly readable. This is great! Thanks for the developers. However I have some questions about this.
    __Background__
    Oracle Database' default behaviour is that if you have only one sub-query in the WITH section, it executes it as an in-line view and does not materialize it before the main sql is executed. If you have more than one, by default the database engine materializes all of them in the order of the definition. In some cases this can completely blow up the SGA and make the query never ending. To divert this behaviour you can apply two hints that work both in inline views and in sub-queries as well: /*+ MATERIALIZE */ and /*+ INLINE*/, however Analytics 11g does not seem to have hint capabilities at the logical table level, only at physical table level.
    If we go with the current defaults, developers not aware of this feature can bump into serious performance issues for the sake of some syntax candy at the generated sql level, I'm afraid.
    __Questions__
    * Is it possible to turn the Analytics server not to use WITH but use inline views instead?
    * Is there any way to sneak in some hints that would put the /*+ INLINE */ hint to the appropriate place in the generated sub-queries if needed
    * Does the Oracle Database have any initialization parameter that can influence this sub-query factoring behavior and divert from the default?

    The WITH statement is not added to make the query more elegant, it's added for performance reasons. If your queries take long to run then you may have a design issue. In a typical DWH DB SGA needs to be seriously increased since the queries ran are much larger and complex than on an OLTP DB. In any case you can disable the WITH statement in the Admin Tool by double clicking on your database object on the physical layer and going to the Features tab. The feature is called WITH_CLAUSE_SUPPORTED.

  • Auto creation of user pages with their data when they register to a site and go to that page

    I have watched few posts slightly related to this topic but i didnt got the result.
    I am creating an user authentication system using Dreamweaver 8, PHP and MySQL.
    Database, login system and user authentication has been created.
    With 'Log In User' server behavior if succeeds, the user goes to username.php file in the
    site root directory. It happens to all the users with such .
    But I want to take each user to his own page with his account details only.  They dont need
    to go or watch other users information.
    How to creates a new page in dreamweaver with the username of the each user got registered
    and takes him to his own page with details from database related to that user.
    Thank you

    I would have a db table called account details.  Upon successful login run a SQL Query (recordset behavior in DW) similar to the followin: SELECT * FROM account_details WHERE UserName = 'Username'.  Put the approriate fields in your page and there ya have it.
    Recordset walk-thru:
    http://www.garunawebdesigner.com/?p=8052

  • Message-Mapping: difference test in IR and runtime

    Hi everybody,
    I got a very strage behavior.
    I got an element name CONTENT.
    When I test my mapping in IR element CONTENT will be filled
    During runtime the element CONTENT is NOT filled and the element is not generated!
    For testing I use exactly the same payload as produced is runtime.
    To make sure that there are not problems with cache, I manipulate other target field to see that the correct version is processed.
    Any ideas?
    Regards Mario

    Hi,
    for everybody:
    I think I got the problem.
    As I read dynamic attributes during runtime the behavior test <-> runtime was different.
    Regards Mario

  • Active directory member;range=0-999 issue

    Has anyone else run into a problem with active directory and
    it returning the member attribute with the range attached? I am
    running into this problem as discussed in a microsoft article (see
    below). The data comes back fine and I get all the records I need.
    BUT... the problem is the column name is returned as
    "member;range=0-999" instead of just member as in a normal active
    directory query. The problem is it has that semicolon in the column
    name so trying to loop through the query or get to that data keeps
    breaking it. So it is there, I just can't get to it. I have tried
    escaping the semicolon or aliasing the column name, but I just keep
    running into problems. I am hoping someone else has run up against
    this or knows ways to get around invalid column names in a query.
    If I have a resultset for a query that has a bad column name, how
    can I get to that data?
    When an Active Directory server returns the values of the
    member attribute as the result of a directory search query, its
    behavior varies depending on whether the total number of attribute
    values for that object exceed the maximum limit on values
    retrieved. For example, if a distribution list on a Windows 2000
    Server contains 1000 or fewer member values, a search query will
    return all of the values in a single call. However, if the list
    contains 2497 member values, the first call to the search query
    function will return the member attribute with no values, and an
    additional member;range=0-999 attribute that contains the first
    1000 member values. To retrieve the next group of member values,
    the search query should be repeated using a range specifier that
    begins at the attribute number one past the number of the previous
    group returned. In this example, the search query function would
    request the member;range=1000-* values, which would return the
    member;range=1000-* attribute with no values and a
    member;range=1000-1999 attribute with the next 1000 values. This
    process is repeated until the last group of values is retrieved.
    The end range on the last group retrieved from the server would be
    indicated by an asterisk (*) in the returned attribute name.

    I found I was able so solve this using the method found at
    the following address:
    http://www.bennadel.com/index.cfm?dax=blog:357.view

  • DirectAccess client enables IPHTTPS interface when inside corporate network at remote sites

    We have 4 offices connected via an MPLS network. I've installed the DA server in the main office. We're using a PKI for NLS and IPsec certs and a self-signed cert for IPHTTPS. For the most part everything works great. When a DA client is in the main office
    all DA settings are disabled and the client acts as it should. When on the internet the IPHTTPs tunnel is established and remote access works.
    My problem is when the same DA client connects at one of the remote offices. When at a remote office the IPHTTPS interface is active. The NRPT is not. No tunnel is actually established but I find Event 4012, NCSI event logs showing that the Inside/Outside probe
    failed. This in and of itself would not be a big deal as the tunnel is never established however it does seem to cause Outlook to prompt for a password. I know this has something to do with our OWA site being resolvable inside the network, but I'm at a loss
    as to why this only happens with the IPHTTPS interface is active with no tunnel established.
    The NLS site appears to be working from the remote offices. I can ping NLS via DNS name and can open the https NLS website in a browser.
    Anyone have any ideas as to why this would be happening?

    Event Logs:
    Log Name:      Microsoft-Windows-NCSI/Operational
    Source:        Microsoft-Windows-NCSI
    Date:          4/22/2013 8:26:58 AM
    Event ID:      4012
    Task Category: Check Corporate Inside/outside Location
    Level:         Warning
    Keywords:      (17179869184)
    User:          NETWORK SERVICE
    Computer:      N30504-EDUENSIN.miac.local
    Description:
    Inside/Outside probe failed for interface 0x8300000F000000.
    Error: A connection with the server could not be established (12029)
    Host: directaccess-nls.miac.local//insideoutside
    Next retry: 128 second(s).
    Log Name:      Microsoft-Windows-NCSI/Operational
    Source:        Microsoft-Windows-NCSI
    Date:          4/22/2013 8:26:58 AM
    Event ID:      4010
    Task Category: Check Corporate Inside/outside Location
    Level:         Information
    Keywords:      Response Time,(35184372088832)
    User:          NETWORK SERVICE
    Computer:      N30504-EDUENSIN.miac.local
    Description:
    Inside/Outside detection finished for interface 0x8300000F000000 (OUTSIDE).
    netsh dns show state
    Name Resolution Policy Table Options
    Query Failure Behavior                : Always fall back to LLMNR and NetBIOS
                                            if the name does not exist
    in DNS or
                                            if the DNS servers are
    unreachable
                                            when on a private network
    Query Resolution Behavior             : Resolve only IPv6 addresses for names
    Network Location Behavior             : Let Network ID determine when Direct
                                            Access settings are to
    be used
    Machine Location                      : Inside corporate network
    Direct Access Settings                : Configured and Disabled
    DNSSEC Settings                       : Not Configured
    netsh namespace show effectivepolicy
    DNS Effective Name Resolution Policy Table Settings
    Note: DirectAccess settings would be turned off when computer is inside corporat
    e network
    netsh interface httpstunnel show interfaces
    Interface IPHTTPSInterface (Group Policy)  Parameters
    Role                       : client
    URL                        :
    https://***********:443/IPHTTPS
    Last Error Code            : 0x0
    Interface Status           : IPHTTPS interface active

  • DirectAccess 2012 force tunneling

    Hi,
    I have a Windows Server 2012 DirectAccess implementation where I want to enable force tunneling so clients using DirectAccess from the Internet will us force all traffic to the
    DA server.
    When I select “use force tunneling” in the DA Wizard and save the configuration, my DA enabled clients loses network connectivity when they are placed on my internal network.
    In the DA wizard I see the help text “DirectAccess clients connected to the internal network and to the Internet via remote Access server” below the “use force tunneling” option.
    Can it be true that the force tunneling apply to all DA clients regardless if they are placed internally or on the Internet?
    If that is true it will give a lot of traffic on the DA server if force tunneling is enabled.
    Thomas Forsmark Soerensen

    I'm having the exact same issue :
    When in the internal network there is still an entry in the NRPT : the one for "."
    DNS Effective Name Resolution Policy Table Settings
    Settings for .
    Certification authority :
    DNSSEC (Validation) : disabled
    IPsec settings : disabled
    DirectAccess (DNS Servers) : fd17:dc02:d12b:3333::1
    DirectAccess (Proxy Settings) : Bypass proxy
    My setup is the following:
    One NIC behind a FW/Reverse Proxy (squid), force tunneling activated, windows 7 clients (PKI deployed), NAP (NPS/HRA deployed and working).
    I tried some tips on DNS resolution:
    - enable "Allow DA clients to use local name resolution"
    - use least restrictive local name resolution option 'use local name resolution for any kind of DNS resolution error" (but I tried others)
    In the configuration there is :
    - "." and the DA DNS Server prefix:3333::1
    - public url of my DA and no DNS server
    - DirectAccess-NLS.internaldomain no DNS Server
    On the netsh dnsclient show state this is also strange:
    C:\Users\administrator>netsh dnsclient show state
    Name Resolution Policy Table Options
    Query Failure Behavior : Always fall back to LLMNR and
    NetBIOS for any kinds of errors
    Query Resolution Behavior : Resolve only IPv6 addresses for names
    Network Location Behavior : Let Network ID determine when Direct
    Access settings are to be used
    Machine Location : Inside corporate network
    Direct Access Settings : Configured and Enabled
    DNSSEC Settings : Not Configured
    It says it is inside corporate network but direct Access settings are "Configured and
    Enabled"
    Do you have some ideas ?

  • MOUSE_DOWN & MOUSE_UP events behaving strangely in firefox and internet explorer w/low framerate

    Basically what I'm seeing is that in Firefox and Internet Explorer only, using the latest flash plugins for each, when the framerate in my game drops due to a large number of display objects on screen (not unexpected behavior), MOUSE_DOWN and MOUSE_UP events seem to get queued up (this probably happens whether the framerate is low or not, but it doesn't have any adverse effects when the framerate is high). Flash will try to process every click that occurs, even though it can take up to several seconds. So, for example, if the user clicks the mouse 20 times in a second, but the framerate is running at around 5 fps, the game will be reacting to those clicks for around 3-5 seconds. It doesn't ignore any of them. This causes some strage behavior in our game and is not desirable. In the standalone flash player, and in Chrome browser, a large number of clicks in a short time frame does not have the same behavior. It seems to treat the most recent click with some priority, so it will cancel out a previous click. A single click in our game will cause an object to generate a path and move to the point on screen which was clicked (think point-and-click to move a walking 2D character).
    Since this behavior is so different in 2 browsers, could have something to do with how it's embedded, like the wmode parameter? That seems to be the only idea that comes up searching on Google. Is there some way in my code that I can forcibly make a new mouse_down get processed right away instead of waiting for previous events to complete?

    Ya, the problem isn't that events are coming in out of order, but rather they are somehow getting triggered at an unacceptably slow rate. It's not that the events are complicated. They merely set a boolean _isMouseDown to true and false (for MOUSE_DOWN, MOUSE_UP, respectively). But if I rapidly click, and then let go of the mouse, I'll see that boolean get set true,false,true,false,etc for a few seconds after I let go of the mouse. Why does this delay exist in Firefox and IE but not Chrome or the standalone player? It's almost as if Chrome and the standalone player let events be in their own thread while IE and Firefox, the events get held up, maybe because there is only one thread to use?

Maybe you are looking for

  • File transfer very slow with a SSTP VPN

    I have a serer in the office and I connect from my house through a SSTP VPN. In my home computer (client) I add a new network folder, this networkf folder is in the server, that has a shared folder. I can transfer files, but is very slow. For example

  • Problem with depreciation area (Incorrect currency exchange rate is used)

    Good day to all SDN forumers! I'm having a problem with one depreciation area that we set up. The reason why we configured this depreciation area is for us to enable to monitor all asset postings in another (group) currency aside from the local curre

  • Reader XI: after opening a pdf I get black areas in the doc when scrolling down

    Hello, I have a problem with acrobat reader XI after a new installation of my hdd. After opening a pdf, I get black areas in the pdf when I scroll down. The black area disspear when scrolling up. What can I do? Win7 Prof 64bit Many thanks in advance

  • Data flow using a WLAN controller

    Can someone explain the flow of data from wireless client to some destination in the internal network (or the Internet) using a WLAN Controller? Use a 4402 as an example. Specifically, I am wondering if client traffic actually passes thru the WLAN Co

  • Lenovo ThinkVanta​ge ToolBox v6.0.5692.​08

    Vista 32 ThinkCentre model 7484 CTO. ToolBox has worked fine until just a couple of days ago - I believe there was an update done. Now, everytime the computer is "on" the Toolbox constantly runs the scan - it runs to completion and within 2 minutes,