How to insert values into a view created on multiple tables

Hi all

My goal for insert values in a view
So for this I created a trigger
then I tried to insert the value in the view, im getting as inserted row, but the value is not getting inserted

Here are the steps I followed:


SQL > create table (x int primary key)
2.

Table created.

SQL > create table b (x references a, varchar2 (30)) y
2.

Table created.

SQL > insert into a values (1)
2.

1 line of creation.

SQL > insert into b values (1, 'One')
2.

1 line of creation.

SQL > create or replace view v
2 as
3 select a.x, b.x as b_x, a y, and b where a.x = b.x
4.

Created view.

SQL > select * from v
2.

X B_X Y
---------- ---------- ------------------------------
1 1 a

SQL > create or replace trigger v_t
2 instead of inserting it on v
3 for each line
4 start
case 5: old.x <>: new.x then
6. Insert in a values(:new.x);
7 end if;
case 8: old.b_x <>: new.b_x then
9 insert into b values (:new.b_x,:new.y);
10 end if;
11 * end;
SQL > /.

Trigger created.

SQL > insert into v values (20,20, 'Twenty')
2.

1 line of creation.

SQL > select * from v
2.

X B_X Y
---------- ---------- ------------------------------
1 1 a


Can anyone suggest me a valid query to insert data into a view that is created on several tables.

Thanks in advance,
Shalini

Hi Shalini,

You don't need the code if in your trigger.
That's more like code when you update, you don't compare OLD and insert the NEW values on.

MHO%xe> create table a(x int primary key);

Tabel is aangemaakt.

Verstreken: 00:00:00.11
MHO%xe>
MHO%xe> create table b(x references a,y varchar2(30));

Tabel is aangemaakt.

Verstreken: 00:00:01.09
MHO%xe>
MHO%xe> insert into a values(1);

1 rij is aangemaakt.

Verstreken: 00:00:00.01
MHO%xe>
MHO%xe> insert into b values(1,'One');

1 rij is aangemaakt.

Verstreken: 00:00:00.06
MHO%xe>
MHO%xe> create or replace view v as
  2  select a.x
  3  ,      b.x as b_x
  4  ,      y
  5  from   a
  6  ,      b
  7  where  a.x = b.x;

View is aangemaakt.

Verstreken: 00:00:01.07
MHO%xe>
MHO%xe> select * from v;

         X        B_X Y
---------- ---------- ------------------------------
         1          1 One

Verstreken: 00:00:00.04
MHO%xe>
MHO%xe> create or replace trigger v_t
  2  instead of insert on v
  3  for each row
  4  begin
  5      insert into a values(:new.x);
  6      insert into b values(:new.b_x,:new.y);
  7  end;
  8  /

Trigger is aangemaakt.

Verstreken: 00:00:01.64
MHO%xe>
MHO%xe> insert into v values(20,20,'Twenty');

1 rij is aangemaakt.

Verstreken: 00:00:00.06
MHO%xe>
MHO%xe> select * from v;

         X        B_X Y
---------- ---------- ------------------------------
         1          1 One
        20         20 Twenty

Tags: Database

