collection is unique

I set "i_gen_terms_list", defined as follows:
--Type:
create or replace
type T_ID_ARRAY as table of NUMBER(10);

--Parameter of Type:
i_gen_terms_list     in    T_ID_ARRAY;
It contains values from table GEN_TERMS of the ID column.
What is the most effective way to determine if the "i_gen_terms_list" collection contains some ID - s more than once?

The algorithm is:

(1) if "i_gen_terms_list" has at least one element in several positions, then return false, otherwise return true.
For example if i_gen_terms_list = {2,3} then algorithm should return true, because the elements of the collection are unique.
For example if i_gen_terms_list = {2.3.2} then algorithm should return false, because the items in the collection were not unique, element '2' there are more than 1 time.
For example if i_gen_terms_list = {}, then the algorithm must return true, because the collection is empty, so it has a unique content.

It would be perfect to use the fastest solution for this.

Following code is understandable to me, perhaps using this would give best solution:
in (select column_value from table(i_gen_terms_list))
Maybe the best way is to join intelligently givel last code with GEN_TERMS table? Or is the preferable plsql loop to determine uniqueness?

Are you looking for this?

scott@ORCL>
scott@ORCL>select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
PL/SQL Release 11.1.0.6.0 - Production
CORE    11.1.0.6.0      Production
TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
NLSRTL Version 11.1.0.6.0 - Production

Elapsed: 00:00:00.00
scott@ORCL>
scott@ORCL>
scott@ORCL>CREATE TYPE NUMBER_LST AS TABLE OF NUMBER(10);
  2  /

Type created.

Elapsed: 00:00:00.07
scott@ORCL>
scott@ORCL>
scott@ORCL>DECLARE
  2    num_array NUMBER_LST := NUMBER_LST(1,2,3,4);
  3  BEGIN
  4     IF num_array IS A SET THEN
  5        DBMS_OUTPUT.PUT_LINE('No duplicates found');
  6     ELSE
  7        DBMS_OUTPUT.PUT_LINE('Collection contains duplicates');
  8     END IF;
  9  END;
 10  /
No duplicates found

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.04
scott@ORCL>
scott@ORCL>DECLARE
  2    num_array NUMBER_LST := NUMBER_LST(1,1,3,4);
  3  BEGIN
  4     IF num_array IS A SET THEN
  5        DBMS_OUTPUT.PUT_LINE('No duplicates found');
  6     ELSE
  7        DBMS_OUTPUT.PUT_LINE('Collection contains duplicates');
  8     END IF;
  9  END;
 10  /
Collection contains duplicates

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.00
scott@ORCL>
scott@ORCL>

Kind regards.

LOULOU.

Tags: Database

