searching for a column value

Hello

I need a little faovour... I need search a pariticular table column value... !! Whenever my superiors asking
What table with that value... This value... etc... !!!

For this I need a solution... (select query). If I give the value name and the column of the table... I can't what column having this perticular value? is this possible? I have many tables and each table has many columns. It takes a lot of time to search for a value of column for each table and columns. Please give me a nice solution.

Thanks to the adv.


Concerning
Rekha

for number

SQL> select table_name, column_name
  2    from (select rownum,table_name, column_name,
  3                 dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =
&val') x
  4            from user_tab_columns where data_type='NUMBER'
  5  ) where length(x)!=0
  6  /
Enter value for val: 3000
old   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =&val') x
new   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =3000') x

TABLE_NAME                     COLUMN_NAME
------------------------------ ------------------------------
EMP                            SAL
TID                            SAL

7 rows selected.

SQL> 

for varchar2

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

SQL> select table_name, column_name
  2    from (select rownum,table_name, column_name,
  3                 dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =
''&val''') x
  4            from user_tab_columns where data_type='VARCHAR2'
  5  ) where length(x)!=0
  6  /
Enter value for val: OPERATIONS
old   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =''&val''')
new   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =''OPERATIO

TABLE_NAME                     COLUMN_NAME
------------------------------ ------------------------------
DEPT                           DNAME

SQL> 

Tags: Database

