find several tables unmatched records

Dear Experts,

create the dealer table

(

merchant_id varchar2 (20) primary key,.

amount varchar2 (20).

mobile_num varchar2 (20)

);

Insert the values merchants (536416728285,500,1111111111);

Insert the values merchants (536416026542,5000,2222222222);

Insert the values merchants (536416241123,9999,3333333333);

Insert the values merchants (536416020491,3000,4444444444);

Insert the values merchants (536416494926,1000,5555555555);

commit;

create the table host_tran

(

merchant_id varchar2 (20).

mobile_num varchar (20),

host_desc VARCHAR2 (100)

);

insert into host_tran values (536416728285,1111111111, "impossible to deal with, please try after some time;) 11/12/2015 10:24; TRANID:531610338284');

insert into host_tran values (536416026542,2222222222,' credit is successful; 5000; 18:42 11/11/2015;) TRANID:531518114706; BID:C4304405');

insert into host_tran values (536416241123,3333333333,' credit is successful; 9999; 19:23 11/11/2015;) TRANID:531518114707; BID:C4304405');

insert into host_tran values (536416020491,4444444444, "impossible to deal with, please try after some time;) 11/11/2015 18:44; TRANID:531518137374');

insert into host_tran values (536416494926,5555555555,' credit is successful; 1000; 19:23 11/11/2015;) TRANID:531518114708; BID:C4304405');

COMMIT;

ALTER TABLE host_tran

ADD CONSTRAINT fk_merchant

FOREIGN KEY (merchant_id)

REFERENCES merchant (merchant_id);

create the table TRAN_LOG

(

TRANID varchar2 (20).

tran_mobile_num varchar (20),

tran_status varchar2 (20).

amount VARCHAR2 (100)

);

SELECT * FROM TRAN_LOG

insert into tran_log values(531610338284,1111111111,'FAILED',500);

insert into tran_log values(531518114706,2222222222,'SUCCESS',5000);

insert into tran_log values(531518114707,3333333333,'SUCCESS',9999);

insert into tran_log values(531518137374,4444444444,'FAILED',3000);

insert into tran_log values(531518114708,5555555555,'SUCCESS',1000);

COMMIT;

Select merchant_id, amount of merchant and host_tran table using corresponding merchant_id and

Select tranid and amount of host_desc in the column host_table column (credit is successful; 5000; 18:42 11/11/2015;) TRANID:531518114706; BID:C4304405)

Second, match the tranId and the amount that is extracted from host_table with tran_log table and tran_id corresponding and unmatched to display

DESIREE OUTPUT

UNMATCHED TRANID

TRANID

531610338284

531518137374

Help, please

your regex was wrong for successful test suite

Select t.TRANID, t.amount, t.tran_mobile_num

Of

TRAN_LOG t, host_tran h, merchant m

where t.TRANID = regexp_replace (host_desc,'. * TRANID: (\d+);.) *','\1')

and host_desc like 'Credit is successful %.

and m.merchant_id = h.merchant_id;

Tags: Database

Similar Questions

  • outer join when there are several tables are involved

    Could not put up the question correctly to the last channel, my problem is with the join when there are several tables are involved, this is just one example of the task that I have to carry.

    Tab1 aura model id retailer_id information for all the weeks (from the first Monday) of the month of JUNE with cost and Helen

    Tab1

    model_id

    retailer_id

    sell_date

    cost

    Helene

    1

    12

    June 3, 13

    100

    40

    1

    12

    June 10, 13

    200

    20

    1

    12

    17 June 13

    300

    20

    1

    12

    24 June 13

    400

    20

    2

    12

    June 3, 13

    300

    10

    2

    12

    June 10, 13

    200

    20

    2

    12

    17 June 13

    300

    20

    2

    12

    24 June 13

    400

    20

    Tab2:

    each retailer belongs to a dealer, under the table has the same information

    retailer_id

    Dealer_id

    12

    100

    13

    100

    14

    101

    15

    101

    16

    101

    Tab 3

    There is a third layer where each dealership is having a garage band

    Dealer_id

    Dealer_group

    100

    1001

    101

    1001

    102

    2001

    103

    2001

    104

    3001

    105

    3001

    Tab4:

    Of this table for each model and dealer discount information for the month of June (every week)

    model_id

    Dealer_group

    discount_date

    discount

    1

    1001

    June 3, 13

    10

    1

    1001

    June 10, 13

    20

    1

    1001

    17 June 13

    10

    1

    1001

    24 June 13

    30

    2

    1001

    June 3, 13

    10

    2

    1001

    June 10, 13

    20

    2

    1001

    17 June 13

    10

    2

    1001

    24 June 13

    30

    3

    2001

    June 3, 13

    10

    3

    2001

    June 10, 13

    20

    3

    2001

    17 June 13

    10

    3

    2001

    24 June 13

    30

    Master_info:

    It's the main table which is the master table for model /retailer information

    Model_id

    retailer_id

    1

    12

    2

    12

    3

    12

    4

    12

    1

    13

    2

    13

    Output

    model_id

    retailer_id

    sell_date

    cost

    Helene

    Final (cost-helene-discount)

    1

    12

    June 3, 13

    100

    40

    50

    1

    12

    June 10, 13

    200

    20

    160

    1

    12

    17 June 13

    300

    20

    270

    1

    12

    24 June 13

    400

    20

    350

    2

    12

    June 3, 13

    300

    10

    280

    2

    12

    June 10, 13

    200

    20

    160

    2

    12

    17 June 13

    300

    20

    270

    2

    12

    24 June 13

    400

    20

    350

    3

    12

    June 3, 13

    0

    0

    0

    3

    12

    June 10, 13

    0

    0

    0

    3

    12

    17 June 13

    0

    0

    0

    3

    12

    24 June 13

    0

    0

    0

    4

    12

    June 3, 13

    0

    0

    0

    4

    12

    June 10, 13

    0

    0

    0

    4

    12

    17 June 13

    0

    0

    0

    4

    12

    24 June 13

    0

    0

    0

    1

    13

    June 3, 13

    0

    0

    0

    1

    13

    June 10, 13

    0

    0

    0

    1

    13

    17 June 13

    0

    0

    0

    1

    13

    24 June 13

    0

    0

    0

    2

    13

    June 3, 13

    0

    0

    0

    2

    13

    June 10, 13

    0

    0

    0

    2

    13

    17 June 13

    0

    0

    0

    1

    13

    24 June 13

    0

    0

    0

    For highted above records (model_id / retailer_id combination) there is no record in tab1 but they have entered in master_info then the recordings should come for all model_id/retailer_id with all the 0 values

    Hello

    Thanks for posting the sample data.

    It is unclear what dates you want to include in the output.  The following query shows how you can generate every Monday in a given range.  If you only want to include the dates that are actually present in tabl1 and/or tab4, you can simplify this a bit.

    WITH date_range AS

    (

    SELECT TRUNC (TO_DATE (' 3 June 2013', 'DD-Mon-YYYY'))

    , 'IW '.

    ) AS first_monday

    , TRUNC (TO_DATE (24 June 2013 ', 'DD-Mon-YYYY') + 6)

    , 'IW '.

    ) AS last_monday

    OF the double

    )

    all_mondays AS

    (

    First_monday SELECT + (7 * (LEVEL - 1)) AS sell_date

    OF date_range

    CONNECT BY LEVEL<= 1="" +="" (="" (last_monday="" -="">

    / 7

    )

    )

    SELECT mi.model_id

    mi.retailer_id

    am.sell_date

    , Cost of NVL (t1.cost, 0) AS

    , NVL (t1.rebat, 0) IN the refund

    , NVL (t1.cost, 0)

    -(NVL (t1.rebat, 0))

    + NVL (t4.discount, 0)

    ) AS final

    E master_info

    CROSS JOIN all_mondays am

    LEFT OUTER JOIN tab1 t1 ON t1.model_id = mi.model_id

    AND t1.retailer_id = mi.retailer_id

    AND t1.sell_date = am.sell_date

    LEFT OUTER JOIN tab2 t2 ON t2.retailer_id = mi.retailer_id

    LEFT OUTER JOIN tab 3 t3 ON t3.dealer_id = t2.dealer_id

    LEFT OUTER JOIN tab4 t4 ON t4.model_id = t1.model_id

    AND t4.dealer_group = t3.dealer_group

    AND t4.discount_date = t1.sell_date

    ORDER BY mi.retailer_id

    mi.model_id

    am.sell_date

    ;

    The results are not exactly what said you you wanted.  I suspect it's because of typos in that you posted.

  • Add several tables on a Page

    Hello

    I am building an application that handles (APEX 4.0) material inventory. I have an entry page that adds data to two or more tables at once. The page has two forms on it pointing to two separate tables. However when I try to run the page, it fails and returns an error:

    ORA-06550: line 1, column 437: PL/SQL: ORA-00904: "ORH_LAST_UPDATE_DATE": invalid identifier ORA-06550: line 1, column 7: PL/SQL: statement ignored
    Error failed to process row in the IDD_ID_DATA table.

    As far as I can see in the application, this column is not in question (I don't even do anything for her and she is nullable). I looked at the application itself as well as some research online but can't find anything useful...


    So my question is this: is it possible to add several tables to a page? If yes how?

    I'm new to APEX so any help would be greatly appreciated!

    UPDATE:

    I received an email from support of APEX team:

    «The answer is simple, it's you will need manually code processes query (and DML) If you want to maintain multiple tables on a page (there is a limit of a table when you use the integrated process).»
    For this I suggest that you remove the process generated by the wizards and create processes of PL/SQL with insert, update, delete statements as needed. "This encoding is not difficult but takes much longer when you can use the integrated process.

    I've been playing with code PL/SQL and the final result is the following:

    Start
    INSERT INTO table1
    VALUES)
    : P2_Item_Field1,.
    (: P2_Item_Field2);
              
    INSERT INTO table2
    VALUES)
    : P2_Item_Field1,.
    (: P2_Item_Field2);
    end;

    I used this code in a PL/SQL custom in the treatment process > section to the Page processing and it seems to work fine now. The only downside to this method is that if the name of a Page element is changed the code will also have to be changed. Except that I had no problem.

  • How to find the most recent record?

    How to find the most recent record?

    Hello

    It is part of our Bill the elements table, retrieved by the following query:

    SELECT movimento, dt_movimento, cd_material,
    cd_tp_operacao, nf, series,
    sole, pr_unitario
    Of itemfat
    WHERE cd_material IN ('722136', '759177', ' 810725', 818848')
    AND cd_tp_operacao ("' 1102 c ' ', ' 2102 C")
    ORDER BY cd_material,
    dt_movimento


    MOVIMENTO DT_MOVIMENTO CD_MATERIAL CD_TP_OPERACAO NF SERIES AS PR_UNITARIO
    2008-03-11 2137625, 722136 2102 1084738 3 120 2 915
    2588890 08/05/2008 722136-2102 1090987 3 120 2,5615
    755522 09/10/2007 759177-2102 101449 1 200 0.6
    701055 03/10/2007 810725-2102 1013865 1 36 10.9
    1588804 20/12/2007 810725 2102 1014182 1 96 10.9
    1305653 03/12/2007 818848-2102 108555 1 240 6.5
    3102134 07/18/2008 818848 2102 109784 1 360 6.5


    Seems that I whant to retrieve only the most recent records for each item, as:

    MOVIMENTO DT_MOVIMENTO CD_MATERIAL CD_TP_OPERACAO NF SERIES AS PR_UNITARIO
    2588890 08/05/2008 722136-2102 1090987 3 120 2,5615
    755522 09/10/2007 759177-2102 101449 1 200 0.6
    1588804 20/12/2007 810725 2102 1014182 1 96 10.9
    3102134 07/18/2008 818848 2102 109784 1 360 6.5


    Can someone help me with a sentece SQL to do?

    Thanks in advance.

    You can certainly do it:

    SELECT   movimento, dt_movimento, cd_material, cd_tp_operacao, nf, serie,
             quantidade, pr_unitario
        FROM itemfat i
       WHERE cd_material IN ('722136', '759177', '810725', '818848')
         AND cd_tp_operacao IN ('1102C', '2102C')
         AND dt_movimento =
                (SELECT MAX (dt_movimento)
                   FROM itemfat d
                  WHERE d.cd_material = i.cd_material
                    AND d.cd_material IN ('722136', '759177', '810725', '818848')
                    AND d.cd_tp_operacao IN ('1102C', '2102C'))
    ORDER BY cd_material, dt_movimento
    

    : p

  • I find several pages open at the same time when I try to open certain bookmarks in the subject: home page.is this destiny? but this behavior is intermittent

    I find several pages simultaneously open in firefox when I try to open a link in the bookmarks stored. It is divide the subject: homepage in two and simultaneous display of two pages.
    I really like this. But this feature is planned.
    I find this intermittent behavior and not happening for all the links.
    If firefox has a feature to open several windows as it's going to be great other than the separator add on

    Opening in the sidebar is the default value for the bookmarks created via a link or a button on a Web site.

    You can view the properties of a bookmark using the context menu in the side bar (Ctrl + B; Command + B on Mac).

    In the Bookmark Manager (Bookmarks > show all bookmarks) you can click on the button more in the lower details pane on the right.

    Make sure "Load this bookmark in the sidebar" is not selected.

  • During the closure after a browsing session I find several windows behind the window of the main browser I have not opened and they must be closed individually. What is the cause and how can I stop it?

    During the closure after a browsing session I find several windows behind the window of the main browser I have not opened and they must be closed individually. What is the cause and how can I stop it? Edit

    These windows display ads? They could be 'pop-under' designed to show when you are finished with your main window. Orbitz has these, for example. Irritating. I'm not sure of the best solution, i.e., advertising blocker blocker vs.

    If they are not ads, can you think anyway that they are related to the sites you visit?

    In addition, to close a tab (or window, if there is only one tab), you can press Ctrl + w. could speed up the process of their release until you find a real solution.

  • Pavilion dv6t-7000: impossible to find several drivers for my PC?

    Hello, I'm having a problem to find several drivers I need for support of USB devices, until quite recently, my device manager showed I had three drivers I need to install it, but after checking the drivers they are not found. This includes the drivers PCI, Serial Bus controller and network controller drivers. I installed the driver of player Realtek card and for some reason the PCI and Serial Bus controller drivers seem to be installed, but the network controller driver is still missing.

    The hardware ID for the network controller driver is:

    PCI\VEN_8086 & DEV_0887 & SUBSYS_40628086 & REV_C4
    PCI\VEN_8086 & DEV_0887 & SUBSYS_40628086
    PCI\VEN_8086 & DEV_0887 & CC_028000
    PCI\VEN_8086 & DEV_0887 & CC_0280

    Where can I find the drivers for it? Thank you.

    Hello:

    You need this driver for this model wireless card...

    This package contains the required drivers to activate the adapter functionality taken on laptops Intel wireless LAN supported with supported operating systems.

    File name: sp57976.exe

    If you want the latest version of the driver for this card, download and install the second pilot on the list...

    https://Downloadcenter.Intel.com/download/24652/Intel-PROSet-Wireless-software-and-drivers-for-Windows-7-

    This card also comes with bluetooth, you need driver bluetooth for this too.

    You can use the Intel one since the dv6t-7000 support page, but I'm providing the latest driver from Intel.

    https://Downloadcenter.Intel.com/download/24847/Intel-PROSet-Wireless-software-for-Bluetooth-technology-for-Windows-7-64-bit-WP-

  • When I ran the SAS the he finds several pieces of Adware and my browser had been hijacking? My pc can not find programs such as exe, cmd, s and dll, s, s

    Original title: part 2: GOT PC SLEDGE HAMMER, FIXIT TOOL? When I ran the SAS the he finds several pieces of Adware and my browser had been hijacking?

    Nest of Adware found on my pc Windows XP home service Pack 3 when I ran SuperAntispyware remover, free version! After I already had Defender windows R, avg, free avast and avira? Not one of the most famous, virus-scanning Spyware on the market has found a thing, SuperAntiSpyware found a bunch, BROWSER My Plus had been HIJACKING? Now I need more help CLEANING UP THE MESS LEFT ME ILS? THINGS ARE MESS of BAD? MY Internet explore page to the farm, like flippin a switch? My pc can not find programs such as exe, cmd, s and dll, s, s and if I can get to a site down load a program fix, it does not download to the right, so it does not work? IM about to go out the SLEDGE HAMMER PC DIFFICULTY IT 4 GOOD KEY?

    Hello

    · What is the version of internet explorer, you have installed?

    1. check if the error codes and error message appears in Event Viewer: how to view and manage the event logs in Event Viewer in Windows XP: http://support.microsoft.com/kb/308427

    2 run the checker system files on the computer. Link, we can see: Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe): http://support.microsoft.com/kb/310747

    Note that: if he asks you the service pack CD, follow these steps from the link: you are prompted to insert a Windows XP SP2 CD when you try to run the tool on a Windows XP SP2 computer system File Checker: http://support.microsoft.com/kb/900910 (valid for Service pack 3)

    See: difficulty to your web browser hijacked: http://www.microsoft.com/security/pc-security/browser-hijacking.aspx

  • Find the table of characters on my computer if it is not in the accessory file

    I write a scientific article for the school and could not find the table of characters on my computer.  I looked in Accessories - System Tools and nothing.  I should I reinstall or at least find a site online that will show you the appropriate key strokes to get what I'm looking for

    Hello

    Start - type in the search box-> find the table of characters at the top of list - double click it to run it.

    You can also right click and COPY then PASTE an icon on the desktop or the start menu.

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • How to find the audio and recording mixers

    Cannot find Audio Mixers and recording in Windows 7 as I had XP

    My Medion computer purchased recently does not appear to have full audio mixer for volumes or a similar mixer to record levels as I have already in Win XP.

    Is it possible to reproduce pages of mixer teas? I would be grateful for any help on this problem.

    TIA Mike

    Cool Edit 2000 (compatibility issue)

    Hello

    The mixer similar to that of Windows XP volume has been removed in Windows 7.

    Windows 7 has its own volume mixer. Check this link for more information:

    Adjust the sound level on your computer:
    http://Windows.Microsoft.com/en-us/Windows7/adjust-the-sound-level-on-your-computer

    Cool edit 2000 is not compatible with Windows 7. Cool Edit was taken over by Adobe, a few years ago and renamed Adobe Audition. The manufacturer
    offers a paid upgrade to the software.

    Check this link for more information:
    http://www.Microsoft.com/Windows/compatibility/Windows-7/en-us/details.aspx?type=software&p=cool%20Edit%20PRO&v=Adobe&UID=2&pf=0&PI=
    6 & s = Cool % 20Edit % 202000 & os 32-bit =

    Kind regards
    Amal-Microsoft Support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Removal of several tables with only loop FORALL

    I need to remove the data from several tables with unique FORALL. It seems that FORALL does not support. Please let me know the alternatives to achieve this goal.

    DB version: 11 GR 2

    Write switchis for all instructions, one for each deletion. There is no reason why it should not work.

    Compare:

    PLSQL 101 :

    Here are some things to know about FORALL:

    Each FORALL statement can contain only a single DML statement. If your loop contains two updates and a deletion, then you will need to write three statements FORALL

  • How to find DB tables containing specific columns (ORG_ID / ORGANIZATION_ID)

    Hi all, I would like to know if someone has developed a script to find all tables containing the columns (fields) specific.


    I'm on a migration project where I don't have access to the source of the DB, I just ask for queries and I to reflect all the tables DB containing specific data of organization.

    So the first step was to understand used tables and I get them, now I understand what tables have Org_id / Organization_ID and fields of the SOURCE of the LANGUAGE/LANGUAGE (source DB has much set Org and many languages also, so I need to filter the 100total 6ORG_ID and 2 languages of 8 total installed)

    Can anyone help?

    Thank you

    Best regards

    Pietro

    Hello

    You can see this:

    Find all tables in db with the name of the column of a particular string?

    Kind regards

    MihaiF

  • Join several Tables versioned

    Hello

    We are working on a data warehousing project and wonder how do to join several tables that each are versioned separately (type SCD 2 with a valid and valid to date).

    Because for example, we get our client from a single source of information (id customer, name, etc.) and the information on the rate of customer from another source.  The sources are different, we have the separate tables for them and each of them gets versioned independently.

    Here's my customer table (with its own valid and valuable to the columns).

    IDName of the customerValid fromValid until the
    1CitiBank1 JANUARY 14JANUARY 1, 15
    1New CitiBank2 JANUARY 15FEBRUARY 1, 15
    1Latest CitiBank2 FEBRUARY 15APRIL 1, 15

    And similarly the Client side ID and rating information.

    IDNoteValid fromValid until the
    1Platinum1 JANUARY 14FEBRUARY 1, 14
    1PremiumFEBRUARY 1, 141ST MARCH 15

    I want to merge the two tables above and present information at a glance.  I have some difficulty to determine validates the valid columns.

    IDName of the customerNoteValid from (Calculated)Valid until the (calculated)
    1CitiBankPlatinum1 JANUARY 14FEBRUARY 1, 14
    1CitiBankPremiumFEBRUARY 1, 14JANUARY 1, 15
    1New CitiBankPremium2 JANUARY 15FEBRUARY 1, 15
    1Latest CitiBankPremium2 FEBRUARY 151ST MARCH 15

    And it's the query I used to get the above result:

    SELECT client. id ,

           customer . name ,

           CRM . level ,

           Greatest (client. vld_fm , crm. vld_fm ),

           Least (client. vld_to , crm. vld_to )

    DE    client client,

           client_rating crm

      client. id = crm. id

           AND ( client. vld_fm <= crm. vld_fm

                 AND client. vld_fm <= crm. vld_to

                 AND client. vld_fm >= crm. vld_fm

                 AND client. vld_fm >= crm. vld_to )

            OR ( client. vld_fm BETWEEN crm. vld_fm AND crm. vld_to )

            OR ( client. vld_to BETWEEN crm. vld_fm AND crm. vld_to );



    The problem is we have several data sources (and each with its own versions) and joins become so very very complex.  Is there a better way to write the query?

    Or maybe a better way to design our tables?

    Thanks for your help.

    Anand

    Hello

    you only need ranges that overlap to join.

    Re: How do to sql query in a loop

    Is a simpler way to test if the x_start to x_stop range comes into conflict with the range of y_start to y_stop

    WHERE     x_start <= y_stop AND     y_start <= x_stop
    

    In other words, two overlapping if and only if everyone will start before the other ends one. If this is not obvious (and it was certainly not clear to me when I heard it), then look at it this way: two ranges are not overlapping if and only if one of them starts after the end of the other.

    Concerning

    Marcus

  • Hi people! Can someone advise me something in Lightroom please CC.  When I export files once after you have finished the adjustments etc. and I click 'Save with the previous' - how to find where it was recorded, if I forgot the last folder saved to?

    Can someone advise me something in Lightroom please CC. When I export files once after you have finished the adjustments etc. and I click 'Save with the previous' - how to find where it was recorded, if I forgot the last folder saved to?

    I guess you mean "Export with previous. If so, open the export page. It will be defined as "precedent".

  • Hello. I have Lightroom 3. The only addition I've ever done is to add a plugin of double Finder several years ago. No, all of a sudden I can no longer download photos as usual. I need to deceive Lightroom by downloading by adding new files into folders an

    Hello. I have Lightroom 3. The only addition I've ever done is to add a plugin of double Finder several years ago. No, all of a sudden I can no longer download photos as usual. I need to deceive Lightroom by downloading by adding new files into folders and then synchronize these folders. But lately this work around is not no longer works. Is the program, forcing me to upgrade? Can I continue to use this version. I need to reset something. Please help because it is very frustrating.
    Thank you!
    Emily

    PDF, GIF and BMP are not the types of files supported for Lightroom.

    See here: help Lightroom | Supported file formats

    However, there is a plugin available that will allow you at least these files from the catalog, it is called Anyfile: any Lightroom Plugin file

    Bruce

