Oracle 11g R2, CREATE THE TABLE and QUOTAS

Hi all
I need some insight on a strange behavior, that I discovered in Oracle 11 g 2. Don't know if I'm missing something or if I just discovered a security issue with Oracle.

Oracle Version: 11.2.0.1.0

The problem is with the CREATE TABLE and the QUOTA on the specific tablespace privilege.

Please, try this on your system (if you have some free time and care to confirm the "bug").

Create a user, grant privileges than two, CREATE THE SESSION and CREATE TABLE.

Grant NO quota on any tablespace.

Try to create a table on any tablespace (except SYSTEM) and everybody say if it worked or not.

The oracle documentation provides the following:

To create a relational table in your own schema, you must have the CREATE TABLE system privilege. To create a table in the schema of another user, you must have the CREATE ANY TABLE system privilege. In addition, the owner of the schema containing the table must have a quota of space on the tablespace contains the table or the UNLIMITED TABLESPACE system privilege.

[http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_7002.htm#SQLRF01402]

The fact is, so far, on two different instances of Oracle 11 g 2, my users are not limited in the creation of the tables only when they have quotas, but where they want to, except the STRING.

The behavior correct would be to deny the creation of the table the tablespace where there is no quota, but it does not work.

My instance of Oracle 10 g behave properly and therefore the creation of the table is denied the tablespace with no quota.

P.s1 sorry if this a well known "bug/problem/question". I've been ridiculous on a well-known forum for the same question. I don't need to be "filled spoon" as shown on this famous site! I have read the documentation! I googled a lot!

P.s2 even if the creative work of table on tablespace with no quota, you cannot insert data into it. Yes, big picture, the user cannot not filled space with irrelevant data tables, but it can create thousands of tables...!

Did I miss something?
Is there a 'default' option I have to mark to prevent the creation of the table where it shouldn't?
? (?)

Please read http://tkyte.blogspot.com/2011/02/deferred-segment-creation.html.

Tags: Database

Similar Questions

  • Oracle 11G - access to the table problem

    Hello
    New on Oracle IAM... After you create a database, I created a connection and SYSDBA role...
    And then I create a table called Table1. And then I create a new USER and I Connect with the same SID of the database, but the role has the DEFAULT value for this new USER...

    01. but the problem is that I can't find the Table1 table for this new user... so how acess as Table1...?

    02. I came to know in Oracle, also we can design forms for the frontend and can generate EXE... Is this true?

    03. in SQL Server - Sql Port with static IP - we have access to the database for remote users... Is it possible for Oracle?


    Thanks for the directions...

    997497 wrote:
    Hello
    New on Oracle IAM... After you create a database, I created a connection and SYSDBA role...

    What the user did you use to connect? I'm guessing that you logged in as SYS

    And then I create a table called Table1. And then I create a new USER and I Connect with the same SID of the database, but the role has the DEFAULT value for this new USER...

    So I guess that you have created the table in the SYS schema. You should never, ever create user objects in the SYS schema. If you have created the table in the SYS schema, you really need to drop and create in a more appropriate scheme.

    You indicate that you come from SQL Server, so there may be a question of terminology. Which refers to SQL Server as a "database" is roughly equivalent to what Oracle designates as a "scheme." An Oracle database contains many schemas. A schema is the set of objects owned by a particular user.

    01. but the problem is that I can't find the Table1 table for this new user... so how acess as Table1...?

    As I said above, you really, really should not create objects in the SYS schema. If you really want, however, you need to log the SYS schema and grant access on the table to your new user

    GRANT SELECT ON sys.table1 TO your_new_user
    

    You will then need to fully qualify the table name in your SELECT (or create a synonym or the current_schema)

    SELECT *
      FROM sys.table1
    

    02. I came to know in Oracle, also we can design forms for the frontend and can generate EXE... Is this true?

    Older versions of Oracle Forms would create server executables. The modern versions are used to create three-tier applications. You can also use APEX to build web applications. Of course, you can also generate executables by writing code in another language (often .net).

    03. in SQL Server - Sql Port with static IP - we have access to the database for remote users... Is it possible for Oracle?

    Is this possible? Sure. Depending on what means "remote users", however, it may be poorly advised - you would never open a database to the internet directly, for example, you want to ensure that the remote users are connected to your network (via a virtual private network).

    Justin

  • Creating the table and get the invalid identifier

    Thank you so much Ed (and all those who responded) to my previous post!, you all be extremely useful.

    In fact, I have another question... Can I repost a new thread or continue on this one?

    Here's my problem.

    create the table DonationEvent
    ('ID' NUMBER (1,1) Not Null,)
    "EventNumber" NUMBER (1,1) Not Null,
    'Type' char (30) Not Null,
    "OrganizerName' char (30) Not Null,
    'Location' char (30) Not Null,
    'Date' NUMBER (10.1) Not Null,
    'Time' char (30) Null,
    "DonationTotal" NUMBER (10.1) Not Null,

    Primary Key (ID),



    );

    Getting ORA-00904: invalid identifier

    Also I use Express Edition 10g, how can I get a view of context to see the line where error occurs?

    Cushgod wrote:
    I always get invalid identifiers... Your focus is so useful! My teacher is not useful. At his table did not work it would be copy and paste that work and say that he didn't had the time to debug it... I can't even say what my mistake is on in the Express edition...

    What do you use to write/test your sql? That's why I asked sqplus. This is the basic sql shell. In the examples I showed you I had by the sql in a text (doit.sql) file, shot to the top of sqlplus, connect to the base, execute "doit.sql".

    You're my only hope! Thank you very much in advance, I learn a little which makes me question why my teach would even use "" eventid NUMBER (1,1) not null "" after your explanation. " It's not supposed to have a decimal number to a primary key event IDS... anyway thanks in advance.

    create the table DONATIONEVENT
    (eventid NUMBER (5) Not Null,)
    eventnumber NUMBER (9) Not Null,
    EventType VARCHAR2 (30) Not Null,
    OrganizerName VARCHAR2 (30) Not Null,
    location VARCHAR2 (30) not Null,
    EventDate DATE Not Null,
    duration VARCHAR2 (30) Null,
    donationtotal NUMBER (10.2) Not Null,

    Primary Key (ID),

    );

    If I use a DATE instaed (4) no setting, I get "' missing right parenthesis"... once again. I counted my bracket and the match 10 (and 10)
    See below.

    DATE is right. Where did you get the idea of DATE (4)?

    The documentation site (tahiti.oracle.com) Oracle seems to be down at the moment, but you really, * really *, * REALLY * need to get there and take the reference SQL and SQL * reference manuals more.

    create the table DONATIONEVENT
    (eventid NUMBER (5) Not Null,)
    eventnumber NUMBER (9) Not Null,
    EventType VARCHAR2 (30) Not Null,
    OrganizerName VARCHAR2 (30) Not Null,
    location VARCHAR2 (30) not Null,
    EventDate DATE (4) Not Null,
    duration VARCHAR2 (30) Null,
    donationtotal NUMBER (10.2) Not Null,

    Primary Key (ID),

    );

  • Create the table and take the name of user who can read/write on this table

    Dear gurus,

    I need to add the following column in Oracle 11g DB AND also add the name of user who can read/write ONLY the following table, any table to access the same read?

    I use to go to Oracle PL/SQL client.

    My dbname is 'customerdb '.

    TableName: "extractOrders."

    +: example of the field data.
    Column0 = logID: 1
    Column1 = idNumber: 39D13613-F061-D38D-100A-16536409C6D8
    Column2 = timestamp: 2011/07/11-13:45
    Column3 = resultCode: 40509
    Column4 = resultMessage: could not find the IDENTITY card
    Column 5 = number: 9813080808
    Column6 = iid: 87670200100001466100
    Column7 = products: D1430 | "' S1412 ' | "" S1407 | "' S2607 ' | "' S1417 ' | "" S1411 | "' S1413 ' | "" S1502 | "" S1406 | "' S1522 ' | "' S1524 ' | "' S1474 ' | "" S1473 ".

    user596669 wrote:

    I need to add the following column in Oracle 11g DB AND also add the name of user who can read/write ONLY the following table, any table to access the same read?

    I use to go to Oracle PL/SQL client.

    Let's say your table than extractorders is the schema of database clientsproperty.

    As this pattern create a stored procedure that runs with the privileges of the customerschema. Having this procedure return a ref cursor For example

    create or replace procedure ReadExtractOrders( c in out sys_refcursor ) authid definer is
    begin
      open c for select * from extractorders;
    end;
    

    As this code executes with the privileges of the customer schema it can read the table belonged to this scheme.

    Now give execute rights on this process for the Joe database schema - and this pattern can create a cursor on the table of ExtractOrders , without being able to access or use directly or refer to this table. Read access to this table is therefore protected by a reliable code belonged schema customers.

    Learn about the AUTHID clause and how it can be used to differentiate the code approved and non-approved, which allows to PL/SQL code to run with different privileges than the demand for prescriptions.

  • When I have a constarint of deferable in the Oracle database, while creating the ADF BC, all the columns in this table is marked as primary key. any help on how to fix this?

    DROP TABLE TWO.

    DROP TABLE ONE;

    CREATE TABLE 'A

    (

    ACTIVATE THE 'ID' NUMBER NOT NULL,

    ACTIVATE THE "SERIAL" VARCHAR2 (10 BYTE) NOT NULL,

    ACTIVATE THE "FIRST NAME" VARCHAR2 (30 BYTE) NOT NULL,

    ENABLE 'PK_ONE' CONSTRAINT PRIMARY KEY ('ID', "SERIAL")

    )

    TABLESPACE 'USERS ';

    CREATE TABLE "TWO"

    (

    ACTIVATE THE 'ID' NUMBER NOT NULL,

    ACTIVATE THE "SERIAL" VARCHAR2 (5 BYTE) NOT NULL,

    ACTIVATE THE "DEGREE_CODE" VARCHAR2 (10 BYTE) NOT NULL,

    'TEST_NAME' VARCHAR2 (20 BYTE),

    ACTIVATE THE KEY PRIMARY CONSTRAINT 'PK_TWO' ('ID', 'SERIAL'),

    "FK_TWO' FOREIGN KEY ('ID', 'DEGREE_CODE') CONSTRAINT REFERS TO 'ONE' ('ID', 'SERIAL') MAYBE DEFERRED ENABLE

    )

    TABLESPACE 'USERS ';

    If we use the above sql scripts to create the tables and create the ADF BC using the above 2 tables, all 4 columns in table 2 are reported as the primary key.

    User, tell us your version of Jdev, please!

    You should file an SR with support.oracle.com for this.

    As a work around you can change the area of occurrence, and remove the check mark key pirmary on the unwanted columns. After that, it should work.

    Timo

  • Programmatically create ADF Table and binding.

    Hello

    I create the table and the columns programmatically using richeTableau and RichColumn. But unable to fill in the data in the table cells.

    Here is an excerpt of the code used. I followed the specified discussion ADF of Create Table by program. but I am not able to work.kindly suggest to solve this problem.

    RicheTableau tblObj = new RichTable();

    TableValues = (ArrayList) getCompValue (wsValues, compId) list;  contains a list of the HashMap object.

    tblObj.setVar ("trow");

    tblObj.setId ("tblDBrd");

    for (int k = 0; k < tblColumns.length; k ++) {/ / tblColumns contains a list of name of column to display in the table}

    RichColumn tblColumn = new RichColumn();

    tblColumn.setVisible (true);

    tblColumn.setId ("col" + k);

    tblColumn.setHeaderText (tblColumns [k]);

    UI RichOutputText = new RichOutputText();

    ui.setId (compId + k);

    "{[String expression =" #{row [] "+ k +"] ['"+ tblColumns [k] +"] ' ']} ";   want to retrieve the value of #{rank [k] [columnname]}

    ui.setValueExpression ("value", getValueExpression (expression));

    addComponent (tblObj, tblColumn);

    addComponent (tblColumn, ui);

    }

    tableModel = new SortableModel (tableValues);

    tblObj.setValueExpression ("value", getValueExpression("#{backingBeanScope.dashboardBean.tableModel}"));

    Thanks in advance.

    Best regards

    Arun

    You need the table setValue. Take a look at these discussions: programmatically set another link to Table read-only ADF and http://stackoverflow.com/questions/22389813/change-the-displayed-value-in-adf-table to get a few first thoughts and feel free to come back if you get stuck somewhere.

  • Create the Table as and hybrid columnar Compression

    I'm looking to connect to tables help to create the table as I had a question about columnar Compression hybrid. For the test, I found that the uncompressed daata will be approximately 10 to and compressed data will be around 1 TB. I anticipate compress the table when the table to create as an instruction and wanted to know in what order Oracle forge do compression, that is, the table will be created then Oracle will compress the data or will the compressed table that the table will be created. The motivation behind the question is to see how much storage I need to complete the operation.

    Thank you

    If you are using
    create table xxx compress for query high what to choose...

    While the data will be compressed before insertion, so in your case, it will use about 1 TB of disk space

  • Existence and creating the table

    Sometimes the table name must be fully qualified and sometimes not. I guess I should watch a coat of primer on the tables, users, tablespaces.

    Thank you
    Ken
        
    drop table "BIS_USER"."ACDArea" ;
    
      --Got this exporting dll from existing table prior to dropping
      CREATE TABLE "BIS_USER"."ACDArea" 
       (     "DivisionId" NUMBER(*,0) NOT NULL ENABLE, 
         "AreaID" NUMBER(*,0) NOT NULL ENABLE, 
         "Area" VARCHAR2(20 BYTE)
       ) SEGMENT CREATION IMMEDIATE 
      PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
      TABLESPACE "USERS" ;
     
    -- "table or view does not exist" 
    insert into acdarea values (1, 2, 'northeast');
     
    create table acdarea2 ( 
      divisionid int,
      areaid int,
      area varchar2(100)
    );
    
    -- works fine
    insert into acdarea2 values (1, 2, 'south by southwest');

    Hello

    ktrock wrote:
    Sometimes the table name must be fully qualified and sometimes not. I guess I should watch a coat of primer on the tables, users, tablespaces.

    Yes, it is a good idea.

    CREATE TABLE 'BIS_USER '. "" ACDArea ".
    ...
    -"table or view does not exist.
    insert into acdarea values (1, 2, "Northeast");

    Anything either inside quotes is case-sensitive. Anything not in quotes is uppercase before compiling. So if you create a table with quotes and lowercase name (and the last 3 letters of the "ACDArea" are tiny) then you must use double quotes and the exact capitialization of even every time you reference this table.

    Do not use quotation marks. It will be just extra work and confusion for you and for all those who have to write code for this table.

  • How to create a grid with the tables and Boolean values?

    As part of a larger project, I'm trying to create a Subvi, which will allow me to spend a "cursor" in a 3 x 3 matrix.

    It should be 2 Boolean inputs, one for move them down in the table and the other to move them to the right. Once reached the edge of the table, the "cursor" will start back at the beginning.

    I have a vague idea of a table to 2 dimensions with LED. Once 'down' has been selected, the corresponding light to (0,0), light (0.1). Goes the same for the button 'right '. When 'down' is pressed (0.2), the LED should turn off, and LED (0,0) must light up.

    I'm sure it has something to do with the initialization of the tables, but I can't seem to find the right way to do it.

    Any help is much appreciated. Thank you!

    Your array is always empty.  Look at the detailed help for the function page replace table subset.  He says that the function has no effect if the specified index refers to a location outside the table.

    What you see on the Panel is only a view and has nothing to do with what is in the table.

    Lynn

  • drop and re-create the table using dynamic sql

    The following procedure should drop the table and re-create it. Currently, I get the dbms_output of the query. If I run the query only, it works well. but through the procedure, it does not work. Please help me

    PROCEdure emp_backup is
    sql_txt varchar2(10000);
    begin
         begin
         EXECUTE IMMEDIATE 'drop table emp_backup ' ;
         exception
         when others then
         null;
    
         sql_txt:= 'CREATE TABLE emp_backup as ' ||
                     'select * from emp  '||
                     'where dep_no=10 ' ;
         dbms_output.put_line(sql_txt);
         EXECUTE IMMEDIATE sql_txt;
    Exception
    when others then
    Null;
    
    End;

    Daniel wrote:
    I'm getting following error ORA-01031: insufficient privileges

    What is the command to grant privileges to this

    GRANT CREATE TABLE TO <>
    

    Detaching Frank, however, and echoing my previous comment, let them down and to re-create the tables makes no sense. It is logical to truncate a table if you test a load. If you build a data warehouse, it makes sense to delete and re-create a partition if you rerun a load for a particular date and that you have daily partitions. Deletion and recreation of a table in a stored procedure is not a reasonable way to test a system (nor is there a reasonable way to approach change control issues that will inevitably produce when you need to change the structure of a table).

    Justin

  • Generate the DDL to create the table in the database

    Hi all

    I want to create the new fact and Stadium as being under the statement:

    (1) in the designer, access the models > Oracle BI Applications (folder) > (model) Oracle BI Applications > done (sub-model) step, right click on the WC_SAMPLE_FS data store and select duplicate the selection.

    2) double-click the new data store, and then rename it. Name and resource name must match the name of the actual table. Alias can be the same or greater value easy to use.

    (3) in the sub-tab of the columns, add all columns.

    (4) repeat the same steps to create the fact Table by copying the data store WC_SAMPLE_F under the submodel of "facts".

    (5) for the fact table, define the type of OLAP to "fact Table.

    (6) generate the DDL to create the table in the database.

    In step 6, I don't know where and how to generate the DDL to create the database table. Please help me. If you have another tutorial with screenshot, please share with me. Thank you.

    Kind regards

    Cong

    Hi Cong,

    Please see section 6.3 DDL generation of scripts in this link:

    Working with the Designer of the common Format - 11g Release 1 (11.1.1)

    I hope this helps.

    Thank you!

    Saran.

  • Could not commit: ORA-00928: lack of creating the table SELECT keyword

    Hello guys.
    I tried to create the table with web interface on oracle 11g.

    I just follow this path on interface: schema-> table-> create-> standard (lot organized)-> SQl select on (set using the)->
    and I just use these scripts to create the table:

    CREATE TABLE suppliers
    (the number (10) of supplier_id not null,)
    supplier_name varchar2 (50) not null,
    Contact_Name varchar2 (50)
    );

    but this error occurred: failed to commit: ORA-00928: lack of SELECT key word!
    Please lock on this picture for more information: http://s17.postimg.org/kgoumzmvz/attachment.jpg

    could you help me please?
    and I could not find any manual for working with the web interface in oracle 11g.
    Please give me somesources to start.
    Thank you.

    1003778 wrote:
    Thank you sybrand_b
    but I already read this document.
    Unfortunately, there is nothing on the creation of table with sql scripts in this document!

    and I really don't understand how to create table with SQL commands! My question has not yet been answered.
    you please give me little details about it?
    for example, how can create table using this sql command:

    CREATE TABLE suppliers
    (the number (10) of supplier_id not null,)
    supplier_name varchar2 (50) not null,
    Contact_Name varchar2 (50)
    );

    Thank you.

    Edited by: 1003778 may 3, 2013 11:43

    When you got to the CREATE TABLE screen, you have selected "set using the--> SQL.
    Did you notice in the window that appears, just above this entry field is this text: "enter a SQL * select * statement below.» ' + This query results will be used to fill the table with Canada.* + "(underlining)
    And hip, just to the left of this field is this text: «CREATE TABLE AS»

    He tries to build a ' CREATE TABLE AS SELECT... ». Creates a table with the same structure as the table in which you SELECT and fills with the results of this SELECT '. With your entry, you create a CREATE TABLE AS CREATE TABLE to read statement...

    If you want to create your tables with a simple CREATE TABLE command, go to sqlplus and do it. You want to have a graphical interface to help build a simple CREATE table, when you get to the CREATE TABLE page, just to stay there with the default "use Define-> column specification." If you want, after completing "build" your table specification here, you will have a "Show sql" option to show you the actual sql statement that will be executed to create your table.

  • I have the table and its size is full

    I have the table and its size is full when im inseting records, not insert, how do I increase the size of table
    ALTER TABLESPACE ts_tbsp
      ADD datafile 'c:\oracle\product\10.2.0\oradata\df\ts_data01.dbf'
      SIZE 4M
      AUTOEXTEND ON;
    

    Means-
    In tablespace "ts_tbsp", adding a data file 'ts_data01 '.

    AUTOEXTEND ensures in the future if whenever the data file fills an additional size of 4 M is added automatically.

    Once it is created, a new data with the extension .dbf file is created in the folder Oradata.
    Another file dbf (default) includes:-SYSTEM.dbf, SYSAUX.dbf, TEMP.dbf, USERS.dbf, etc.

    See - http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_3002.htm

    HTH.
    Vanessa B.

  • Stored procedure to create the table .csv file

    Hi all
    I have a table with 4 columns and 10 rows. Now I need a stored procedure to create a file .csv from the data in the table. Here the script to create a table and insert the line.

    Create table emp (emp_id number (10), emp_name varchar2 (20), Department varchar2 (20), number (10)) of salary;

    Insert into emp values ('1', 'AAAAA', '' SALES, 10000');
    Insert into emp values ('2', 'BATH', 'MARKETING', '8000');
    Insert into emp values ('3', 'CCCCC', '' SALES, 12000');
    Insert into emp values ('4', 'JAMES', 'FINANCE', '10000');
    Insert into emp values ('5', 'EEEEE', '' SALES, 11000');
    Insert into emp values ('6', 'FIRE', 'MANAGER', '90000');
    Insert into emp values ('7', 'GEORGE', '' SALES, 12000');
    Insert into emp values ('8', 'HAROLD', 'FINANCE', '14000');
    Insert into emp values ('9', 'IIIII', '' SALES, 20000');
    Insert into emp values ('10', 'GG', 'FINANCE', '21000');
    commit;

    Now I need a stored procedure to create a .csv file in my local location. Please let me know if you need more details...

    A few tips:
    http://www.Oracle-base.com/articles/9i/GeneratingCSVFiles.php
    http://tkyte.blogspot.com/2009/10/httpasktomoraclecomtkyteflat.html
    also, doing a search on this forum or http://asktom.oracle.com will give you many clues.

    in my local location .csv file.

    What is your "local position"?
    A client machine? The database server machine?
    Which version of the database you use?
    (the result of: select * version of $ v ;))

  • How to find which create the table?

    Let's say I have a user named IMSDBA, and many users have IMSDBA privilege account.
    They can log on using that account and do some operations under this scheme.

    And someday, someone has created a table under the scheme. So I wonder if it is possible to know who actually created this table?

    PS: Each user who can log in as IMSDBA has corresponding Emplyee ID and address related to specific PC.

    Any ideas would be highly appreciated :-)
    Thanks in advance!

    Published by: PhoenixBai on September 17, 2009 10:40

    Now, if you are using Oracle audit to audit things like CREATE TABLE for IMSDBA, SYS. AUD$ seize among other things, the USERHOST and TERMINAL. Assuming you're only worried about the direct connections, not of three applications at several levels, this should give you the information you need determine which machine was used and, therefore, that the user. In hindsight, if your database is in ARCHIVELOG mode and you have logs archived in time of creating the table, you can use LogMiner to get this information as well.

    Of course, standard safety advice would be that each user has a separate Oracle account that they use to simplify the task of checking who did what.

    Justin

Maybe you are looking for

  • My new iPod does not connect to my 2006 iMac G5 - how to download all my music iTunes (mainly CDs) on my iPod. ?

    MY new iPod does not connect to my 2006 G5 iMac. How can I download my iTunes (music mainly from my own CD) library on my new iPod. My iMac works well, but running an ancient operating system that does not seem to be updated capable?

  • Lenovo U430p RAM

    Hello, I have seen discussions on this topic, but I have a crucial question. If I buy u430p there is only one memory slot and it comes with 4 GB of memory. If I want to move to 8 GB and I opened the cover, I lose the guarantee of 2 years? If so, is i

  • Pavilion DV7-4177: 4177 Pavilion DV7 Error Codes?

    I have a Pavilion DV7 4177 that won't start, beep 15 times. The Caps Lock Led flashes 3 times in repetitive cycles. At HP I guess 3 led flashing documents indicate memory error, but what is sound? The screen stays black and there is no other message.

  • Having problems with E1000 as a Point of access to installation - please help

    Quick history - using an E2000 as my main router to a DSL connection (using an ISP provided Zyxel 660HW wireless modem) disabled if it matters with. I have an E1000 I want to configure a LAN connection to LAN for the E2000 at the end of the House and

  • HP update has stopped working...

    Hello. I get the following error message when I try to run HP Update on a HP laptop with Vista Home Basic: "HP Update has stopped working.A problem caused the blocking of the program works correctly. Windows will close the program and notify you if a