Similar Questions

  • How to insert values into a table

    Hello Experts,

    I would like to know if its possible to fill data in one table by performing a loop.

    I have the following table:
    Draw)
    NUMBER OF NUM,
    START_DATE DATE NOT NULL,
    END_DATE DATE NOT NULL,
    CHAR DEFAULT ACTIVE (1 BYTE) 'Y')

    Now my table must contain the foll:
    NUM start_date end_date active
    1 2010-01-23 21:00 30/01/2010 19:00 Y
    2 2010-01-30 21:00 02/06/2010 19:00 Y

    I have an initial date and the end_date is always (start_date + 7) and the beginning of the next by the previous end_date but time varies from 19:00 to 21:00.


    This is what I have at the moment, but I'm stuck out of
    CREATE SEQUENCE num_seq
    MINVALUE 1
    START WITH 1
    INCREMENT BY 1
    CACHE 10
    
    CREATE OR REPLACE procedure draw_date IS
    
    
    begin
    
    INSERT INTO draws
    (num,
    start_date ,
    end_date,
    active )
    VALUES
    (num_seq.nextval,
    ?,
    ?+7 days,
    Y);
    COMMIT;
    end;
    but I'm kind of stuck a bit for the date

    Thank you

    Hello

    You can try something like:

    INSERT INTO draws
    (num,
    start_date,
    end_date,
    active)
    with last_date as (select trunc(max(end_date)) dt from draws)
    select
    num_seq.nextval,
    last_date.dt + 21/24,
    last_date.dt +7 +19/24,
    'Y'
    from last_date;
    COMMIT;
    

    Untested code because I don't have the create table and insert orders... and I'm feeling lazy today.
    ;)

  • How to insert data into a BLOB column using sql

    Hi all

    How to insert data into the BLOB column directly using sql.
    create  table temp
    (
      a blob,
      b clob);
    
    SQL> /
    Insert into temp  values ('32aasdasdsdasdasd4e32','adsfbsdkjf') ;
                                      *
    ERROR at line 1:
    ORA-01465: invalid hex number
    
    Please help in this.
    Thank you
    Prakash P

    Insert into temporary values (UTL_RAW. CAST_TO_RAW ('32aasdasdsdasdasd4e32'), 'adsfbsdkjf');

  • Gears - error when you try to insert values into a table with multiple columns

    Hello

    I started playing with the gears and SQlLite today and I get an error when I try to insert values into a table with multiple columns.

    I have:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text, DeveloperAge int)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?, ?)', [devName, devAge]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I get the error:

    net.rim.device.api.database.DatabaseException; insert into developers values (?,?): SQL logic error or missing database.

    I use this reference: http://code.google.com/apis/gears/api_database.html

    Everything works if I have only one field as:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?)', [devName]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I use the plug-in Visual Studio 2.0 for 2008 that are running Windows XP SP and Simulator 2.13.0.56

    Thank you

    Davy

    Yes, a SQLite database will persist between battery pulls.  The database is registered either to internal MEM or removable media (not the device memory), depending on which is available on your device.

    In general, its not considered a best practice to remove your table as soon as it is empty and re - create it again when you want to add data.  This adds extra overhead fresh for the final, delete and insert first for a given table.  Instead, define and finalize your drawing before you create your table.  Once created, review the static schema.

    That being said, for development purposes, it may be easier to provide an easy way to drop your tables while you develop your schema.

    See you soon,.

    Adam

  • table name not valid error when inserting values into a table

    I use the following statement to insert values into a table:

    curs. Execute ("INSERT INTO _ * '%s' * _ VALUES ((SELECT MAX (REC_ID) + 1 OF GSAP_MSG_IN), (SELECT MAX (gsap_msg_id) + 1 OF GSAP_MSG_IN), 'SHELLSAP', sysdate, '%s', EMPTY_BLOB(), 1, SYSDATE, EMPTY_BLOB (), SYSDATE)" %(*table_name*,file_extension)) ")

    whence table_name the following statement

    table_name = ' config.staging_db_tablesNames ['in_msgs]

    as I created a configuration file for all parameters that can change. The value of the table in the audit using a print command is correctly, but when put in the query above to run the insert statement gives an error. The following is the summary of comprehensive performance where you can see the table name as

    $ python gsapscnr.py
    Vote for the data files in/home/mh/inbox /...

    GSAP_MSG_IN
    Traceback (most recent call changed):
    File "gsapscnr.py", line 147, in it?
    poll_for_data()
    File "gsapscnr.py", line 86, in poll_for_data
    Sorter = load_details_first)
    File "gsapscnr.py", line 42, survey
    curs. Execute ("INSERT INTO '%s' VALUES ((SELECT MAX (REC_ID) + 1 OF GSAP_MSG_IN), (SELECT MAX (gsap_msg_id) + 1 OF GSAP_MSG_IN), 'SHELLSAP', sysdate, '%s', EMPTY_BLOB(), 1, SYSDATE, EMPTY_BLOB (), SYSDATE)" %(table_name,file_extension)) ")
    cx_Oracle.DatabaseError: ORA-00903: invalid table name

    Can anyone help with this problem please. I'm passing the value of the table in a bad way. Also if anyone can suggest a good tutorial for paythong programming using cx_Oracle.

    Concerning

    Print the SQL string that you establish, cut and paste it this output in SQL * more and see if it runs. This may show you that you should remove the single quotes around the name of the table %s in the Python file.

  • How to insert data into the table by using the expression builder in the assign activity

    How to insert data into the table by using the expression builder in affect business in BPEl, I use SOA Suite 11.1.1.5
    Can someone help me please

    Hello

    I don't think that oraext:query-database() can insert data into the table.

    What are your needs?
    Can not you plan to use the DB adapter with the insert operation?

    Kind regards
    Neeraj Sehgal

  • How to find the views created on a table... ?

    Hi all

    I have a table name, EMP. I want to know what are the views created on this table. Is there any SQL query is there for this or any other
    How to find.

    Thanks in advance.
    PAL

    You can use ALL_DEPENDENCIES to this:

    SQL> create view emp_v as select * from emp;
    
    View created.
    
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where  name = 'EMP_V';
    
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    ------------------------------ ---------------------------------------------------------------- ----
    EMP_V                          EMP                                                              TABLE
    
    1 row selected.
    
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where referenced_name = 'EMP';
    
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    ------------------------------ ---------------------------------------------------------------- ----
    EMP_V                          EMP                                                              TABLE
    EMP_TRG                        EMP                                                              TABLE
    
    2 rows selected.
    
    SQL> 
    

    Remember it's important if you limit the NAME or REFERENCED_NAME.
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/statviews_1041.htm#sthref935

    Edit

    Ah, Gave!
    If you don't want to teach him something and become independent?

    Now you made me feel guilty ;) (don't know what that Johan position initially, but anyway...)
    I blame my currently terribly slow connection for this...

    Anyway, OP, always start a quick search of the documentation first.
    Chances are that you will find you your answer.
    Houses:
    http://www.Oracle.com/pls/db102/homepage
    http://www.Oracle.com/pls/db112/homepage

    Published by: hoek on 15 October 2010 14:53

  • How to insert values of array of String in BPM

    Hello

    I have defined an array of strings in the business object, created a data object and want to fill/insert values inside. I searched a lot of messages and tried several options but no luck.

    My BO:

    " < xs: Schema targetNamespace = ' http://xmlns.Oracle.com/BPM/bpmobject/TestTypes/SimpleArrayBO "elementFormDefault ="qualified"xmlns =" http://xmlns.Oracle.com/BPM/bpmobject/TestTypes/SimpleArrayBO "" xmlns: XS = " http://www.w3.org/2001/XMLSchema " xmlns:bpmo =" http://xmlns.Oracle.com/BPM/bpmobject/ " > ""

    < name XS: complexType = "SimpleArrayBOType" >

    < xs: SEQUENCE >

    < name XS: ELEMENT = "attr1" nillable = "true" type = "xs: String" maxOccurs = "unbounded" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < xs: element name = "SimpleArrayBO" type = "SimpleArrayBOType" / >

    < / xs: Schema >

    Add a script task and tried different ways to fill in the values.

    Basic ['a', 'b'] also fails with the error expected "-result tree fragment" rather than "string".

    How to manually enter the values?

    Thank you

    Chandra

    Because your input is coming from a few strings and not a table, you can just add a Script activity to your process and to define table of your target XSD using XML.

    To do this, you must add a Script to the activity-> in the "Application" tab click on 'Data Associations'-> dragging the "Expression" icon above your target object on the right side (not the table but the table parent)-> open the XPath expression box in the Middle-> click 'XPath Exp' in the drop-down list at the top.

    I used your XSD to create the XML file for the logic below:

    oraext:ParseXml (concat ('))

    http://www.w3.org/2001/XMLSchema-instance '.

    "" xsi: schemaLocation = "http://xmlns.oracle.com/bpm/bpmobject/TestTypes/SimpleArrayBO xsd/mySimpleArray.xsd.

    xmlns ="http://xmlns.oracle.com/bpm/bpmobject/TestTypes/SimpleArrayBO" >. "

    ', bpmn:getDataObject('string1') '

    ', bpmn:getDataObject('string2') '

    '))

    When I 'bpmn:getDataObject('...')', you should rather to insert your data object variables both your process chain.

    Hope it gets you going,

    Dan

  • How to insert xml into a table in different format

    Hello
    My version of db: database Oracle 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production

    I have a xml as below:
    <?xml version="1.0"?>
        <ROWSET>
        <ROW>
        <a>CNET</a>
        <b>21416911</b>
        <c>12345678</c>
        <d>878787</d>
        </ROW>
    </ROWSET>
    
    creating a test table:
    CREATE TABLE test (
        friendlyname VARCHAR2(150),
        value varchar2(200));
    I want to insert the XML in the test of the table as below
    SELECT * FROM test;
    friendlyname value
    a   CNET
    b   21416911
    c   12345678
    d   878787
    Please advice.

    Here's the idea:

    SQL> DECLARE
      2
      3    xmldoc xmltype := xmltype(
      4  '
      5      
      6      
      7      CNET
      8      21416911
      9      12345678
     10      878787
     11      
     12  ') ;
     13
     14  BEGIN
     15
     16    INSERT INTO test (friendlyname, value)
     17    SELECT x.fname, x.value
     18    FROM XMLTable(
     19           '/ROWSET/ROW/*'
     20           passing xmldoc
     21           columns fname varchar2(150) path 'local-name(.)'
     22                 , value varchar2(200) path 'text()'
     23         ) x ;
     24
     25  END;
     26  /
    
    PL/SQL procedure successfully completed
    
    SQL> select * from test;
    
    FRIENDLYNAME     VALUE
    ---------------- ------------
    a                CNET
    b                21416911
    c                12345678
    d                878787
     
    

    Can be optimized according to the size of input XML code and its location.

  • How to insert data into the table of plain text stored as a CLOB in another table

    Hi people,

    Maybe it's an easy question for someone who is more frequently used files and CLOB.

    I have a table that stores text files in the CLOB column. Files text includes some basic data that I want to load in the other - a text line = a new insert for me. Is there a "trick" how to do it effectively?

    Here is my model:

    Table OS_IMPORT_DOCS, stores the complete files as CLOB
    SQL> desc OS_IMPORT_DOCS
    Name          Type           Nullable Default Comments 
    ------------- -------------- -------- ------- -------- 
    OBJECT_ID     NUMBER                                   
    DATUM_ZMENY   DATE                    sysdate          
    FILE_PATH     VARCHAR2(4000) Y                         
    FILE_NAME     VARCHAR2(4000) Y                         
    FILE_SIZE     NUMBER         Y                         
    LAST_MODIFIED DATE           Y                         
    DOCUMENT      CLOB           Y                         
    STATUS        VARCHAR2(15)   Y        'NEW'  
    Sample data from OS_IMPORT_DOCS
    SQL> select *
      2    from os_import_docs d
      3  order by d.last_modified desc
      4  ;
     
     OBJECT_ID DATUM_ZMENY FILE_PATH                      FILE_NAME       FILE_SIZE  LAST_MODIFIED DOCUMENT    STATUS
    ---------- ----------- ------------------------------ --------------- ---------- ------------- ----------- ---------------
       1815043 13.8.2012 1 d:\data\C120813.DAT            C120813.DAT          16800 13.8.2012 16: <<CLOB>>    NEW
       1815042 13.8.2012 1 d:\data\C120812.DAT            C120812.DAT           3600 12.8.2012 22: <<CLOB>>    NEW
       1815041 13.8.2012 1 d:\data\C120811.DAT            C120811.DAT           1800 11.8.2012 13: <<CLOB>>    NEW
    Example of file CLOB - stored text data (select d.document from os_import_docs d where d.object_id = 1815042 ;)
    061053120820120000AGT000002Osoby                   0000000042301000000017210632
    062322120820120000AGT000002Osoby                   0000000012301000000017197566
    063526120820120001AGT000002Osoby                   0000000012301000000017197566
    064234120820120001AGT000002Osoby                   0000000103301000000162218777
    Above the example text includes "columns" in plain text:
    timestamp - 1-14, SSMIHH24DDMMYYYY position format
    flag - post 15-18
    company code - position 19-27
    etc...

    How can I query data stored within the OS_IMPORT_DOCS. The DOCUMENT column, divide it into columns and insert into another table?
    I have to read this method of 'online' file?


    Thank you very much
    Tomas

    For the first three columns:

    SQL> create type TRecord is object (
      2    ts           timestamp
      3  , flag         varchar2(4)
      4  , company_code varchar2(9)
      5  );
      6  /
    
    Type created
    
    SQL>
    SQL> create type TRecordTable is table of TRecord;
      2  /
    
    Type created
    
    SQL>
    SQL> create or replace function parse_clob (p_doc in clob)
      2  return TRecordTable pipelined
      3  is
      4    lf      number;
      5    eol     varchar2(2) := chr(10);
      6    eollen  number := length(eol);
      7    line    varchar2(32767);
      8    offs    number := 1;
      9  begin
     10    loop
     11      lf := dbms_lob.instr(p_doc, eol, offs);
     12      if lf != 0 then
     13        line := dbms_lob.substr(p_doc, lf - offs + 1 - eollen, offs);
     14        offs := lf + eollen;
     15      else
     16        line := dbms_lob.substr(p_doc, dbms_lob.getlength(p_doc) - offs + 1, offs);
     17      end if;
     18      pipe row (
     19        TRecord(
     20          to_timestamp(substr(line, 1, 14), 'HH24MISSDDMMYYYY')
     21        , substr(line, 15, 4)
     22        , substr(line, 19, 9)
     23        )
     24      );
     25      exit when lf = 0;
     26    end loop;
     27  end;
     28  /
    
    Function created
    
    SQL>
    SQL> select t.*
      2  from os_import_docs d
      3     , table(parse_clob(d.document)) t
      4  where d.object_id = 1815042;
    
    TS                                     FLAG COMPANY_CODE
    -------------------------------------- ---- ------------
    12/08/12 06:10:53,000000               0000 AGT000002
    12/08/12 06:23:22,000000               0000 AGT000002
    12/08/12 06:35:26,000000               0001 AGT000002
    12/08/12 06:42:34,000000               0001 AGT000002
     
    
  • How to insert data into the initialization blocks

    I want to connect the user which connect to the obiee system. in the initialization, user blocks, we can get, but how to insert the date and user in the database is it in any way. Thanks in advance.

    The connection id is stored in the system USER session variable. You can use it to insert into the database in the initialization block.

    INSERT INTO tablename (username, date) values (': USER ', sysdate);

  • How to insert image into TextFrame?

    Hi Experts

    I want to insert the image into a textframe which includes extreme data (means a + sign is exist on textframe limit).

    My text length is 200 characters. but in the text, character of Fame only 100 is visible.

    I want to insert image after 150 characters to start using script, but the image is not insert.

    My Script is: -.

    indesign #target

    var myDocument = app.activeDocument;

    Try

    {

    var myTextFrame = myDocument.spreads.item (0).textFrames.item (1);

    var insertionPoint = myTextFrame.insertionPoints.item (150);

    var TextFrame = insertionPoint.textFrames.add ((myDocument.layers.item ("Layer 1")));

    insertionPoint.place(File("/C/temp/1.jpg"));

    }

    catch (e)

    {

    var k = 0;

    }

    If I increase the texts as much as which frame size + delete sign or set of 200 characters appear in textframe then image is inserted in the text block.

    But I can't increase the size of the text frame.

    But I can create a new textframe and then link this with previous textframe textframe.

    How to insert images in this State?

    Thank you.

    Hello

    Change:

    var insertionPoint=myTextFrame.insertionPoints.item(150);
    

    TO:

    var insertionPoint=myTextFrame.parentStory.insertionPoints.item(150);
    

    TextFrame has so many insertionPoints that can be demonstrated, no more.

    You can access a story insertionPoints no matter what frame is its parent.

    Jarek

  • How to insert data into the database using smartview

    Hello
    I am trying to insert data into the database using * "Send data" * button on the Ribbon of Essbase.
    My database is empty.

    I opened an ad hoc network, it returns * "#missing" * in all cells
    I have modified the cells and provided data in the cells that I want to. Now, I supported on * "Send data" * button.
    It just reloaded the adhoc grid instead of submit data, I rechecked the data through data console Administrative Service are not inserted.

    I am following the right way to insert data? If not, could you please suggest me how (Populate) insert default data in the database?

    --
    VINET

    You go about it the right way, once you have submitted if you réactualisiez then data values should be there, if you POV is against members of dynamic calc and then data not written to the database, you need to check the Member properties of your POV.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to insert data into the BLOB column

    Hi all

    Can someone help me to insert data in the BLOB data type column?

    The structure of the table is
    CREATE TABLE XXATFL_DM_FORCAST_STG
    (
    TASK_ID NUMBER,
    USER_ID NUMBER,
    CREATED_BY NUMBER (15),
    CREATION_DATE DATE,
    LAST_UPDATED_BY NUMBER (15),
    DATE OF LAST_UPDATE_DATE,
    LAST_UPDATE_LOGIN NUMBER (15),
    RECORD_STATUS VARCHAR2 (1 BYTE),
    ERROR_MESSAGE VARCHAR2 (4000 BYTE),
    DATA_FILE BLOB
    )

    I want to insert data into the column DATA_FILE. and this insert statement inside a procedure.

    Please help me as soon as possible because it is very urgent for me

    Thank you and best regards,
    Charrier

    Charrier,

    If you form the string yourself, you can use the function utl_raw.cast_to_raw on your channel.

    http://download.Oracle.com/docs/CD/B12037_01/AppDev.101/b10802/u_raw.htm#997086

    sql> create table t(
      2    id number,
      3    l_blob blob
      4  );
    
    sql> insert into t values(1, utl_raw.cast_to_raw('SampleString'));
    
    1 row created.
    
    sql> commit;
    
    Commit complete.
    
  • How to insert records into a table from a button?

    Hey,.

    I use Oracle form and I have a trigger button when button pressed.

    I have a project being given for one of my classes. Basically, I have a Customers table and they hit the news. When they press submit, it must insert it into the table.

    And here is the code I wrote to be inserted inside the button

    declare


    v_cust_id customer_detail.customer_id%type;

    v_f_name customer_detail.fname%type;

    v_l_name customer_detail.lname%type;

    v_destination customer_detail.destination%type;

    v_travel_date customer_detail.travel_date%type;

    v_address customer_detail.address%type;

    v_telephone customer_detail.telephone%type;


    Start

    insert into customer_detail

    values (v_customer_id, v_fname, v_l_name, v_destination, v_travel_date, v_address, v_telephone);

    end;

    /


    But its gives me an error. Is a PLsql Oracle form different syntax?

    Why do you need to insert in the command, when applications oracle has this native features?

    Make a form based on the table and just use

    COMMIT_FORM; on your BUTTON.

    Hope this helps

    Hamid

Maybe you are looking for

  • How to find RAM on Satellite Pro M40x slot?

    Hi all I spent my entire day to find a built in RAM to replace with 1 new but unfortunately and unfortunately I can not find built-in RAM.I removed the keyboard, but there is that wireless card that I see here. Apartment for her I can't RAM. Can some

  • Satellite A100: Questions regarding the WiFi printer & router

    My Satellite A100 says he has: Compliance: Wi - FiNetwork support: 802. 11 b / g built-inWireless technology: Wireless LAN I would like to know: (1) I guess that means that if I have a wireless laptop router connects through a kind of indoor antenna

  • Impossible to get Graph.DataSource to work in WPF, I (thread question?)

    My chart is work beautifly when I use: chartCollection.Append (measure. GHz, measurement.dB); But when I try to use this call to the same method, I get nothing on the graph: Double data = new double [256]; .... Graph DataSource = data; I know not if

  • How can I get rid of this black recovery?

    The line below the bar containing the 'tools' to address. "Help" buttons, etc. is suddenly covered by a thick black line, so I see no more buttons. How can I get rid of this black recovery?

  • Realtek: Admin or Power-up password

    I get admin or power on password, now it is disabled, the disabled system number is 68583424