I want the single update query without using the function.

I want to update sells_table selling_code field with product_code date product table max.
In the product table, there are several product_code date wise.

I did with below charly with the use of the service, but we can do in the query what a single update
without using the function.

UPDATE sells_table
SET selling_code = MAXDATEPRODUCT (ctd_vpk_product_code)
WHERE NVL(update_product_flag,0) = 0;

(P_product IN VARCHAR2) RETURN of HVL.maxdateproduct NUMBER FUNCTION to CREATE or REPLACE
IS
max_date_product VARCHAR2 (100);
BEGIN
BEGIN
SELECT NVL (TRIM (product_code), 0)
IN max_date_product
FROM (SELECT product_code, xref_end_dt)
PRODUCT
WHERE TO_NUMBER (p_product) = pr.item_id
ORDER BY xref_end_dt DESC)
WHERE ROWNUM = 1; -He'll be back a single line - max date product code
EXCEPTION
WHILE OTHERS
THEN
RETURN 0;
END;

RETURN max_date_product;

END maxdateproduct;

Thanks in advance.

Hello

Something like that.

update setlls_table st
        set selling_code =(select nvl(trim(product_code)) from
                              (select product_code
                                      , rank() over (partition by item_id order by xref_end_dt DESC) rn
                                   from product
                               ) pr
                               where rn =1
                                     and pr.item_id = st.ctd_vpk_product_code
                           ) where NVL(update_product_flag,0) = 0 ;

That such is not tested due to lack of sampling input.

Concerning
Anurag Tibrewal.

Tags: Database

