ORA 01407 - cannot update column null

Hello

Get above error when test and update table note value the updateing tables of have not null value.

Find having to put additional condition in the outer query to run it.

Oracle 11.2.0.3

Update cas_agent_net_sales b

Set b.net_issue_ean =)

-Effect of reset the ean to must eb as above

Select nvl (p.new_bris_ean_to_use, p.net_issue_ean)

of por_fix_cans_temp_280514_york p

where p.net_agent_account_number = b.net_agent_account_number

and p.net_issue_ean = b.net_issue_ean

and p.net_issue_year = b.net_issue_year)

where b.net_title_code = 4181

Why is this nrecessary?

Thank you

Anytime by statement UPDATE always make sure to use the EXISTS condition in the WHERE clause to filter only the line corresponding to the condition. Because if there is no match, then oracle updates the rows with a NULL value.

Update cas_agent_net_sales b

Set b.net_issue_ean =)

Select nvl (p.new_bris_ean_to_use, p.net_issue_ean)

of por_fix_cans_temp_280514_york p

where p.net_agent_account_number = b.net_agent_account_number

and p.net_issue_ean = b.net_issue_ean

and p.net_issue_year = b.net_issue_year

)

where b.net_title_code = 4181

and there are)

Select null

of por_fix_cans_temp_280514_york p

where p.net_agent_account_number = b.net_agent_account_number

and p.net_issue_ean = b.net_issue_ean

and p.net_issue_year = b.net_issue_year

)

Or better yet use MERGE statement.

merge into cas_agent_net_sales b

using por_fix_cans_temp_280514_york p

on)

p.net_agent_account_number = b.net_agent_account_number

and p.net_issue_ean = b.net_issue_ean

and p.net_issue_year = b.net_issue_year

)

When matched then

update set b.net_issue_ean = nvl(p.new_bris_ean_to_use,p.net_issue_ean);

Tags: Database

