Does EDQ support MINUS set operation

Hi
I would like to implement a MINUS set operation using EDQ - is this possible in EDQ?
For example, I have duplicate records in my input set and I can use the group and merge processor to generate the unique records (btw, it selects the lowest id of the duplicate records) but I want to output all the other duplicated records (that were eliminated as part of group and merge processor) as part of separate output list so some cleanup action  can be taken on those records.
For eg for following input set:
id  code
1   code1
2   code 1
3   code 2
The output of group and merge (merge is done by code) is
id code
1  code1
What I want is to store the following output (that was discarded by group and merge) for cleanup actions later - how I can achieve this using EDQ?
id code
2 code1
Thank you for your time.
Thanks,
Priya

Thanks Mike. Good to know about other configurable options under Merge BUT I'm still not sure how can I get a list of "other" duplicated values - other than the one that is the output of Group and Merge processor.
Once again, my input data set is something like
<id>  <code>
1       code1
2       code 1
3       code 2
The output of group and merge (merge is done by code and it uses the default to select the lowest id or first one available) is
<id> <code>
1      code1
(The above default behavior for the Group and merge is fine for our example.
BUT, What I want is to store the following output (that was discarded by group and merge) for cleanup actions later - how I can achieve this using EDQ?
<id> <code>
2      code1
(As you notice, code1 is duplicated twice in the input data set and I want to write to the output the other record - meaning id=2 in the above example)
Thanks,
Priya

Similar Messages

  • Target data source does not support the AGO operation

    Hi,
    In BI Admin Tool, I join Essbase cube and relational source. Then I apply Ago function to Essbase measures. In BI Answer, I try to run query that includes Essbase Ago measures and relational columns(non measures), error message shows the following detail:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 22001] Target data source does not support the AGO operation. (HY000)
    When I remove the relational columns or run Essbase current-date messures, the result is fine.
    So, what's exact meaning of this error message? and does the relational columns (non-measure) support Essbase measures' Ago function?

    to clarify:
    fail case:
    criteria
    YEAR | YTD,gen03 | MONTH_NAME | SALES(YEAR_AGO)
    cube dimension: year, ytd,gen03
    relational source: month_name
    cube measure using AGO(): sales(year_ago)
    result: error messageSuccess case:
    criteria
    YEAR | YTD,gen03 | SALES(YEAR_AGO)
    cube dimension: year, ytd,gen03
    cube measure using AGO(): sales(year_ago)
    result: success~! how can i solve it? thx

  • HT2371 Does apple supports to set "Telugu"as the default language?

    Does apple supports to set "Telugu"as the default language?
    What are other indian languages supported by Apple  iphone?

    These are the supported languages:
    English (U.S.), English (UK), Chinese (Simplified), Chinese (Traditional), French, German, Italian, Japanese, Korean, Spanish, Arabic, Catalan, Croatian, Czech, Danish, Dutch, Finnish, Greek, Hebrew, Hungarian, Indonesian, Malay, Norwegian, Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Slovak, Swedish, Thai, Turkish, Ukrainian, Vietnamese
    These are the supported Keyboards:
    English (U.S.), English (UK), Chinese - Simplified (Handwriting, Pinyin, Stroke), Chinese - Traditional (Handwriting, Pinyin, Zhuyin, Cangjie, Stroke), French, French (Canadian), French (Switzerland), German (Germany), German (Switzerland), Italian, Japanese (Romaji, Kana), Korean, Spanish, Arabic, Bulgarian, Catalan, Cherokee, Croatian, Czech, Danish, Dutch, Emoji, Estonian, Finnish, Flemish, Greek, Hawaiian, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Latvian, Lithuanian, Macedonian, Malay, Norwegian, Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian (Cyrillic/Latin), Slovak, Swedish, Thai, Tibetan, Turkish, Ukrainian, Vietnamese

  • Just changed my router to Airport. Mac  Lap top and IPad works OK except my VAIO desk computer. It says that airport does not support the setting of the computer. Check the security setting. Whar

    Just changed my router to airport extreme
    My MacBook pro and iPad work fine but my VAIO wireless  desk computer is not working.
    It says
    , the router does not support the network .check security setting.
    Which of the security setting will I change?
    Thanks for your help.

    John, thanks for the email so quickly.
    I too hope I haven't tried "everything" either but I am reasonably technical.  I had done what you suggested to do before but I did both again.
    Ethernet is yellow in the left side bar.  In the right pane it's status says Connected but then below it says "Ethernet has a self-assigned IP address and will not be able to connect to the Internet."
    I have tried the assist me menu and Network Status has Ethernet Green, Network settings Yellow, ISP Green, and Internet and Server Red and Failed for both.  I have turned things off and on, checked cables, deleted all locations and tried restting them up but to no avail.  I even disconnected everything and connected the mac directly into the cable modem itself and the thing still will not connect.
    Thoughts???

  • Finding duplicates:Minus set operator in dealing with internal tables

    Dear experts,
    I am newbie to ABAP developement,i have been given an assignment to find the duplicate list of vendors in lfa table.
    Now duplicate list doesnot means that text tokens will be just exact to conclude them as duplicate ,it could also be like
    1111 Vendor ABC
    1222 ABC Vendor
    If anybody has clue ,how to work on such a problem ,plz come forward.
    Right now i just tried initially how to find exact duplicates,i found  on change command,it do works.
    Then i am trying a new way which should just do the same thing.
    I did as per this algorithm
    1.Compute wholesome list in one internal table itab1
    2.Used delete adjacent duplicates in itab2.
    3.I feel itab3=itab1-itab2 will contain all duplicates in itab3.
    Can anyone give me a hint.How can i do A-B ?.

    Hi Arul,
    There is no special aided SET operations upon internal tables in ABAP. Concerning your particular task I would say that you can try INSERT statement for each record in your internal table without preliminary comparing them with DB table. If there is a record in DB table with the same key then sy-subrc after INSERT will be non zero (actually 4) and no real insert would occur. So, only those records would be inserted which have no counterpart in DB table.
    Best regards, Sergei

  • Change a MINUS set operation to JOINS?

    Hi guys,
    I have a question about an SQL statement that I have to do. The complexity is big (lots of tables), but the problem can be resumed to this. Imagine I have the following query:
    SELECT t.x
      FROM the_table t
    WHERE t.y = 'a'
    MINUS
    SELECT t.x
      FROM the_table t
    WHERE t.y = 'b'In my original statement, I don't have only one table but many. But the issue is the same. I select a set of data and I minus the same statement with another criteria. I tried with some OR combination but never had the same result...
    Does anyone have an idea?
    Thanks,

    Please post a realistic example that demonstrates your problem. As Nikolay stated your MINUS isn't even needed making what you posted useless in trying to understand what you need to do.
    So for starters post the following:
    1. What Oracle version you are using for each server.
    2. How many servers are involved.
    3. Is this a new process or a current process that has performance or other issues? If a current process how is it being done now? What are the issues?
    4. A statement of exactly what you are trying to do; not how you think it ought to be done but what the goal is.
    5. A realistic example with actual tables, columns and queries
    6. How many columns are there in the result set?
    A sample set of source data and the set of result data you want to produce from that source.

  • Does Safari support the lazy operator in a JavaScript regular expression?

    I've already filed a bug for this. Anyway I'd like to know if you already knew it.
    If you go to http://noteslog.com/personal/projects/regexp/test.html you'll see an input box and a "Go!" button. Put a JavaScript regular expression in the box and click the button. Shortly you'll see a red line showing how many characters have been matched.
    If you try
    \[\w\W\]
    you get a correct result (all matched)
    but if you try
    <\?\[\w\W\]*?\?>
    you get a wrong result (nothing matched) and the issue is due to the fact that the ? after the * is not treated as a laziness operator.
    Test in IE, FF, and Opera too, and you'll see that they work as expected.
    Message was edited by: Andrea Ercolino

    If you try it from http://regexpal.com/ you'll see that it works as it should in IE and FF but not in Safari.
    Message was edited by: Andrea Ercolino

  • Edge Animate does not support Windows Vista operating system.

    Vista is not that obsolete, what the heck.

    Mainstream support from the host vendor (Microsoft) is not there, so you can imagine it is not in the best interest of software developers to do the same.
    Darrell

  • Does java support file seeking operation?

    Just like MFC CFile::Seek or API seekp.
    What I want to do is to write on indicated position in the file.

    Maybe the RandomAccessFile class will help you ...
    Nicolas

  • Set operations

    Does SEA toolkit allow set operations on subagent managed objects?
    We have installed SEA on our system and running demo subagent. But our Manager is refusing to perform any set operations on any of the variables on our system saying it is read only.

    Yes it does, at least Version 1.0.3 from the SEA SDK that I was using to create my SNMP subagent. Either you MIB is wrong or you failed to code the set callback functions correctly.
    Just my $0.02...

  • Help on use of minus set command

    Hi everyone,
    I have a challenge using minus to eliminate one-for-one occurence of records between 2 tables. The second table can contain duplicate entries.
    What I want is - for every single record in table 1, I want to minus a single occurrence of the same record in table 2 even if there are 2 or more of that record in table 2.
    I will appreciate any form of guidance.
    Thanks

    You won't be able to just remove the first instance from the second set using just the minus set operator as that will result in distinct values.
    You would have to number the occurences somehow and just remove the first that way e.g.
    SQL> ed
    Wrote file afiedt.buf
      1  with t2 as (select 2 as num from dual union all
      2              select 1 from dual union all
      3              select 2 from dual union all
      4              select 3 from dual union all
      5              select 4 from dual union all
      6              select 2 from dual union all
      7              select 3 from dual union all
      8              select 2 from dual)
      9      ,t1 as (select 1 as num from dual union all
    10              select 2 from dual)
    11  --
    12  -- end of test data
    13  --
    14  select num
    15  from (
    16        select num, row_number() over (partition by num order by 1) as rn from t2
    17        minus
    18        select num, 1 from t1
    19*      )
    SQL> /
           NUM
             2
             2
             2
             3
             3
             4
    6 rows selected.
    SQL>

  • The requested operation could not be performed because OLE DB provider "MSOLAP" for linked server does not support the required transaction interface.

    I am getting the following error when attempting to INSERT the results of an "EXEC(@MDXQuery) at SSAS LinkedServer":
    The requested operation could not be performed because OLE DB provider "MSOLAP" for linked server does not support the required transaction interface.
    Here is code that illustrates what I am doing:
    DECLARE @MDX varchar(max);
    SET @MDX='
    SELECT
    [Measures].[Extended Service Count]
    } ON COLUMNS,
    NON EMPTY [Organization].[By Manufacturer].[Manufacturer]
    ON ROWS
    FROM (
    SELECT
    {[Organization].[Org Tree].&[2025],[Organization].[Org Tree].&[2040]} ON 0
    FROM [MyCube]
    /* Test 1 */
    EXECUTE(@MDX) at SSASLinkedServer;
    /* Test 2 */
    DECLARE @ResultsB TABLE (
    Manufacturer varchar(255)
    , ExtendedServiceCount float
    INSERT INTO @ResultsB (Manufacturer, ExtendedServiceCount) EXECUTE(@MDX) at SSASLinkedServer;
    Test 1 succeeds, returning expected results, and Test 2 fails returning the error mentioned above.
    Other articles I've found so far don't seem to apply to my case.  I am not creating any explicit transactions in my code.   When I use OPENQUERY, I am able to do the insert just fine, but not when I use EXEC @MDX at LinkedServer.
    Unfortunately in some variations of the query, I run into the 8800 character limit on OPENQUERY, so I need to use this other approach.
    Any ideas?
    -Tab Alleman

    Hi Tab,
    In this case, SQL Server Analysis Services doesn’t support Distributed Transactions by design. Here is a similar thread about this issue for your reference, please see:
    http://social.technet.microsoft.com/Forums/en-US/8b07be45-01b6-49d4-b773-9f441c0e44c9/olaplinked-server-error-msolap-for-linked-server-olaplinked-server-does-not-support-the?forum=sqlanalysisservices
    One workaround is that use SQLCMD to execute the EXEC AT command and saved the results to a file, then import using SSIS.
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Exchange 2007 New Install Error - Read only MultiValuedProperty does not support this operation

    Existing Server/Exchange 2003 environment. New 2003 R2 x64 server fully patched and updated with no other apps installed attempting to install Exchange 2007 SP2.
    Initially I was getting the error "Could not find the default Administrative Group ‘Exchange Administrative Group (FYDIBOHF23SPDLT)’". This I
    fixed by completely uninstalling per this Microsoft article,
    this Microsoft FixIt article and this recommended blog post, ending with
    setup.com /preparead. I'm making progress, because now I'm getting a new error attempting the install. Specifically, Hub Transport installation fails with "Read only MultiValuedProperty does not support this operation."
    Executing
    setup.com /prepareSchema fails. I've set the msExchVer attribute for CN=Offline Address Lists to 4535486012416 and gotten no change, the install still fails. This
    Googled page exactly describes my problem, and all anyone could say was to add this version number. It doesn't work. Pretty much none of the threads I've read have a resolution beyond this. I'm stumped, any help would be greatly appreciated.

    What's the error message when executing  setup.com /prepareSchema fails? failed at Organization Checks?
    Could you please check whether you are on the right schema version?

  • Adobe Creative Cloud does not support Bootcamp by Apple IOS operating system, but does work with boot camp Win 8.1 why"

    Adobe Creative Cloud does not support APPLE latest IOS operating system, but does allow Windows 8.1 to be accepted. This seems a shame to me, as
    Apple IOS is the leader in graphics, photography. The advertising states it is usable under both APPLE IOS and Microsoft 8.1 windows operating systems. Adobe Support Chat Sooraj tells me on 02/19/2015 that i must buy two computers to have it operate on both operating systems. Adobe will not support apple's Boot CAMP allowing both operating systems.
    i love the apple product and love the ADOBE Photoshop CC, but it simply does now work with an apple keyboard and a WiN operating system. .[email protected]  Adobe Creative Cloud

    In Thehatters defence, this was initially posted in the MacbookPro forum and then moved to Boot Camp,
    If you have any joy solving your trackpad device driver issue, feel free to post here (there might be a similar fix for my  wireless adapter device)
    Thanks

  • I have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this?

    i have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this

    Try downloading the trial. It ought to detect that you have a 64-bit system.
    You aren't using Vista, are you? PSE 13 requires at least win 7 and I think a few folks with vista have gotten a similar error message on trying to install it.

Maybe you are looking for

  • Win 7 cannot load in boot camp

    Hey experts!! Need help... I have successfully installed bootcamp win7 on my mbp 2009 model intel 2nd Gen. I have installed all the programs and it was running great then I wanted my MBP win 7 trackpad to be like mac gesture so I googled and found th

  • Laptop with Nvidia gt750m. Sufficient for real time playback in Premiere CS6?

    I'm on the verge of buying a new laptop with the following specs: i7 4700MQ 16GB RAM @ 1600 mhz 1TB 7200 rpm drive 120 GB SSD Nvidia GT750m GPU 15.6 inch IPS display I'm sure these specs will be more than sufficient for editing and grading Full HD DS

  • InputOutput error when importing SCORM 1.2 compliant content in OLM

    I'm attempting to import SCORM 1.2 content (from UPK) in OLM and I continue to get the error "The content upload failed (InputOutput error)". We've tried it on 9ias, AS10g, all give the same error. We used the SCORM example from Oracle, replaced the

  • Final Cut Pro X exporting issues

    So, I'm attempting to export a video from FCPX (Version 10.0) and every time I try to export it (from any of the possible choices) it continues to give me this error message The operation couldn't be completed. (com.apple.Compressor.CompressorKit.Err

  • Problem in uploading image greater than 500KB

    This is a servlet method which is being called by the doGet() or doPost() method. I have developed this code to store an image in sql server 2005. This code is working very fine with image size < 500 KB but when i try to upload a file of even 501 KB