Similar Questions

  • Search for the text value data store

    Hello, I have a PDO of data to store, and I would like to search for a text value in a quantity of measure.  In each of my test series, there is a quantity of measure with the name TCNAME and stores the cell name of test in the string format.  I would like to get all the TCNAMEs that contain "TC4" for example.  Currently, I have to load TCNAME in the portal and display it in an array of string.

    Any ideas how I can do this?

    I assume you are using a PUMA testbed that stores this kind of goods on a unique value chain chains.

    There is no direct search method, so I guess that a script is the only solution we can offer.

    Datafinder you can search for the minimum and maximum of a channel. That would be too much work in the store of ASAM.

    "PDO / cpp"
    protected tcnameMQs: set tcnameMQs = store. GetElementList ("MeasurementQuantity", "name = TCNAME", true)
    protected tcnameMQ: for each tcnameMQ in tcnameMQs
    MsgBox tcnameMq.References ("local_columns"). Elements (1). Properties ("values"). Value
    Next

    ' AOP5 / Corba
    protected tcnameLCs: set tcnameLCs = store. GetElementList ("LocalColumn", "measurement_quantity.name = TCNAME", true)
    protected tcnameLC: for each tcnameLC in tcnameLCs
    MsgBox tcnameLC.Properties ("values"). Value
    Next

    I have added the example which should be the shortest path from my point of view. In AOP5, you can search LocalColumn and spend BA which is less overhead.

    It is perhaps a good idea to post-processing of the data base and crush the decription "Test name" by

    "The test cell name == NAME. You can search not post-processed by Searchin' for.

    protected tcnameMQs: set tcnameMQs = store. GetElementList ("MeasurementQuantity", "description = name of the test cell", true)
    protected tcnameMQ: for each tcnameMQ in tcnameMQs
    tcnameMQ.Properties ("description"). Value = "name of the test cell is" & tcnameMq.References ("local_columns"). Elements (1). Properties ("values"). Value
    Next
    Store.Save

    Thereafter, you would be able to search for it.

    Greetings

    Andreas

  • The search for Clob columns in interactive report

    I use APEX 3.2 with 10g. I have an interactive report with a query that takes several recordings of 'comments' and the concatenates using a function that returns a Clob. In the report, there are several of these comments columns mixed with some small varchar2 columns.

    Using the search bar, if I type in a Word and click OK, it does not seek my Clob columns. On the other hand, I can use the drop-down list in the search bar to indicate I want to only search one of these Clob columns, then the research works.

    Is there a reason that my filters 'Text line contains' do not include my Clob columns? I have defined, as the "Standard report column" and they all "filter" checked as a permitted operation.

    Greg

    I found a work around for this problem. IR reports do not seem to automatically search for CLOB columns as a search ROWTEXT (unless you are specifically targeting this column). So, I wrapped the CLOB column with:

    DBMS_LOB.substr(clob_column_name,4000,1)

    This converts the CLOB Varchar2 column, which made the report «see» IR Of course, this only works if you want to search for the first 4000 bytes, but the data in my CLOB columns are never more than a few sentences long.

  • How to search for items by value in Multisim?

    I have several caps 100nF in my diagram. How can other than to make a BOM, I get the diagram for just the value? So far, I get 0 results.

    Thanks for the help.

    Scotty544

    The search in Multisim search RefDes, not the value. However, if the version you have the spreadsheet component, you can select the value column (click on the header) and then click the sort Ascending or Sort Descending button to group all of the components.

    I also have a request to expand the search to include the value and other data.

  • Reg: Search for nullable columns

    Hi all

    I have a DIAGNOSIS table that has a QDESC as a nullable column.
    DIAGCODE and SDESC columns are not nullable.

    I wrote a stored procedure to retrieve the records from the table of DIAGNOSIS based on the values of columns specified.

    P_ < nom_de_colonne > indicates that the parameter passed to the stored procedure

    Correspong SQL statement goes as follows.

    SELECT * DIAGNOSTIC
    WHERE
    UPPER (DIAGCODE) AS
    (CASE WHEN LENGTH (p_DIAGCODE) > 0 THEN '%' |) Upper (p_DIAGCODE) | '%' ELSE '%' END)

    AND UPPER (SDESC) AS
    (CASE WHEN LENGTH (p_SDESC) > 0 THEN '%' |) Upper (p_SDESC) | '%' ELSE '%' END)

    -QDESC is a nullable field; but the following logic doesn't :-(
    AND UPPER (QDESC) AS
    (CASE WHEN LENGTH (p_QDESC) > 0 THEN '%' |) Upper (p_QDESC) | '%' ELSE '%' END)


    Examples of data in the table is as follows.

    DIAGCODE SDESC QDESC
    --------------- ------------ ------------
    123 / / DESC 1 AAA
    123 / / DESC 2
    123 / / DESC 3 BBB
    123 / / DESC 4


    When I use the query above to search for records with DIAGCODE like 123, I get

    DIAGCODE SDESC QDESC
    --------------- ------------ ------------
    123 / / DESC 1 AAA
    123 / / DESC 3 BBB


    That is to say QDESC with null values are not displayed.

    How am I supposed to change the query to get the correct result?

    Any help would be much appreciated.

    Thank you best regards n,.
    Tanuja

    There are several illusions here.

    First of all: SQL has a logic to three values: TRUE, FALSE and NULL. The result of any operator is TRUE or FALSE and that you can only search for NULL values explicitly using IS NULL.
    Second: You need the dynamic SQL statements: immediate execution or dbms_SQL. Your variable is a column name, not a constant, if you need to build a string that contains the required SQL statement and present the use execute sql immediately or dynamics.
    This will reduce scalability.
    Third: < function name > < some constant > = (column) will ensure that any index on < column > is not used.
    Usually, this will result in catastrophic performance.

    -----
    Sybrand Bakker
    Senior Oracle DBA

  • Search for the nearest value table

    IM wondering if its possible to find a 1 d table worth, if it is not found, then find the nearest match. IM using the 'double' data type and I need at least an accuracy of 4 decimal point in the research.

    For now, im rounding decimal values to the nearest integers from you, but it is not effective at all. Im getting a lot of unwanted split in the plot. I need to be able to search for the decimal points. I found this function "About Equals.VI" starting from a previous thread. Even that uses the concept of the rounding.

    I enclose 3 screws "0.8 & 0.4.VI" are that I created, rounding decimals nearest digit.

    The "approximately equal" is the one I found online.

    The 3rd is I try to mess with what I can find as close a match.

    Y at - it a trick to work around this problem?

    Thank you

    Eureka

    This VI uses the first type of step 3 in your data.  Since you said that you can get the data, you can drop the in VI.

    At the end where I calculate the slope, you can use a linear adjustment if you have full or professional LabVIEW.

  • Search for a column

    Hi all

    I have about 50 tables in a schema ABC

    I am looking for a column of perticualar like XYZ

    As my tables contain huge data, is it possible to search this perticualr column

    can someone sugest me please.

    Thank you

    Hello

    To find the tables in the schema of the CBA who have a column named XYZ:

    SELECT  table_name
    FROM    all_tab_columns
    WHERE   owner        = 'ABC'     -- Case sensitive!
    AND     column_name  = 'XYZ'     -- Case sensitive!
    ;
    

    Published by: Frank Kulash, November 18, 2011 17:20

  • search for a matching value database

    An existing database stores the results of a test like col 1 "Serial number" col 2 date etc.

    There is now an obligation of search on the serial number and to display the results associated with it (lines).

    I have the set of database tools and have begun using the vi SQL to retrieve the serial number from several Ref recordset. I'm at the point where I now need select the line corresponding to this Ref number but I was wondering if it would be better to read in the database in a table and then make a search on the serial number text search pass, get the table row where matches occur and then display the lines , or is this road very long-winded and should stick with the SQL vi?

    Thank you

    Jack

    The query SELECT * FROM tablename WHERE Serial_number = "0002" would return the entire row for each occurrence of serial number 0002. If you wanted only to pass the results, the query is SELECT * FROM tablename WHERE Serial_number = '0002' AND Status = 'Pass '.

    Do not use the column names with spaces in them!

    I've seen many references to SQL online, and there are books available. I don't have that I could recommend, however. I learned using SQL Server and a SQL expert in our IT Department

  • Advanced search for a price range while searching for an empty values using php in DW

    I'm creating an advanced search with DW php. I want to present a research where some titles can be left black. If looking for empty values (which I did, thank you David Powel), however then research across a range of prices doesn't seem to work.

    Please see attached form:

    The search page:

    <form action="Detailed-Search-Result.php" method="get" target="_self"><table width="90%" border="0" cellspacing="0" cellpadding="2">
      <tr>
        <td colspan="2"><label for="Detailed Search">Advanced Search</label></td>
        </tr><tr>
        <td><label for="Product">Product:</label>
          </td>
        <td><select name="Category" id="Category">
          <option value=></option>
            <option value="Keyboard">Keyboard</option>
            <option value="Piano">Piano</option>
          </select></td>
      </tr>
      <tr>
        <td><label for="Make">Make:</label>
        </td>
        <td><select name="Manufacturer">
          <option value=></option>
          <option value="Boss">Boss</option>
          <option value="Casio">Casio</option>
          <option value="Kawai">Kawai</option>
          <option value="Ketron">Ketron</option>
          <option value="Korg">Korg</option>
          <option value="Roland">Roland</option>
          <option value="Samson">Samson</option>
          <option value="Yamaha">Yamaha</option>
        </select></td>
      </tr>
      <tr>
        <td><label for="Color">Color:</label></td>
        <td><select name="Color">
          <option value=></option>
          <option value="Black">Black</option>
          <option value="Cherry">Cherry</option>
          <option value="Mahogany">Mahogany</option>
          <option value="Polished Eboney">Polished Eboney</option>
          <option value="Rosewood">Rosewood</option>
          <option value="White">White</option>
          <option value="Red">Red</option>
        </select></td>
      </tr>
    
      <tr>
        <td><label for="Price">Price:</label></td>
        <td><select name="Price">
          <option value=></option>
          <option value="0-500">£0-500</option>
          <option value="500-1000">£500-1000</option>
          <option value="1000-2000">£1000-2000</option>
          <option value="2000">£2000&gt;</option>
        </select></td>
      </tr>
      <tr>
        <td colspan="2">
          <input name="Search2" type="submit" id="Search2"></td>
        </tr>
        </table>
    </form>
    
    

    The results page

    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    }
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    }
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    }
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Price'])) {
      $varPrice_rsgetsearch2 = $_GET['Price'];
    }
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = 'SELECT * FROM products';
    $where = false;
    if (isset($_GET['Category']) && !empty($_GET['Category'])) {
     $query_rsgetsearch2 .= ' WHERE Category LIKE varCategory '. GetSQLValueString($_GET['Category'], 'text');
      $where = true;
    }
    if (isset($_GET['Manufacturer']) && !empty($_GET['Manufacturer'])) {
      if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
     $query_rsgetsearch2 .= 'Manufacturer LIKE varManufacturer ' . GetSQLValueString($_GET['Manufacturer'], 'text');
    }
    if (isset($_GET['Color']) && !empty($_GET['Color'])) {
        if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
      $query_rsgetsearch2 .= 'Color LIKE varColor ' . GetSQLValueString($_GET['Color'], 'text');
    }
    if (isset($_GET['Price']) && !empty($_GET['Price'])) {
        if ($where) {
                        } 
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
     switch( $_GET['Price'] ){
            case '0-500':
            $query_rsgetsearch2 .= '  RRP BETWEEN 0 AND 500 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 500 AND 1000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 1000 AND 2000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break; 
              case '2000':
           $query_rsgetsearch2 .= ' RRP BETWEEN 2000 AND 10000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
    }
    
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text"));
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    
    

    I would be greatfull for any help

    I managed to solve the problem.

    Ultimately I don't check if the values were empty, as it worked fine without. However, the switch of the price did not work in combination with the rest of the query.

    I solved the problem as follows:

    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    }
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    }
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    }
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Keysound_price'])) {
      $varPrice_rsgetsearch2 = $_GET['price'];
    
    }
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text") );
    switch( $_GET['price'] ){
            case '0-500':
            $query_rsgetsearch2 .= ' AND price BETWEEN 0 AND 500 ORDER BY price ASC';
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 500 AND 1000 ORDER BYprice ASC';
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 1000 AND 2000 ORDER BY price ASC';
            break;
              case '2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 2000 AND 10000 ORDER BY price ASC';
            break;
    }
    
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    

    I'm sure you can keep checking the values, however for me the most was not necessary for this.

    Thanks for your help

  • Is there a way to search for a specific value of margin (or margins wo a specific value)?

    In a body of book, I fixed the installer of margins. On some pages, I replaced the bottom for design margin. In reviewing the book, I found a few pages where I accidentally changed the inside or the outside margin.

    Say my inner margin est.75 po. Is there a way to search and find all the pages with a padding pas.75 margin or if not all inside margins less de.75, upper to, etc.?

    Any ideas would be welcome.

    Well, it's a simple script. Here's one who seeks margins less than the specified threshold, in this case 1.0 (regardless of your units of the rule):

    var threshold=1.0,
        i, m=app.activeDocument.pages.everyItem().marginPreferences;
    for (i=0; i		   
  • Search for a specific column to a large database entry

    So our program manager approached me today looking for the combination of the specific table/column and its referential integrity that contains several entries in the column with the value 'AMSA.

    Our database has 4000 + tables so I'll try to track down one by one to which table has these entries, but does anyone know a quick search for this tool?

    Hello

    Will you please check the following and whether it is useful and important, wort can be run in your target database.

    With the following query, you would be able to get the "select" statements to find in each table. column, at the entrance of the AMSA.

    WITH CANDIDATE_TABLES
    AS
    (SELECT OWNER, TABLE_NAME, COLUMN_NAME, DATA_TYPE, DATA_LENGTH
    FROM DBA_TAB_COLUMNS
    WHERE OWNER IN ('OWNER1') /*  <<<<<<<<<< PUT ALL SCHEMAS, COMMA SEPARATED >>>>>>>>   */
    AND (DATA_TYPE LIKE '%CHAR%' AND DATA_LENGTH > 3) /* because AMSA has more than 3 chars*/
    AND TABLE_NAME NOT LIKE 'BIN$%$0'
    AND (OWNER,TABLE_NAME) NOT IN (SELECT OWNER,TABLE_NAME FROM DBA_TABLES WHERE TEMPORARY='Y' UNION SELECT OWNER,TABLE_NAME FROM DBA_EXTERNAL_TABLES)
    )
    SELECT 'SELECT /*+ PARALLEL(4) */ '||''''||OWNER||'|'||TABLE_NAME||'|'||COLUMN_NAME||''''||' AS OWNER_TABLE_COLUMN'||
    ' FROM '||OWNER||'.'||TABLE_NAME||' WHERE INSTR(UPPER('||COLUMN_NAME||'),'||''''||'AMSA'||''''||',1) > 0 AND ROWNUM < 2 UNION ALL' STMT
    FROM CANDIDATE_TABLES C
    ;
    

    The query above returns phrases such as:

    SELECT /*+ PARALLEL(4) */ 'OWNER1|TABLE1|COLUMN1' AS OWNER_TABLE_COLUMN FROM OWNER1.TABLE1 WHERE INSTR(UPPER(COLUMN1),'AMSA',1) > 0 AND ROWNUM < 2 UNION ALL
    SELECT /*+ PARALLEL(4) */ 'OWNER1|TABLE1|COLUMN2' AS OWNER_TABLE_COLUMN FROM OWNER1.TABLE1 WHERE INSTR(UPPER(COLUMN2),'AMSA',1) > 0 AND ROWNUM < 2 UNION ALL  <<>>
    

    Note: Remove the last "UNION ALL"

    When the final query is complete, the final result is as follows (a reel in a file):

    OWNER1|TABLE1|COLUMN1
    OWNER1|TABLE1|COLUMN2
    ....
    ....
    OWNERX|TABLEX|COLUMNX
    

    Ensure that phrases using in parallel and could be dangerous for a transactional database. First, do a little test.

    Spool the output to a file.

    Kind regards

    Juan M

  • Max and Min value for each column

    Hello!

    Can someone help me to change my. VI? I want to get the Min and Max value for each column in the table in the appendices. Then I need to create two tables 1 d - the first with the min and the second with the max value.

    I've already solved the problem the solution is below

  • How to find the value max and min for each column in a table 2d?

    How to find the value max and min for each column in a table 2d?

    For example, in the table max/min for the first three columns would be 45/23, 14/10, 80/67.

    Thank you

    Chuck,

    With color on your bars, you should have enough experience to understand this.

    You're a loop in the table already.  Now you just need a function like table Max and min. loop.  And you may need to transpose the table 2D.

  • Compare the column values for multiple lines

    I am new to oracle and I have a requirement to compare the values of column across multiple lines.  If all column values are the same, I want to display that value, if the columns are not the same, I need to display 'no match' as value.   I need id to group values and display a status value based on the above logic.   Can anyone offer assistance with dispalying the result expected below?

    Sample

    Table

    State ID

    1         S

    2         L

    1         S

    2          S

    expected results

    State ID

    1         S

    2 no match


    Hello

    That's what you asked for:

    SELECT id

    CASE

    WHEN COUNT (DISTINCT status) > 1

    THEN "no match."

    For ANOTHER MIN (status)

    The END as status

    T

    GROUP BY id

    ;

    Want that if each State ID is NULL?  The CASE expression above returns NULL in this situation.

  • contains the clause in the search for interactive report of a clob column

    Hello

    I use the Version APEX 4.2.4.00.08

    How to use an interactive report contains the when searching a clob column so that it uses the CONTEXT index?

    Thank you

    Chandra.

    I wrote it in the SQL used for IR

    I created an APEX application that stores all our it's the HOWTO documents. (word, excel, pdf)

    ctx_doc.snippet creates the HTML code.

    select D.doc_id
      ,D.doc_filename
      ,dbms_lob.getLength( D.doc_blob ) as download
      ,decode( :P12_SEARCH, null, '-- nothing --',
             ctx_doc.snippet( 'IT_DATA.DOC_CTX_IX' -- my Oracle Text index name
                                 , D.doc_id, :P12_SEARCH )
       )
       as snippet
    from it_data.documents D
    where :P12_SEARCH is null
    or contains( D.doc_blob, :P12_SEARCH ) > 0
    

    MK

Maybe you are looking for

  • Export of slideshow

    How can I transfer a slide show from an IMac to a Macbook Pro? I have installation iCloud.

  • restoration of systems

    When I go to restore to an earlier date, he comes up with a Red Cross and said incomplete restoration. Peaches TQ

  • XP limited account will not be printed

    I have Windows XP 32-bit family running on my HP desktop computer.  I recently had cause to reset my user account permissions using subinacl.exe dittos. Run this routine has solved the problem I had with my administrator account does not.  However, i

  • Microsoft Updates - failure (error 0X80072efd)

    original title: Microsoft Updates - failureI I realize account I have not received updates Microsoft since November 2009 and I respected with 0X80072efd error message and run Microsoft Fix - It, but this is not enough. What should I do? I have Window

  • HP dv4 BIOS blocked when power on

    Hello! My dv4 BIOS is stuck and asks for administrator password or power. Exhibition: Deactivation of the system Key: 64385370 Can you please provide the password? Thanking you in anticipation.