Similar Questions

  • ORA 01407 - cannot update column null - but I put as possible null

    Hi, I want to change the column datatype varchar2 to the number, but I have given in the column and I can not remove this column from table so I try this:

    change table tux

    Add subscribe_type_copy number (3);

    updated tux

    Set subscribe_type_copy = subscribe_type;

    change table tux

    change (subscribe_type, null);

    updated tux

    Set subscribe_type = null;

    -mistake here: ORA-01407: cannot update ("TUX". "" NOTIFY ". (' "SUBSCRIBE_TYPE") with the NULL value

    -- ? Why? I changed the column to accept NULL value

    -I want to do it now:

    change table tux

    Edit)

    subscribe_type number (3) - precision (total number of digits)

    );

    concerning

    What is FK or Pk?

    HTH - Antonio NAVARRO

  • ORA-12032: cannot use column rowid

    Hello
    8.1.7 I have the following error:
    ORA-12032: cannot use the rowid column of materialized view log on 'chain '. "' string '.
    The solution is:
    Action: A full refresh is necessary before the next quick update. Add columns ROWID in the materialized view log, if necessary.


    How can I do a complete refresh before the next fast refresh or ROWID columns add? How do I know whether the ROWID columns add?
    Thank you.

    PS:
    my script is:
    ................
    ..............
    START WITH TO_DATE (July 6, 2010 17:57:48 "," dd-mon-yyyy hh24:mi:ss')
    NEXT SYSDATE + 1/24

    user522961 wrote:
    Hello
    8.1.7 I have the following error:
    ORA-12032: cannot use the rowid column of materialized view log on 'chain '. "' string '.
    The solution is:
    Action: A full refresh is necessary before the next quick update. Add columns ROWID in the materialized view log, if necessary.

    How can I do a complete refresh before the next fast refresh or ROWID columns add? How do I know whether the ROWID columns add?
    Thank you.

    run up

    EXECUTE DBMS_MVIEW.REFRESH('MV_NAME','C');
    
  • Get an error SQL Error: ORA-01407:

    Hi all

    When iam trying to remove some rows from a table, iam getting the following error:

    Error from the 1 in the command line:
    delete from cu_cdm_svc_job_STEP where SVC_JOB_KEY = 292
    Error report:
    SQL error: ORA-01407: cannot update ("FACETS_CUSTOM". "" "" CDM_SVC_JOB_STEP '. "" SVC_JOB_KEY') with the NULL value
    01407 00000 - "can not update (%s) null.
    * Cause:
    * Action:

    Kindly help. Thanks in advance.

    Hello and welcome!

    You have foreign keys hanging out, doing so ON DELETE SET NULL?

  • Error: Not nullable column cannot be updated to null

    Error code.

    Code...-2147217887
    Description... Not nullable column cannot be updated to null.

    I'm doing an FDM of connection ODBC import. One of the column in the oracle database is assigned to the property "AllowNull" (impossible to change the ownership of the source table) and I try to import in the amount field in the staging table that has a property of 'NoNull' and there is therefore a conflict.

    Thank you.

    Just do a few null checks in your script integration and ignore the rows of data that are null. A simple way to do is to use IsNull (field in your source) to check if the source value is null. In this case do not import this data line.

  • ORA-01779: cannot modify a column that is mapped to a table not preserved key

    Hello
    I'm doing update join with the type of activity of lag on my 10.2.0.3
    Here's a simple test case:
    create table test1 (id1 number, id2 number, before varchar2(10), after varchar2(10));
    
    alter table test1 add constraint pk1 primary key (id1, id2);
    
    SQL> insert into test1 values(1,1 , 'a','b');
    
    1 row created.
    
    SQL> insert into test1 values(1,2 , 'b','c');
    
    1 row created.
    
    SQL> commit;
    
    
    
    
    select * from test1;
    
      ID1        ID2 BEFORE     AFTER
    ----- ---------- ---------- ----------
        1          1 a          b
        1          2 b          c
    
    
    
    update
     (select src.before src_before, tgt.before tgt_before from test1 src , test1 tgt 
        where 
        src.id1 = tgt.id1 
    and src.id2 = tgt.id2 + 1 )
    set tgt_before  = src_before
    /
    
    set tgt_before  = src_before
        *
    ERROR at line 2:
    ORA-01779: cannot modify a column which maps to a non key-preserved table
    Problem with tgt.id2 + 1, but I need that in my logic, so how do I get around this?
    Concerning
    GregG

    Published by: 3 Sep 2012 GregG 13:23
    removed and src.id2 = 1

    Published by: 3 Sep 2012 GregG 13:31
    Corrected as pointed by Dom

    Have you tried something like this:

    UPDATE test1 a
    SET    a.before = (SELECT b.before
                       FROM   test1 b
                       WHERE  b.id1 = a.id1
                       AND    b.id2 = a.id2 - 1)
    WHERE EXISTS (SELECT 1
                  FROM   test1 c
                  WHERE  c.id1 = a.id1
                  AND    c.id2 = a.id2 - 1)
    
  • SQL error: ORA-01779: cannot modify a column that matches a key examine

    Hi all

    The requirement is that I have two tables s_party_d and S_CONTACT_d. the need to update the column name with FST_NAME | ',' | Last_name when column rowid in both tables are equal. I used the query previously below: -.

    Update
    (select
    E1. Name,
    e.FST_NAME,
    Select
    Of
    s_party_d e1,
    E S_CONTACT_d
    where
    E1. Game of ROW_ID = e.ROW_ID)
    name = FST_NAME | ',' | LAST_NAME;

    But I get the error message when executing the query

    Error in the command line: 31 column: 3
    Error report:
    SQL error: ORA-01779: cannot modify a column that is mapped to a table not preserved key
    01779 00000 - 'impossible to change a column that is mapped to a non-preserved table at key'
    * Cause: An attempt was made to insert or update columns in a join finds out who
    map to a table not kept the key.
    * Action: Change the directly underlying base tables.

    Can U please tell me why this error and how to solve?

    Thank you
    Mathon

    Mathon wrote:

    So, I have to look into some other method... I can't achieve this using a single update statement...

    Well, no matter what you do you need to decide what FST_NAME | ',' | Name to use. As I already pointed out for each line of the line of the s_party_d table there are several rows in table S_CONTACT_d. Again, you must yo decide what S_CONTACT_d table row you want to use. For example:

    update s_party_d e1
       set e1.name = (
                      select  max(e.FST_NAME) ||', '|| max(e.LAST_NAME)
                        from  S_CONTACT_d e
                        where e1.ROW_ID=e.ROW_ID
                     )
     where e1.ROW_ID in (
                         select  e.ROW_ID
                           from  S_CONTACT_d e
                        )
    /
    

    SY.

  • ORA-01400: cannot insert NULL in

    Hi all
    I got the following error when inserting values in the database can someone guide me please?
    ORA-01400: cannot insert NULL in

    create table sara1
    (ID number primary key (10),)
    Add varchar2 (10) not null,
    Add2 varchar2 (10) not null;

    Insert into sara1
    (add, add2)
    values ('USA', 'Angel');

    ERROR on line 1:
    ORA-01400: cannot insert NULL in


    Sarah

    Published by: SarahSarahSarah on August 27, 2009 13:56

    Is missing a value for the column ID of the insert statement. And a primary key cannot contain NULL values.

    -Andy

    Published by: a Tael on August 27, 2009 16:03

  • Autconfig error: ORA-01400: cannot insert NULL into ('APPLSYS". "" "" FND_NODES '. "" NODE_NAME')

    Nice day

    I'm under EBS 11.5.10 with DB 10.2.0.4. I applied patch 7429271 following the steps described in the Doc id 233044.1.

    After restarting the application, I had one "node id does not exist for the current application" when forms started.

    After serving nodes (exec fnd_conc_clone.setup_clean) DNF, I ran successfully on the dbtier autoconfig but got the error below in the layer of apps.

    I also noticed that the content of my BCD file has been deleted and replaced by the model data (all values are by default). I tried to restore but it just had class written once again with default data.

    Hope my explanation was clear enough.

    Any suggestions?

    -adconfig.log error-

    Unique constraint error (00001) is OK if the key already exists

    java.sql.SQLException: ORA-01400: cannot insert NULL into ('APPLSYS". "" "" FND_NODES '. "" NODE_NAME')

    ORA-06512: at the 'APPS '. FND_CONCURRENT', line 1504

    ORA-06512: at the 'APPS '. FND_APP_SERVER_PKG', line 163

    ORA-06512: at line 1

    -Database error change the server

    You have the latest applied AutoConfig patch (Patch 9535311 - T2K AUTOCONFIG AND TEMPLATES CUMULATIVE HOTFIX U)? If this isn't the case, please apply the patch and then try.

    Additionally, make sure that you have entered in the file/etc/hosts.

    Thank you

    Hussein

  • Updated column by max - not where it is null

    Hi all

    I have the following table and the date with I want to update the column containing NULL values
    different date, these data are the maxmium number in the same column.
    create table test (id number(9), name number(9));
    
    insert into test values(1,2);
    insert into test values(2,2);
    insert into test values(3,2);
    insert into test values(4,2);
    insert into test values(5,2);
    insert into test values(6,null);
    insert into test values(7,null);
    insert into test values(7,null);
    I used this but this update columns with same value. So, it's not what I want
    update test set name=(select max(name)+1) from test) where name is null;
    I want the result like this
    id     name
    1       2
    2       2
    3       2
    4       2
    5       2
    6       3
    7       4
    7       5
    Note: the Id column may double
    Thanks in advance

    Published by: Isabelle November 23, 2012 23:51
    SQL> select  *
      2    from  test
      3  /
    
            ID       NAME
    ---------- ----------
             1          2
             2          2
             3          2
             4          2
             5          2
             6
             7
             7
    
    8 rows selected.
    
    SQL> update  test t1
      2     set  name = (
      3                  select  name
      4                    from  (
      5                           select  rowid rid,
      6                                   max(name) over() + row_number() over(order by name nulls first,id,rowid) name
      7                             from  test
      8                          ) t2
      9                    where t2.rid = t1.rowid
     10                 )
     11    where name is null
     12  /
    
    3 rows updated.
    
    SQL> select  *
      2    from  test
      3  /
    
            ID       NAME
    ---------- ----------
             1          2
             2          2
             3          2
             4          2
             5          2
             6          3
             7          4
             7          5
    
    8 rows selected.
    
    SQL> 
    

    SY.

  • Update on nulls in the column vs add column not null default 11 g

    Hello

    Let's take a scenario following 1. *

    We have a large partitioned table LARGE_TABLE1 (say: NUM_ROWS 5 904 977 029, size GB 326) in the Oracle 11 database.

    We want to add a new column NEW_COLUMN (NUMBER) and give a value of-999 to NEW_COLUMN each record in this table.
    ALTER TABLE LARGE_TABLE1 ADD (NEW_COLUMN NUMBER DEFAULT -999 NOT NULL);
    In Oracle 11 it would probably a second since the value of default -999 would be permanently added in metadata without updating each and every record 6 bln.

    Take a scenario 2 *

    We have another large partitioned table LARGE_TABLE2 (of similar size as LARGE_TABLE1) in the Oracle 11 database.

    We have an existing EXISTING_COLUMN (NUMBER) column that contains nulls 90% (90% of scores only contain null values in the field, and 10% of the scores only contain non-null values in this field)

    I would like to replace null values in EXISTING_COLUMN with number - 999.

    Update the column full Ascension not going :-) and doing so in a loop (the partition partition) would take a few days.

    Question:
    Do you know a way somehow write this -999 "overall" in the metadata as in scenario 1 instead of updating a null value in all the records to-999? No clever workaround solution would be appreciated...

    Edited by: SwPiotr 2012-04-24 07:26
    ALTER TABLE LARGE_TABLE1 ADD NEW_COLUMN NUMBER GENERATED ALWAYS AS nvl(col1, -999);
    
  • ORA-01400: cannot insert NULL into () in the procedure OE_Header_Util package

    Hi Hsawwan,

    When you try to save the header in the order form, you will see the following message in R12.

    Note
    --------------------------------------------------------------------------------
    ORA-01400: cannot insert NULL in
    ("TO HAVE". "" "" OE_ORDER_HEADERS_ALL '. "" ORDER_NUMBER") in the package OE_Header_Util procedure Insert_Row


    I followed the Doc-ID 1208783.1 and change the value of the profile Option, OM: Default sale Transaction Phase, NULL or "Fulfillment". and I srt a configuration document for sales orders sequence.


    Please help me how to solve the problem.

    Thank you
    Concerning
    GSM

    Are you connected to the correct responsibility?

    Have you checked if this simultaneous program is added to the application group that is the responsibility?

    Thank you
    Hussein

  • Import error: ORA-01400: cannot insert NULL in

    I'm performing a level schema import and I get this error. Half an hour, this error comes without any stop. could you please tell me how to ignore this error when executing import?

    IMP-00019: rejected due to the ORACLE 1400 error line
    IMP-00003: ORACLE error 1400
    ORA-01400: cannot insert NULL into ("LWARE_ADMIN". "" "" SAMPLE_AUDIT_LOG '. "" COUNTER")

    Db version is 10.2.0.4 and platform HP - UX B.11.31 U ia64

    Thank you!

    Hello

    Please read this article

    ORA-1400 when you import the Export Dump written in Mode Direct Path [ID 826746.1]

    Kind regards
    Rakesh jayappa

  • v4.0 - in the form of ORA-01445: cannot select ROWID from where sample,.

    Hello
    I have created a form in table form in version 4.0.
    Selection is based on three tables that have primary keys, the keys are selected, and whenever I run the page I get the following error:-
    Failed to parse the SQL query:
    ORA-01445: cannot select ROWID, or sample, join without table views preserved key

    The query runs very well in the TOAD

    Any ideas?

    Thank you

    Mike
    ___________________________________________________________________________________
    Select
    CTR. PERF_RATING_LINE_ID,
    CTR. PERF_RATING_LINE_ID PERF_RATING_LINE_ID_DISPLAY,
    CTR. BUSINESS_UNIT,
    CTR. EMPLID,
    ''''|| CTR. REVIEW_YEAR REVIEW_YEAR,
    CTR. REVIEW_PERIOD,
    CTR. PERFORMANCE_SCORE,
    CTR. MODERATED_SCORE,
    CTR. HUMAN RESOURCES MANAGEMENT,
    PRL.COMMENTS,
    ACB. BU_DESC,
    ''''|| ACB. DEPTID DEPTID,
    ACB. DEPT_DESC,
    ACB. EMPLOYEE_NAME,
    ACB. GRADE,
    CTR. SCORE_APPROVED_BY,
    ACB. TEMP_PERM,
    ACB. GENDER,
    ACB. JOB_START_DATE,
    decode (DECODE (SUBSTR (ACB. FLAG, 1, 5), "S Job", substr (CPR. FLAG, instr (CPR. FLAG,'~ ', 1) + 2, 3));
    "HIR", "Committed", "XFR", "Transfer", "REH", "recall").
    Decode (SUBSTR (ACB. FLAG, 1, 30), "work starts the period ~ XFR ',' - ' | substr (CPR. FLAG, instr (CPR. FLAG,'~ ', 1, 2) + 2)) JOB_START_DETAILS,.
    ACB. APPOINTMENT_DATE,
    SUBSTR (CPR. JOB_END_DETAILS, INSTR (CPR. JOB_END_DETAILS,'~ ', 1, 2) + 2) JOB_END_DATE.
    SUBSTR (CPR. JOB_END_DETAILS, INSTR (CPR. JOB_END_DETAILS,'~ ', 1, 1) + 2, INSTR (CPR. JOB_END_DETAILS,'~ ', 1, 2) - INSTR (CPR. JOB_END_DETAILS,'~ ', 1, 1)-2) REASON,
    ACB. JOB_GROUP,
    ACB. JOB_GROUP_DESC,
    ACB. JOBCODE,
    ACB. JOBCODE_DESC JOB_DESC,
    ACB. JOB_FAMILY,
    ACB. JOB_FAMILY_DESC,
    ACB. PBR_ID,
    MD. MGR_DEPT_ID
    PERFORMANCE_BASE_REFRESH_V ACB,.
    PERFORMANCE_RATING_LINE PRL,
    Y00_OPR_MGR_DEPT MD
    WHERE (PRL. BUSINESS_UNIT = ACB. BUSINESS_UNIT
    AND PRL. EMPLID = ACB. EMPLID
    AND PRL. REVIEW_YEAR = ACB. REVIEW_YEAR
    AND PRL. REVIEW_PERIOD = ACB. REVIEW_PERIOD)
    AND MD. OPRID =: APP_USER
    AND INSTR (': ' |) MD. DEPTS_MANAGED |': ',' :'|| ACB. DEPTID |': ') > 0
    AND MD. MGR_DEPT_ID > 0
    AND CPR. ADMIN_CENTRE IN
    (select c.deptid AC
    of PSHR. PSOPRDEFN@PSHR. CSIR.CO. ZA,.
    PSHR.PS_SCRTY_TBL_DEPT@PSHR. CSIR.CO. ZA C
    where A.ROWSECCLASS = C.ROWSECCLASS
    AND C.DEPTID! = 'ZZZZ '.
    and a.oprid =: APP_USER)
    AND (: P2210_BUSINESS_UNIT IS NULL)
    OR PBR. BUSINESS_UNIT =: P2210_BUSINESS_UNIT)
    AND (: P2210_EMPLOYEE_NAME IS NULL)
    OR INSTR (UPPER (CPR. Employee_name), UPPER (:P2210_EMPLOYEE_NAME)) > 0)
    AND (: P2210_DEPARTMENT IS NULL)
    OR PBR. DEPTID =: P2210_DEPARTMENT)
    AND (: P2210_PERFORMANCE_RATING IS NULL)
    OR PBR. PERFORMANCE_SCORE =: P2210_PERFORMANCE_RATING)
    AND (: P2210_MODERATED_RATING IS NULL)
    OR PBR. MODERATED_SCORE =: P2210_MODERATED_RATING)
    AND (: P2210_GRADE IS NULL)
    OR PBR. CATEGORY =: P2210_GRADE)
    AND (: P2210_PERM_TEMP IS NULL)
    OR PBR. TEMP_PERM =: P2210_PERM_TEMP)
    AND SUBSTR (NVL (ACB. (JOB_END_DETAILS, "XXX"), 1, 3) NOT ("TER", "TOC")
    AND PRL. SCORE_APPROVED_BY IS NULL

    Mike,

    We also changed our Wizard to create only validations for columns that are selected to be updated (in the wizard on the page in a table). And in the case of the application wizard, we examine if the columns have been excluded on the edit page popup page, and they are set to read-only through the default user interface. If you should only get validations for the columns that are modifiable, view-only / save state or hidden. We include only display / save state and hidden, because in both cases, you have actual shape on your page elements, which could easily be manipulated through common web tools.

    Kind regards
    Marc

  • call a function inside a function to insert into a table and receiver error - ORA-14551: cannot perform a DML operation within a query.

    Hi all

    your help is greatly appreciated...

    Calling B.fucntion inside an A.fonctions to insert data into a table.


    Here when you call the B.fucntion to insert data in the table... receiver AM a mistake

    Omitted in B - SQL Error: ORA-14551: cannot perform a DML operation inside a query...


    Can someone please help me to clarify this...


    The FUNCTION A(varUPD_TYPE IN VARCHAR2) RETURN VARCHAR2 IS
    varRETURN_VALUE VARCHAR2 (25): = NULL;

    numALLOWED_COUNT PROD. PROCESS_COUNTER. TYPE % ALLOWED_COUNT;
    numLAST_COUNT_ADDED PROD. PROCESS_COUNTER. TYPE % LAST_COUNT_ADDED;
    dtCHANGE_DATE DATE: = NULL;
    varSTMT VARCHAR2 (2000);
    bln_Allowed BOOLEAN;
    myVar VARCHAR2 (32767).


    BEGIN

    IF varUPD_TYPE = "A" THEN

    BEGIN
    SELECT CH_DATE, LAST_COUNT_ADDED, ALLOWED_COUNT
    IN dtCH_DATE, numLAST_COUNT_ADDED, numALLOWED_COUNT
    PROD. PROCESS_COUNTER
    WHERE NOM_PROCESSUS = "DAILY".
    AND COUNTER_IND = A '

    IF dtCH_DATE < = trunc (sysdate) THEN
    numLAST_COUNT_ADDED: = 0;
    END IF;

    EXCEPTION
    WHILE OTHERS THEN
    numLAST_COUNT_ADDED: = 0;
    numALLOWED_COUNT: = 1;
    END;
    IF numALLOWED_COUNT > = numLAST_COUNT_ADDED + 1 THEN

    bln_Allowed: = True;

    varSTMT: = "UPDATE PROD. TMS_PROCESS_COUNTER ';
    varSTMT: = varSTMT | ' SET last_count_added = ' | (numLAST_COUNT_ADDED + 1);
    varSTMT: = varSTMT | "WHERE nom_processus =" DAILY "';
    varSTMT: = varSTMT | "AND COUNTER_IND ="D"';


    IF varSTMT IS NOT NULL
    THEN
    MyVar: = B(96,varSTMT);
    PROC_LOG (' CALL B ': myVar);
    IF myvar > 0 THEN
    NULL;
    END IF;
    END IF;
    On the other

    End if;

    END IF;

    EXCEPTION WHEN OTHERS THEN
    PROC_LOG ("A failed '");
    PROC_LOG (' SQL error: ' |) SUBSTR (SQLERRM, 1, 1000));
    RETURNS A NULL VALUE.
    PUT AN END TO;

    The FUNCTION B(numTABLE_ID IN NUMBER, varSQL_STATEMENT IN VARCHAR2) RETURNS NUMBER IS
    varINSERT_BATCH_STMT VARCHAR2 (32767): = NULL;
    varADD_REC_TYPE BATCH_TABLES. TYPE % ADD_REC_TYPE;

    BEGIN

    INSERT INTO BATCH_STATEMENT (ID, TABLE_ID, STATEMENT, QUEUE_SEQUENCE_ID)
    VALUES (Numidian, numTABLE_ID, varSQL_STATEMENT, 1);

    EXCEPTION WHEN OTHERS THEN
    PROC_LOG ('B failed');
    PROC_LOG (' SQL error: ' |) SUBSTR (SQLERRM, 1, 1000));
    RETURNS - 1;
    END B;


    Structure of the Batch_statement table:


    ID Number (15) not null
    number (2) not null table_id
    Statement varchar2 (4000) not null
    Queue_sequence_id number (5) not null


    Why do you do such coding mess full of bad practices.

    Remove the exceptions WHEN OTHERS, you're a turing a mistake in this way, they are bugs and (never) use functions to perform DML.

    Functions are not intended for DML. Period.