Similar Questions

  • Alternatives to merge education using non-unique collection as a source

    I have some data from a collection that I need to insert into a table if it is found, update if found. So the merger should work. But, if the collection is not unique, I get "ORA-30926: failed to get a stable set of rows in the source tables ' if the table has rows or" ORA-00001: unique constraint violated "If the table is empty.

    My database and Setup

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    "CORE 11.2.0.4.0 Production."

    AMT for Solaris: 11.2.0.4.0 - Production Version

    NLSRTL Version 11.2.0.4.0 - Production

    Drop type vc256;

    create or replace type vc256 is table of the varchar2 (256);

    /

    drop table t is serving;

    create table t)

    v varchar2 (30) not null

    , n number not null

    , key primary constraint t_pk (v)

    )

    /

    declare

    c vc256: = vc256 ('apple', 'orange', 'apple');

    Start

    merge into t

    using s (select column_value table (c))

    on (t.v = s.column_value)

    When not matched then

    Insert (t.v, n)

    values (s.column_value, 1)

    When matched then

    setting a day the value n = n + 1;

    commit;

    end;

    /

    In the case of vc256 ('apple ',' orange', ' apple') I want to insert for the first "Apple" and "Apple" update for the second, I get error of pk violations if the array is empty or 'impossible to get a stable set of lines' if the table already has some lines. If the collection has unique elements, then the merge statement work.


    Is my online treatment option?

    Hello

    Sanjeev Chauhan says:

    I have some data from a collection that I need to insert into a table if it is found, update if found. So the merger should work. But, if the collection is not unique, I get "ORA-30926: failed to get a stable set of rows in the source tables ' if the table has rows or" ORA-00001: unique constraint violated "If the table is empty.

    My database and Setup

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    "CORE 11.2.0.4.0 Production."

    AMT for Solaris: 11.2.0.4.0 - Production Version

    NLSRTL Version 11.2.0.4.0 - Production

    Drop type vc256;

    create or replace type vc256 is table of the varchar2 (256);

    /

    drop table t is serving;

    create table t)

    v varchar2 (30) not null

    , n number not null

    , key primary constraint t_pk (v)

    )

    /

    declare

    c vc256: = vc256 ('apple', 'orange', 'apple');

    Start

    merge into t

    using s (select column_value table (c))

    on (t.v = s.column_value)

    When not matched then

    Insert (t.v, n)

    values (s.column_value, 1)

    When matched then

    setting a day the value n = n + 1;

    commit;

    end;

    /

    In the case of vc256 ('apple ',' orange', ' apple') I want to insert for the first "Apple" and "Apple" update for the second, I get error of pk violations if the array is empty or 'impossible to get a stable set of lines' if the table already has some lines. If the collection has unique elements then the merge statement works.

    Is my online treatment option?

    No.; Use MERGE, as you have suggested everything first.

    In the USING clause, resolve duplicates, so there is only a single "Apple", having the desired final value for column n.  (If I understand the problem, it is simply to COUNT (*) in a query with GROUP BY column_value.)

    Maybe:

    merge into t

    using ( Select column_value

    AS cnt ACCOUNT (*)

    TABLE (c)

    GROUP BY column_value

    ) s

    on (t.v = s.column_value)

    When not matched then

    Insert (t.v, n)

    values (s.column_value, s.cnt )

    When matched then

    setting a day the value n = n + s.cnt;

  • Dynamics of programming possible of tables in Oracle 10 g 2D or not?

    Hi all
    Is there the 2D tables in Oracle? and when not, how can I implement any algorithm of dynamic programming (a [Knapsack Problem | http://en.wikipedia.org/wiki/Knapsack_problem]) on the data that I have

    Thanks in advance

    Published by: ZiKaS on Dec 28, 2008 07:10

    Hello

    Combining collections of unique dimension, you can build a matrix of dimension 2, 3 or x:

    Declare
      type  typ_int is table of integer index by binary_integer ;
      type  typ_tab_int is table of typ_int index by binary_integer ;
      my_table typ_tab_int ;
    Begin
      for i in 1..10 loop
        for j in 1..5 loop
          my_table(i,j) := i * j ;
        end loop;
      end loop;
    End;
    

    François

  • Insert bulk collect unique VS

    Hi guys, just a quick question (I hope) on this subject.

    I have a table (T1) containing 4 000 000 ID lines (not all unique). I was going to create a cursor pulling to back all the distinct id of this table, find the id in T2 and then insert these T2 T3 data (the table to archive for T2).

    I was going to make this loop in bulk collect/forall, with some limits.

    It would be faster than a simple as DML below:

    INSERT into T3
    Select * from T2 where T2.id = (select distinct T1.id from T1);

    The id on T1 and T2 column is indexed and is the primary key, and I expect there to be about 130 000 inserts in T3.

    Hello

    If you want to find the optimal method, you need to watch the execution plans initially to see what the differences are. I was going to just post the following without checking exactly what the optimizer and I would have suggested...

    What you're likely to find for these two queries

    select t1.* from table1 t1
    where t1.id in (select distinct id from table2);
    
    select t1.* from table1 t1,(select distinct id from table2) t2
    where t1.id=t2.id;
    

    Unique or the hash is unique on the table2.  While with

    select t1.* from table1 t1
    where exists (select 1 from table t2
    where t1.id=t2.id);
    

    Likely a join semi without the need of a sort.

    However, I decided to check, and this is the result

    DTYLER_APP@pssdev2> create table table1 as select rownum id, lpad(' ',150) padding from dual connect by level <=1000000
      2  /
    
    Table created.
    
    DTYLER_APP@pssdev2> create table table2 as select * from table1;
    
    Table created.
    
    DTYLER_APP@pssdev2> insert into table2 select * from table1;
    
    1000000 rows created.
    
    DTYLER_APP@pssdev2> commit;
    
    Commit complete.
    
    DTYLER_APP@pssdev2> explain plan for
      2  select t1.* from table1 t1
      3  where t1.id in (select distinct id from table2);
    
    Explained.
    
    DTYLER_APP@pssdev2> select * from table(dbms_xplan.display)
      2  /
    
    PLAN_TABLE_OUTPUT
    ---------------------------------------------------------------------------------------
    Plan hash value: 1399795188
    
    ---------------------------------------------------------------------------------------
    | Id  | Operation            | Name   | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT     |        |   963K|    94M|       | 19284   (1)| 00:03:52 |
    |*  1 |  HASH JOIN RIGHT SEMI|        |   963K|    94M|    46M| 19284   (1)| 00:03:52 |
    |   2 |   TABLE ACCESS FULL  | TABLE2 |  1951K|    24M|       |  8156   (1)| 00:01:38 |
    |   3 |   TABLE ACCESS FULL  | TABLE1 |   963K|    82M|       |  4148   (1)| 00:00:50 |
    ---------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("T1"."ID"="ID")
    
    Note
    -----
       - dynamic sampling used for this statement
    
    19 rows selected.
    
    DTYLER_APP@pssdev2> explain plan for
      2  select t1.* from table1 t1,(select distinct id from table2) t2
      3  where t1.id=t2.id;
    
    Explained.
    
    DTYLER_APP@pssdev2> select * from table(dbms_xplan.display)
      2  /
    
    PLAN_TABLE_OUTPUT
    ---------------------------------------------------------------------------------------
    Plan hash value: 4031624413
    
    ---------------------------------------------------------------------------------------
    | Id  | Operation            | Name   | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT     |        |  1951K|   191M|       | 28606   (1)| 00:05:44 |
    |*  1 |  HASH JOIN           |        |  1951K|   191M|    46M| 28606   (1)| 00:05:44 |
    |   2 |   VIEW               |        |  1951K|    24M|       | 17473   (1)| 00:03:30 |
    |   3 |    HASH UNIQUE       |        |  1951K|    24M|    74M| 17473   (1)| 00:03:30 |
    |   4 |     TABLE ACCESS FULL| TABLE2 |  1951K|    24M|       |  8156   (1)| 00:01:38 |
    |   5 |   TABLE ACCESS FULL  | TABLE1 |   963K|    82M|       |  4148   (1)| 00:00:50 |
    ---------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("T1"."ID"="T2"."ID")
    
    Note
    -----
       - dynamic sampling used for this statement
    
    21 rows selected.
    
    DTYLER_APP@pssdev2> explain plan for
      2  select t1.* from table1 t1
      3  where exists (select 1 from table2 t2
      4  where t1.id=t2.id);
    
    Explained.
    
    DTYLER_APP@pssdev2> select * from table(dbms_xplan.display)
      2  /
    
    PLAN_TABLE_OUTPUT
    ---------------------------------------------------------------------------------------
    Plan hash value: 1399795188
    
    ---------------------------------------------------------------------------------------
    | Id  | Operation            | Name   | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT     |        |   963K|    94M|       | 19284   (1)| 00:03:52 |
    |*  1 |  HASH JOIN RIGHT SEMI|        |   963K|    94M|    46M| 19284   (1)| 00:03:52 |
    |   2 |   TABLE ACCESS FULL  | TABLE2 |  1951K|    24M|       |  8156   (1)| 00:01:38 |
    |   3 |   TABLE ACCESS FULL  | TABLE1 |   963K|    82M|       |  4148   (1)| 00:00:50 |
    ---------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("T1"."ID"="T2"."ID")
    
    Note
    -----
       - dynamic sampling used for this statement
    
    19 rows selected.
    

    So, this shows that the IN has been transformed into EXISTS and there is no need of unique hash or sort. The version with the inline view was not transformed in the same way and required the unique HASH. So with this in mind, it would seem that this query 2 is the least effective, because it requires the additional unique operation.

    HTH

    David

    Published by: Bravid on 13 Sep 2011 09:55

    Published by: Bravid on 13 Sep 2011 09:56

  • Unique constraint during the race error collecting statistics of schema

    Hello
    I get this error periodically during execution to collect statistics of schema
    In GATHER_SCHEMA_STATS , schema_name= ALL percent= 40 degree = 8 internal_flag= NOBACKUP
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    Unable to correctly update the history table - fnd_stats_hist.
    -1 - ORA-00001: unique constraint (APPLSYS.FND_STATS_HIST_U1) violated
    I went thru notes 470556.1 , but I have not applied patch 5876047 according to the note.

    I can truncate table FND_STATS_HIST? Is it safe to truncate this table?

    Thank you
    ARS

    Published by: user7640966 on January 2, 2011 23:58

    Hi Ars;

    If I suggest his prod, make sure you have a valid backup of your system and also raise sr and confirm with oracle support. If you are on the clone or test, such as mention of doc first to backup table FND_STATS_HIST (make sure that you have a valid backup), truncate and repeat the test question

    Respect of
    HELIOS

  • Several filters for a unique Collection?

    Hello

    This has probably been covered in detail.  If so, please tell me, because I was not able to find it.

    What is the best way to display several multiple filtered views of a collection in MXML?  The problem I face, is that you can't apply filters to repeaters, lists, etc. However, if you apply only a single filter directly to the collection.

    Let's say I have a collection of "vehicles" and I want two grids of data based on this unique collection.  A data grid displays only the trucks and the other shows, only cars.  What would be the best way to do this in MXML * with * binding?  If I add a car to my collection, so I want this new car automatically appears in the cars, not trucks grid grid, etc.

    This one has been dogging me for awhile.  Maybe there's a simple solution?

    Thank you!

    There is!

    Keep your original collection, call the vehicles.

    Then wrap your collection in two different ListCollectionViews

    i.e.

    var car: ListCollectionView = new ListCollectionView (vehicles);

    var vans: ListCollectionView = new ListCollectionView (vehicles);

    Now, you can sort and filter the cars and vans separately without any of the original collection.

  • Collections [PL/SQL] table with a unique index

    Hello

    Is it possible to create a table with a unique index collection?

    example:

    declare
    type tabletype is the table of non-null number IN directory INDEXES;
    tabletype_nummer tabletype;
    Start
    tabletype_nummer (1): = 1;
    tabletype_nummer (2): = 2;
    tabletype_nummer (3): = 2;
    end;

    2nd and 3rd index have the same value.
    so he could not fill the index 3.

    Thank you.
    Ludo

    Published by: Ludock on December 10, 2009 11:36
    The unique index should be the value.

    Yes, he is not required to start the index within the collection of 1... regardless of the number...
    Here put your index to the collection and the value of the collection as even... so you can launch it from 12 to...
    Him even when modified a bit

    DECLARE
    type tabletype
    IS
      TABLE OF NUMBER NOT NULL INDEX BY BINARY_INTEGER;
      tabletype_nummer tabletype;
      v_num  NUMBER;
      v_num1 NUMBER;
    BEGIN
      v_num                   := 12;
      tabletype_nummer(v_num) := v_num;
      v_num                   := 2;
      tabletype_nummer(v_num) := v_num;
      v_num                   := 2;
      tabletype_nummer(v_num) := v_num;
      v_num                   :=5;
      tabletype_nummer(v_num) := v_num;
      v_num1                  :=tabletype_nummer.First;
    
      WHILE v_num1            IS NOT NULL
      LOOP
        dbms_output.put_line(v_num1);
        v_num1 := tabletype_nummer.Next(v_num1);
      END LOOP;
    END;
    

    I assigned collection it beginning with 12 and next 2 I assigned twice and 5 next time... So now, if you check the o/p, you will get 2,5,12 which are distinct values, you want to store in the collection.

    Ravi Kumar

  • Signature unique app &amp; upgrade later to complete collection

    Hi, it seems I've been going around in circles in the Adobe and forums FAQ trying to get an answer for this.

    I intend to start a subscription for a single application paid on a monthly basis (eg. Premiere Pro) since my 1 month trial took end. I try other applications like Lightroom & After Effects and probably more after that. It seems sensible to subscribe for full membership CC of I take at least 3 of them. My question is, since I'll already be a 12 month subscription for the first application, I would still be able to switch to all the CC members after the first or second month to launch a fresh 12 month on full CC subscription without penalty on my first subscription on the single application?

    Appreciate any answer that. Thank you.

    Of course, you need to cancel App single subscription place new order and for full subscription of CC

    There is no charge if you upgrade plan.

    For more details, you can contact the Support from Adobe:

    Click always need Help (help), and then select the Chat option.

    Contact the customer service

  • Why some of my albums mixed (alternating) "Permanent Collections" in particular?

    I found some of my albums are mixing (tracks, replacing) "Permanent Collections" in particular. How can I fix this?

    On an iPod classic each separate album must have a name unique album. When two different artists have an album with the same name, I use the < Album > - < artist > naming scheme. For more information, see grouping of tracks in albums .

    TT2

  • Collect data with FIfO capabilities

    Hello

    I would lke to collect the data of my unique analog input in a table to create a waveform after, for this I used FOs features

    Here is my code

    If someone has an idea. Please help cause t see how to put my data in a table in order to create a waveform

    Thanks in advance for your answers

    My sincere regards

    Something like that...

  • How can I change the color of the plots (lines, points) in the collection Scattergraph plot

    For example, I go through a foreach loop and draw two points. How to distinguish this set of plots of the yet to come? How can I change the style, color and have separate lines (instead of on the line connecting everything) for each of my plots? I don't know how to set everything up, but it still does what he wants to do. TIA.

    Hello

    The problem you see occurs because of the following lines of code:

    The _data and _data2 scatterPlot3 value

    _data = scatterPlot3

    _data2 = scatterPlot3

    When you do this, you define _data as _data2 to reference an object of the simple concession - scatterPlot3.  Yes, even if you have (from the code you have posted at least) three slots in your collection, they are all pointing to the same object of point cloud.  So when you change the color for one, it changes the color for them all.  However, I think that you have fallen on the right solution in your last sentence.  If you want to have multiple locations on your ScatterGraph, each with its own color and style, they should each be separate and unique plots in the collection plot of your ScatterGraph.  Based on the code you posted, you'll see this if you comment just the two lines shown above.

    Please let me know if something is still uncertain.

    NickB

    National Instruments

  • Persistent for the subtraction of the background image collection (how to get the maximum value of each pixel in a series of images IMAQ)

    Hi all

    I have a system of LabVIEW which takes advantage IMAQ tools and features of the Vision Development Module.  A useful feature that I put in place is to be able to take a snapshot of the video stream and then subtract this single image among the subsequent images.

    What I want to do is to collect a series of images instead of one, and then create a unique image of these frameworks is just the maximum value of pixels in each pixel (a bit like a display persistent).

    It would probably be very easy to be implemented by converting the image to a table and then by doing math number on the table and then turning into an image, but I hope that someone here may know how to use the IMAQ/VDM tools to do this in a way more compact.

    Thank you very much

    MK

    How about using Max comparison IMAQ operation?

  • Troubleshooting external video and thread unique docking station

    Try to group all threads dock into one video.  This will help me to collect information on what is and is not working there, and get it to engineering to solve.    I will edit this first post to maintain the all updated in one place.  This should make it easier to find information in the future.

    Steps to follow before reporting a problem:

    (1) check the revision on your dock.   If you look at the bottom of the docking station, you will see a variety of labels.   The PPID label is on the right side of the group labels and will include a number of review at the end.   Make sure you have a revision A01.   If you A00, and if the video does not work after trying the remaining steps in this guide, please contact support and have your A00 with A01 replaced.

    (2) be sure to update your device to the latest version of the BIOS (currently the A11 for the 713 x) and A07 for the 5130.  For the 713 x, select the version appropriate for your product.

    (3) upgrade to the latest version of the video driver.   It is currently for the 713 x 3496 and 3366 for the 5130 (note that this driver 5130 is packaged in A06 chipset driver).

    (4) connect your monitor (s) to the docking station.   The preferred method is to use directly DP to DP or HDMI to HDMI cables.   Dongles will work, but note that the DP dongles must be 'active '.   DP ++ (non-active) dongles will not work with this docking station.   Passive HDMI dongles are OK.   Use dongles and cables of good quality.   Monitors must be HDCP.

    (5) turn on monitors and set up an external video via the options of the Intel graphics driver or the WIndows Devices/project option.   The 5130 will support the LCD + external display a screen (two screens can reflect the content if you wish).  713 x will support the LCD + two external displays (each unique content display).  713 x will support daily chained DP 1.2 monitors.  Two external monitors can operate at FHD (1920) and one external monitor through DP can support 2560.

    (6) at this point, your external monitor should work.   If this is not a couple of additional troubleshooting follow the steps.

    6.1) remove and reinsert the cable from the monitor at dock.

    6.2) to ensure that the current dock is good (the LED on the front of the docking station must always be on when power is present)

    6.3) make this monitor has good source of selected entry and that the wiring is routed to the appropriate ports.

    6.4) compressed Undock and redock to see if a change occurs.

    6.5) 6.5) for tablets of 713 x, try to roll back the driver A00 video 3316 to see if that makes a difference.

    (7) if the video still does not work as you expect, please post in this topic with the following information.

    (7.1) the confirmation that you have tried the steps above and that you have indeed an A01 docking station.

    7.2) of the make and model of your monitor (s).

    7.3) information (e.g. How is everything connected) configuration

    7.4) If you use several dongles, brand and model of the dongle if known

    7.5) problem specific (s) you encounter.

    Pay attention to the updates to this thread that develops information.   I'll update below tables quite frequently - I need to dig up the test reports and add all this information here soon.

    List monitors confirmed the function:

    1907WPc (DVI)
    2007WFPb (DVI)
    2407WFP (DVI)
    E248WFPb (DVI).
    P2213 (DP, DVI)
    SP2208WFPt (DP/DVI)
    U2410 (DVI/HDMI/DP)
    U2413 (DP)
    U2711 (DVI/HDMI/DP)
    U3011

    List of monitors who may have questions:

    U2312 (DP to DP) - no video sync with 3412, seems to work with 3316.
    U2412M same as U2312
    ST2220L (HDMI to HDMI) - not detected after dock power removed/reinserted.   Workaround is to remove HDMI and power of dock, plug in power first and then HDMI.
    ST2340t (HDMI to HDMI with USB 3.0 touch) - Tablet believes monitor USB after the suspension/recovery

    Acer G246HL - DP flickers / picture does not fill the screen (with active ingredient DP dongle cable), another where monitor does not work.

    Dell E198FPf - DP flickers / picture does not fill the screen (with active ingredient DP dongle cable).

    NEC LCD17V-BK - DP flickers / picture does not fill the screen (with active ingredient DP dongle cable).

    ViewSonic VA702b - DP flickers / picture does not fill the screen (with active ingredient DP dongle cable).

    Acer AL1716 - DP flickers / picture does not fill the screen (with active ingredient DP dongle cable).

    E2209Wc - work via HDMI, but not through DP

    AOC E2450SWH - HDMI works fine, DP to HDMI (Astrotek AT-DPHDMI-MF Active) flashes.  DP to VGA (Comsol DP-VG-AD) flashes.   Persistence concerns.

    Dell P2314H - DP to DP - delay important, does not at all or its blinking.

    Dell P2314H - DP to DP - long delay for monitor DP to come after that HDMI works.   OK with monitor power off.

    E2209Wc - DP/DVI displayport topology looks but monitor will not work.

    Dell P2414H - DP only works 10% of the time

    Dell P2210 reference - DP only works 10% of the time

    Dell P2210f, 2210-t, 2210Hc - do not work DP to DP

    Dell E220Wf - won't work not DP/DVI

    Dell 2009Wt - won't work not DP/DVI

    Reference Dell 2213 - some work, some don't?

    Dell U2413 - no video via active DP HDMI adapter, works very well with the right RFP

    Dell 2414Hb & failure 2009Wt - DP to DP - Dell to detect again after cycle dock, only mirrors, extend.

    HP LA1951g - flicker when using VGA, OK with HDMI/DVI

    P2210f - OK with DP DP, problematic in the case.

    Dell U2412m - does not work with DP

    Dell S2240M - does not work with DP to DVI active

    P2314H - DP to DP fails to reconnect after sleep cycle

    List of dongles confirmed the function:

    Questions cable gold plated active DisplayPort to HDMI male/female adapter (tested on 7130)

    Questions cable gold plated active DisplayPort to DVI male/female adapter (tested on 7130)

    Bizlink Dual Link DP to DVI (out of stock at the moment)

    List of dongles confirmed having problems:

    Any DP ++ (passive) dongle - dock can't DP ++ (passive) DP dongles.

    Thank you!

    What do guys for the monitors to u2312 and u2412?

  • IPS of ASA journals collection

    Hello

    How can I collect newspapers of the IPS of the ASA? My firewall is ASA 5515 x, 9.1 (5) with module version IPS 4,0000 E4. Please let me know the commands to view the logs of IPS, also, how can I monitor these logs?

    Kind regards

    Martin

    You must use either:

    a. Device Manager IPS (basically ASDM pointed toward the IPS vs ASA address address and used real time connect to the visualization and the configuraiton)

    (b) IPS Manager Express (keeps newspapers even when not active GUI, allows to manage several IPS), or

    cisco Security Manager.

    The first two are free tools for IPS unique or small facilities, and the third is a licensed - the company-wide product.

  • How to generate a unique global identifier?

    I was sure that this would be covered somewhere, but couldn't find it.  I was wondering if there is any standard way to create some sort of unique identifier, a little in the world?  I'm trying to collect data from my application and I try to avoid collecting everything that would be personally identifiable to a particular device.  On other platforms, there is the notion of a GUID.  Is something like this provided out of the box?  At the present time, the best thing that I came up with is cat a bunch of long random set that seems kind of hoaky.

    Thanks for reading this,

    -Henry

    Take a look at the class: net.rim.device.api.synchronization.UIDGenerator

Maybe you are looking for

  • Satellite L750D - 1 DM-outdated display driver

    Hello I have a question, any1 know if theres going to be some new display drivers because the generic drivers from AMD.com work not and those who here are pretty obsolete? Also, I've updated the laptop with a 2gig RAM booster and wanted to give the g

  • HP Officejet 6600: Cannot scan

    My printer works wirelessly and my scanner does not work, now it doesn't. It is said to ensure that the feature is enabled. How? It says software Open HP printer, select actions scanned, and then select Manage scan of the computer. I can't print to H

  • CL Cap Svs Module has stopped working.

    Start up - a window will appear - ' CL Cap Svs Module has stopped working - Windows will close the program and notify if a solution is available. " No not solution - Windows Vista Home Premium. Crashing in Flash Player custody - is that you connected

  • Monitor flicker/breaking

    Hi - I'm running Vista Ultimate on a Dell Dimension 5150. A couple of days, the screen started to wobble and break up, it became so bad I can only boot into safe mode. The graphics card is a NVIDIA GEFORCE 8600 GT, I cleaned the fan, but it made no d

  • Windows does not accept the product key

    Windows do not accept key, iam downgrade from windows 7 ultimate to windows 7 Home premium product.