Similar Questions

  • compose the query without using the query designer

    New on this BEEP 10.1.3.4.1 product,

    questions

    1. is there a way to compose a query without using query builder but still has a way to see the result of the query under the PIF?

    2. How is - a to compose a query prompt? I know that I can create parm after you create the data set, but at the stage of all data already call you query prompt as where employee id =? E_ID? or just not where clause


    Sorry if these questions are too rudimentary, but I did not see that what we have answered according to the user's guide.

    Thank you.


    WAN

    When you select the 'View' link, you should be able to see this option.

  • Transient attribute based on the selected query by using a function call

    Hello

    Post version is 11.1.1.7.0 JDeveloper.

    I'm not able to get the following work properly;

    1. I have a scenario header / detail.
    2. Calculate a value for each row returned detail that I find. This calculation is done using an existing database to function.
    3. The function requires 3 input parameters.
    4. Two of these parameters can be retrieved in the detail row and one is a value which is on the header.
    5. I created a transient attribute on the object of the detail view and selected the following properties of the 2 attribute;
      1. Mapped to the column or SQL
      2. Selected in SQL
    6. I entered the following SQL Expression;
      1. function_name (DetailTableAlias.value1, DetailTableAlias.value2, ViewLinkName.value3)
    7. Running AOS that contains the objects of view header / detail, I encounter a SQL error which indicates that ViewLinkName.value3 is an invalid identifier.
      1. I can understand why this error occurs.
    8. If I change the ViewLinkName.value3 to a literal value, the error will not occur.

    So, my question is how can I pass the third parameter to the transitional attribute database function call as the value literal and not as a reference to one, missing attachments header table, column?

    Concerning

    Leon.

    Hi Leon

    Have you explored solve this by an inline SQL query to derive the 3rd parameter of the function? In other words, the problem in SQL instead of ADF.

    DMI

  • issue update a table using a function in pipeline

    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for HPUX: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    OK, I have an example simplified below what is happening
    I try to make updates or inserts in the tables and I use a function pipeline for this bed of the same tables of the to do.
    and it gives me
    ORA-04091: table DSAMSTRC.T is mutating, trigger/function may not see it
    ORA-06512: at "DSAMSTRC.GET_T_ARRAY", line 6
    My solution was to do a slider and update record row by row, but I was wondering if there is a way around this error?


    Here's my example
    DROP TABLE t;
    ------------------------------------------------------------------------------------
    
    CREATE TABLE t
    AS
           SELECT LEVEL id, 'A' txt
             FROM DUAL
       CONNECT BY LEVEL <= 10;
    
    -------------------------------------------------------------------------------------
    
    CREATE OR REPLACE TYPE t_table_type AS OBJECT
                      (id NUMBER, txt VARCHAR2 (200));
    ------------------------------------------------------------------------------------
    
    CREATE OR REPLACE TYPE t_array AS TABLE OF t_table_type;
    -----------------------------------------------------------------------------------
    
    CREATE OR REPLACE FUNCTION get_t_array (v_txt IN t.txt%TYPE)
       RETURN t_array
       PIPELINED
    IS
    BEGIN
       FOR EACH IN (SELECT id, txt
                      FROM t
                     WHERE t.txt = v_txt)
       LOOP
          PIPE ROW (t_table_type (EACH.id, EACH.txt));
       END LOOP;
    
       RETURN;
    END;
    ---------------------------------------------------------------------------------------
    
    UPDATE t
       SET txt = 'B'
     WHERE id IN (SELECT id FROM TABLE (get_t_array ('A')));
     

    You can create a global temporary table that has the same columns that use your function to insert in there, and then use it to update t.

    CREATE GLOBAL TEMPORARY TABLE t_temp
    (id    INTEGER,
     txt  VARCHAR2(100))
    ON COMMIT DELETE ROWS;
    
    INSERT INTO t_temp
      (SELECT id, txt FROM get_t_array('A'));
    
    UPDATE t
       SET t.txt = (SELECT txt FROM t_temp
                     WHERE t_temp.id = t.id)
     WHERE t.id IN (SELECT id FROM t_temp);
    
  • I want to delete several messages without using Ctrl + click

    Original title: "you want to select all under edit to remove several messages sent as I used too, before improved Windows live mail has been downloaded.  That happened to the bar simplistic with file, editing tools, tools, etc. so I could go and select and multiple delete.

    Where should I go under improved windows live mail, which was recently downloaded, select and delete several messages that is sent.  You want to clean the sent messages or any other message I want to remove attached.  I don't want to control, and then click.

    CTRL + A = select all
    or use click - shift - click to select a range
    --
    Dave N.
    MS - MVP (Mail)
    Windows 7 Ultimate 64
    "False" wrote in message
    News: * e-mail address is removed from the privacy... *
     
    Where should I go under improved windows live mail, which was recently
    downloaded to all select and delete several messages that is sent.  I want to
    clean the sent messages or any other message I want to remove
    multiples.  I don't want to control, and then click.
     
     

    Windows 7 Ultimate 64

  • How to prioritize the query result using analytic functions

    Hello

    Published by: prakash on May 20, 2013 01:42

    Use ROW_NUMBER

    SQL> select PRVDR_LCTN_X_SPCLTY_SID,PRVDR_LCTN_IID,PRVDR_TYPE_X_SPCLTY_SID,STATUS_CID
      2  from
      3  (
      4    select t.*,
      5      row_number() over(partition by PRVDR_TYPE_X_SPCLTY_SID
      6                        order by STATUS_CID) rn
      7    from your_table t
      8  )
      9  where rn = 1;
    
    PRVDR_LCTN_X_SPCLTY_SID PRVDR_LCTN_IID PRVDR_TYPE_X_SPCLTY_SID STATUS_CID
    ----------------------- -------------- ----------------------- ----------
                   75292110       10153920                75004770          1
                   75291888       10153920                75004884          2
                   75292112       10153920                75004916          1
                   75292117       10153920                75004974          1
    
  • Need help to resolve the query by using analytic functions

    Hello

    I need help to solve this problem, I tried an analytical function but could not solve the problem.

    I have three table as illustrated below the table is filled with a flat file. The records are arranged sequentailly based on the name of the file.

    The first record of the game based on EIN goes to TAB_RCE
    the following records then goes to TAB_RCW
    and last save of the game based on EIN goes to the RCT table

    How can I make groups and
    assign a

    EIN * 12345 * line number * 02, 03, 04 * in the table TAB_RCW and * 05 * in the table TAB_RCT
    EIN * 67890 * line number * 07, 08, 09,10 * in the table TAB_RCW and * 11 * in the table TAB_RCT
    and so on...

    Thank you

    Rajesh

    TAB RCE_--------------------------------------------------------------
    LineNumber EIN FILENAME TYPE

    -----

    01 12345 ABC NCE. TXT
    06 67890 ABC NCE. TXT
    12 76777 ABC NCE. TXT

    -----
    TAB_RCW
    -----
    LineNumber TYPE SSN FILENAME
    -----
    02 22222 ABC RCW. TXT
    03 33333 ABC RCW. TXT
    04 44444 ABC RCW. TXT
    07 55555 ABC RCW. TXT
    08 66666 ABC RCW. TXT
    09 77777 ABC RCW. TXT
    10 88888 ABC RCW. TXT
    13 99998 ABC RCW. TXT
    14 99999 ABC RCW. TXT

    -----
    TAB_RCT
    -----
    NAME OF THE FILE OF TYPE LINENUMBER
    -----
    RCT 05 ABC. TXT
    RCT 11 ABC. TXT
    RCT 15 ABC. TXT
    -----
    SQL> with TAB_RCE as (
      2                   select 'RCE' rtype,'01' linenumber, '12345' EIN,'ABC.TXT' FILENAME from dual union all
      3                   select 'RCE','06','67890','ABC.TXT' from dual union all
      4                   select 'RCE','12','76777','ABC.TXT' from dual
      5                  ),
      6       TAB_RCW as (
      7                   select 'RCW' rtype,'02' linenumber,'22222' ssn,'ABC.TXT' FILENAME from dual union all
      8                   select 'RCW','03','33333','ABC.TXT' from dual union all
      9                   select 'RCW','04','44444','ABC.TXT' from dual union all
     10                   select 'RCW','07','55555','ABC.TXT' from dual union all
     11                   select 'RCW','08','66666','ABC.TXT' from dual union all
     12                   select 'RCW','09','77777','ABC.TXT' from dual union all
     13                   select 'RCW','10','88888','ABC.TXT' from dual union all
     14                   select 'RCW','13','99998','ABC.TXT' from dual union all
     15                   select 'RCW','14','99999','ABC.TXT' from dual
     16                  ),
     17       TAB_RCT as (
     18                   select 'RCT' rtype,'05' linenumber,'ABC.TXT' FILENAME from dual union all
     19                   select 'RCT','11','ABC.TXT' from dual union all
     20                   select 'RCT','15','ABC.TXT' from dual
     21                  )
     22  select  rtype,
     23          last_value(ein ignore nulls) over(partition by filename order by linenumber) ein,
     24          linenumber,
     25          ssn
     26    from  (
     27            select  rtype,
     28                    linenumber,
     29                    ein,
     30                    to_char(null) ssn,
     31                    filename
     32              from  TAB_RCE
     33            union all
     34            select  rtype,
     35                    linenumber,
     36                    to_char(null) ein,
     37                    ssn,
     38                    filename
     39              from  TAB_RCW
     40            union all
     41            select  rtype,
     42                    linenumber,
     43                    to_char(null) ein,
     44                    to_char(null) ssn,
     45                    filename
     46              from  TAB_RCt
     47          )
     48    order by linenumber
     49  /
    
    RTY EIN   LI SSN
    --- ----- -- -----
    RCE 12345 01
    RCW 12345 02 22222
    RCW 12345 03 33333
    RCW 12345 04 44444
    RCT 12345 05
    RCE 67890 06
    RCW 67890 07 55555
    RCW 67890 08 66666
    RCW 67890 09 77777
    RCW 67890 10 88888
    RCT 67890 11
    
    RTY EIN   LI SSN
    --- ----- -- -----
    RCE 76777 12
    RCW 76777 13 99998
    RCW 76777 14 99999
    RCT 76777 15
    
    15 rows selected.
    
    SQL> 
    

    SY.

  • By comparing the game without using to COLLECT?

    I want to know if there is an alternative to the following query without using the COLLECT function.
    I have two lists that contain number game:

    List01
    SetName; NUM
    A; 11
    A; 12
    A; 13
    B; 21
    B; 22
    C; 34
    C; 36

    List02

    SetName; NUM
    X; 11
    X; 12
    X; 13
    Y; 21
    Z; 34
    Z; 22

    I want to know how to find the list of the game in list02 who aren't in list01. I think the result is:
    THERE
    Z

    Or:
    Y; 21
    Z; 34
    Z; 22

    I have this result with the following query. Is it possible to have the same result without using the COLLECT function?



    CREATE or REPLACE type NUMBER_SET

    AS

    TABLE OF NUMBER;

    WITH AS List01

    (SELECT 'A' AS SETNAME, LIKE DOUBLE NUM 11)

    UNION

    SELECT 'A' AS SETNAME, 12 IN THE DOUBLE NUM

    UNION

    SELECT 'A' AS SETNAME, DOUBLE NUM 13

    UNION

    SELECT 'B' AS SETNAME, 21 AS DOUBLE NUM

    UNION

    SELECT 'B' AS SETNAME, 22 IN THE DOUBLE ISSUE

    UNION

    SELECT 'C' AS SETNAME, 34 AS NUM FROM DUAL

    UNION

    SELECT 'C' AS SETNAME, 36 IN THE DOUBLE ISSUE

    ),

    AS List02

    (SELECT 'X' AS SETNAME, LIKE DOUBLE NUM 11)

    UNION

    SELECT 'X' AS SETNAME, 12 IN THE DOUBLE ISSUE

    UNION

    SELECT 'X' AS SETNAME, DOUBLE NUM 13

    UNION

    SELECT 'Y' AS SETNAME, 21 AS DOUBLE NUM

    UNION

    SELECT 'Z' AS SETNAME, 34 AS NUM FROM DUAL

    UNION

    SELECT 'Z' AS SETNAME, 22 IN THE DOUBLE ISSUE

    ),

    SetsFromList01 AS

    (SELECT SETNAME,

    CAST (AT COST VIRES (NUM

    (ORDER NUMBER) AS NUMBER_SET) AS setofNUM

    OF LIST01

    SETNAME GROUP

    ),

    SetsFromList02 AS

    (SELECT SETNAME,

    CAST (AT COST VIRES (NUM

    (ORDER NUMBER) AS NUMBER_SET) AS setofNUM

    OF LIST02

    SETNAME GROUP

    )

    SELECT SETNAME

    OF SetsFromList02

    WHERE setofNUM NOT IN

    (SELECT setofNUM FROM SetsFromList01

    );

    Thank you

    Yes, you are right, ROW_NUMBER is not necessary.

    SY.

  • help in the application without using the pivot function

    Hi gurus,

    Can you please help write the query without using the PIVOT function.
     WITH indata AS
             (SELECT 1 sn, '123:456,789,323:456,213,344,345:5454' x
                from dual
              UNION ALL
              SELECT 2, 'abcd:fgrfr,rfrf,rfred,tg:tg,tg:ophhh,op,vdfgbh:poijn' x from dual),
            instr AS
             (SELECT a.SN,
                     rownum RN,
                     B.column_value || CASE
                       WHEN B.column_value NOT LIKE '%:%' THEN
                        ':'
                     END column_value 
                FROM indata a,
                     TABLE(CAST(multiset
                                (SELECT trim(SUBSTR(x,
                                                    (CASE LEVEL
                                                      WHEN 1 THEN
                                                       1
                                                      ELSE
                                                       instr(x, ',', 1, LEVEL - 1) + 1
                                                    END),
                                                    (CASE instr(x, ',', 1, LEVEL)
                                                      WHEN 0 then
                                                       4000
                                                      ELSE
                                                       instr(x, ',', 1, LEVEL) - 1 -
                                                       (CASE LEVEL
                                                          WHEN 1 THEN
                                                           0
                                                          ELSE
                                                           instr(x,
                                                                 ',',
                                                                 1,
                                                                 level - 1)
                                                        END)
                                                    END)))
                                   FROM dual
                                 CONNECT BY level <=
                                            LENGTH(x) -
                                            LENGTH(REPLACE(x, ',', '')) + 1) AS
                                sys.odcivarchar2list)) b)
            SELECT  col1_val2,
                    col1_val1,
                    col2_val2,
                    col2_val1,              
                   systimestamp
              FROM (select SN,
                          ROW_NUMBER() over(partition by SN order by RN) RN,
                           SUBSTR(column_value, INSTR(column_value, ':') + 1) VAL1,
                           substr(column_value, 1, instr(column_value, ':') - 1) val2
                      FROM instr ) PIVOT(MAX(VAL1) VAL1, MAX(VAL2) VAL2 FOR SN IN(1 as col1,2 as col2));
    Thanks in advance!...

    Any help would be appreciated.

    user590978 wrote:

    Can you please help write the query without using the PIVOT function.

    with indata as (
                    select 1 sn,'123:456,789,323:456,213,344,345:5454' x from dual union all
                    select 2, 'abcd:fgrfr,rfrf,rfred,tg:tg,tg:ophhh,op,vdfgbh:poijn' x from dual
                   ),
             t1 as (
                    select  x
                      from  indata
                      where sn = 1
                   ),
             t2 as (
                    select  x
                      from  indata
                      where sn = 2
                   ),
             t3 as (
                    select  level lvl,
                            substr(
                                   x,
                                   instr(',' || x,',',1,level),
                                   instr(x || ',',',',1,level) - instr(',' || x,',',1,level)
                                  ) col1
                      from  t1
                      connect by level <= length(x) - length(translate(x,'A,','A')) + 1
                   ),
             t4 as (
                    select  level lvl,
                            substr(
                                   x,
                                   instr(',' || x,',',1,level),
                                   instr(x || ',',',',1,level) - instr(',' || x,',',1,level)
                                  ) col2
                      from  t2
                      connect by level <= length(x) - length(translate(x,'A,','A')) + 1
                   ),
             t5 as (
                    select  lvl,
                            substr(col1,1,instr(col1 || ':',':') - 1) col1_val1,
                            substr(col1,instr(col1 || ':',':') + 1) col1_val2
                      from  t3
                   ),
             t6 as (
                    select  lvl,
                            substr(col2,1,instr(col2 || ':',':') - 1) col2_val1,
                            substr(col2,instr(col2 || ':',':') + 1) col2_val2
                      from  t4
                   )
    select  col1_val1,
            col1_val2,
            col2_val1,
            col2_val2,
            systimestamp
      from      t5
            full join
                t6
            on (
                t6.lvl = t5.lvl
               )
      order by coalesce(t5.lvl,t6.lvl)
    /
    
    COL1_VAL1  COL1_VAL2  COL2_VAL1  COL2_VAL2  SYSTIMESTAMP
    ---------- ---------- ---------- ---------- -------------------------------------
    123        456        abcd       fgrfr      23-OCT-12 11.50.12.015000 AM -04:00
    789                   rfrf                  23-OCT-12 11.50.12.015000 AM -04:00
    323        456        rfred                 23-OCT-12 11.50.12.015000 AM -04:00
    213                   tg         tg         23-OCT-12 11.50.12.015000 AM -04:00
    344                   tg         ophhh      23-OCT-12 11.50.12.015000 AM -04:00
    345        5454       op                    23-OCT-12 11.50.12.015000 AM -04:00
                          vdfgbh     poijn      23-OCT-12 11.50.12.015000 AM -04:00
    
    7 rows selected.
    
    SQL> 
    

    SY.

  • How can I delete a file on my iOS device that I downloaded from my iCloud? I just want to keep the Preview on my iOS device without using my storage iOS for the entire file.

    How can I delete a file on my iOS device that I downloaded from my iCloud? I just want to keep the Preview on my iOS device without using my storage iOS for the entire file. This means that the file is still in the iCloud and available to be downloaded to any device.

    In practice, I want to be able to scan and download through my documents located in my iCloud and once I didn't need them on my iOS device I would like 'load their return to the cloud' to my storage of the iOS device is not used.

    Thank you in advance to the community!

    Max

    The only way I found to do that once a file has been downloaded is to remove it and add it again through either from Finder on Mac or iCloud.com.

  • I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    11.1 and especially you have virtual column

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c generated always as (a+b) virtual
      6  );
    
    Table created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    

    Before that, a front insert - trigger

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c number
      6  );
    
    Table created.
    
    SQL> create or replace trigger t_default before insert on t for each row
      2  begin
      3    :new.c := :new.a+:new.b;
      4  end;
      5  /
    
    Trigger created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    
  • How to remove the trial version of Acrobat DC 30 days that I have somehow on my MacBook Pro?  I don't want the dang thing, and it prevents me from using my Acrobat Pro 11 software.  Trying to access using the tree without end of support for Adobe is reall

    How to remove the trial version of Acrobat DC 30 days that I have somehow on my MacBook Pro?  I don't want the dang thing, and it prevents me from using my Acrobat Pro 11 software.  Trying to access using the tree without end of support for Adobe of really making me cranky.

    Hi thomh65004143,

    You simply drag the Acrobat DC application from the applications folder to the trash to uninstall.

    Then restart your system & install Acrobat XI Download Adobe Acrobat products. Standard, Pro | DC, XI, X.

    Let me know if you are still having a problem.

    Kind regards

    Nicos

  • Is - is no longer offers a basic remuneration for it and it's yours for as long as you want with no updates of Adobe?  All programs are now a subscription?  Is it really not possible more to pay only once and that the program without updates until what yo

    Is - is no longer offers a basic remuneration for it and it's yours for as long as you want with no updates of Adobe?  All programs are now a subscription?  Is it really not possible more to pay only once and the program without updates until you decide to improve?

    You can buy cs6, Creative Suite 6

  • With the changes made in the Adobe Acrobat DC he has made things more difficult for me. All I want to do is to rename a file. Used to be simple. Please tell me how to rename a file without using the cloud. I'm not paying for storage when I have an SD card

    Hate the new update.  I need to rename files and cannot do without using the cloud.  Could not sign in the cloud free services.  Someone knows how to rename the files with Adobe Acrobat DC? I use a HD with Android corner.

    Do you have any file manager installed on your device? This feature is no longer available in the latest version of Acrobat DC but we actively seek to provide the same in one of our future releases. To work around the problem, you will need to duplicate/rename the files using a third-party file manager application.

  • Can I update Firefox without going through the Google game?

    I have a Google Nexus 5 last month. I discovered that for update of Google Chrome, I had to have a Google account. I have a Google account, but don't want to use it on my phone. Whenever I run Google Chrome, a message appears indicating that a new update is available. So, I decided to try Firefox. I discovered that if I tried to download Firefox on my phone on this site, asked me to create a new Google account or with an existing log.

    I did some research and came across a question on this site that someone asked how they wanted to download Firefox for their phone without using Google Play. Someone posted the link "https://ftp.mozilla.org/pub/mozilla.org/mobile/releases/latest/android/multi/". I activated the setting "Allow installation of applications from sources other than the game store". I was then able to download the file. I then installed Firefox.

    I'll be able to update Firefox without having to use a Google account, because I downloaded Firefox on this site instead of Google game site? I want to keep Firefox on my phone, but not if I will not be able to update without a Google account as with Google Chrome. I don't know if support for reading is as good as Google Chrome, like when I went to a site where I could play a video in Google Chrome, the video wouldn't play.

    Currently versions Release and beta will only updated if installed via Google Play.

    Only the Aurora and the Nightly channel development (where 30.0a2 and 31.0a1 under development on) gets updates in apk manual install.