Maybe you are looking for

  • 13 Adobe flash player crashes

    I have a mac version updated operating system, and this morning adobe installed the most recent version of flash player 13. + and it was crashing. I can't watch anything on youtube or another site. I am a web developer that uses the flash and it is a

  • Why Firefox brings to the top of the home page when I move my mouse?

    Nice day: When I reduce to Firefox at the moment where I move my mouse to see other documents, Firefox brings to the top of the page and it is very annoying because I have to permanently reduce it again and again... I would appreciate help with this

  • Office Jet 8620: Networked 8620 Pro always 'offline' in Windows 10

    My Office Jet Pro 8620 is still retained as 'offline' Windows 10, even if my printer Hp Assistant still connect to it fine.  The printer is on a network via ethernet cable and is always available via the internet printing as well. I finally gave up u

  • Crashes of aircraft Safari 9.0.3 10.11.3 on new tab

    Everything was OK (except my mid 2007 iMac lost his S/N after installation of 10.11, that is not the subject of this post!) with my Safari 9.0.3 on my OS 10.11.3 until tonight after installing latest Webstorm applications and Code in Visual Studio. A

  • I deleted the available network folders by default

    If this has been covered, I can not find, so apologies. I have deleted my default available network folders, but I don't know how to restore it. I hit the reset, but it is still gone. Can someone tell me please in the right direction to restore? Than