Maybe you are looking for

  • Function key stops working on NB200

    Hi all I have a NB200 "netbook" running windows 7. When I boot, everything is big, depressing the function (fn) key shows a menu at the top of the screen and work functions. After a little while of some programs running, it stops working. When I pres

  • XPS15 L502X: Realtek HD Audio Manager eats 13% CPU

    I have a brand new L502X XPS15 with Core I7-2720QM and 8 GB memory. My Task Manager indicates that the DD Realtek Audio Manager is constantly eat 13% of my CPU. My audio (audio is on) are turned on but I'm not the treatment of audio. Isn't that the c

  • Win vista to win 7 upgrade

    I bought a vista disk upgrade windows 7. The activation key for the update will work with an iso version of win 7

  • Update perpetual 6.0 6.6 LR LR: error "update could not be applied" [Mac OS 10.10.5]

    Hello forumI own a perpetual license for LR 6 and also have CC installed through my work on the same Apple Mac computer running OS10.10 (the CC is _not_ include Lightroom CC for some reason any). NB I don't have adobe to work CC id management, but ca

  • Animation imported to the Muse does not work

    Created an animation in Animate, imported in a Web of Muse site and charge of the whole shebang on my new Web site. The Web site appears in my browser, but there is a large gray area fat where the Animate thing is. Says "we're sorry, this content req