Maybe you are looking for

  • How to remove the old plugins in the add-on Manager

    That is my question. Add-ons Manager shows all of those I want to delete as persons with disabilities. The existing responses do not work because when I get home the Manager of the page the word "delete" is not there. (see attachment)

  • Airport Extreme Base Station model bricks A1408 after failed firmware update

    Shown on Macbook Pro iOS X 10.10.5 airPort utility update the firmware available for both devices on my network 3 June 20161 Airport Express 7.6.7 2 version of Extreme Base Station Airport unknown as not reported as I expected not die After the updat

  • Can not turn on the editing tools in this forum in Safari 9

    I created this post in Safari on Snow Leopard 10.6.8 5.1. As you can see in the first picture, there is an edit above the text area box. However... When I try to create a post in Safari 9.1.1. in the Yosemite 10.10.5, I don't see what I'm typing unle

  • HP Office Jet Pro 8615: HP 8615 Will not copy two facing sides

    I need to copy a document duplex of a double-sided copy.  It appears on the screen of the printer that this is possible, but of course, it does not pass.  I can print double-sided, but impossible to copy.  I don't know about scan that I haven't tried

  • Via micro USB Port since 10.11.3 distorted sound

    Hello Since the update of OS X El Capitan (10.11.3), my Zoom H2 microphone is delayed, accelerated and oddly distorted. I tried with several different programs (GarageBand ScreenFlow, QuickTime,...) and even in the preferences system-> sound-> tab In