Performance problem on the SQL query that does not use the primary key index

Hello!

I have some performance issues on a single SQL query (Oracle 10 g).
I could solve the problem by using the INDEX indicator, but I would like to know WHY this is happening.

* Tables *.
create table jobs)
ID number (5) not null,
name varchar2 (100),
primary key constraint Job_PK (id)
)
/
-Record count: 298

create table Comp)
integer ID not null,
name varchar2 (100),
primary key constraint Comp_PK (id)
)
/
-Record count: 193

-Relation m: n
create table JobComp)
integer ID not null,
id_job integer not null,
id_comp integer not null,
primary key constraint JobComp_PK (id),
unique key constraint JobComp_UK (id_job, id_comp),
Constraint JobComp_FK_Job foreign key (id_job) refers to Job (id),
Constraint JobComp_FK_Comp foreign key (id_comp) makes reference Comp (id)
)
/
create index JobComp_IX_Comp on JobComp (Cod_Comp)
/
create index JobComp_IX_Job on JobComp (Cod_Job)
/
-Record count: 6431

* Ask *.

When I run this query, the execution plan shows the index using (JobComp_PK and JobComp_IX_Comp).
No problem.

Select JobComp.*
of JobComp
Join jobs
on Job.id = JobComp.id_job
where JobComp.id_comp = 134
/
-runs in 0.20 sec

But when I add the field 'name' of the work table the plan uses full access table to the table of work

Select JobComp.*, Job.name
of JobComp
Join jobs
on Job.id = JobComp.id_job
where JobComp.id_comp = 134
/
-runs in the 2.70 dry

With the help of the index

Select / * + INDEX (Job Job_PK) * /.
JobComp.*, Job.name
of JobComp
Join jobs
on Job.id = JobComp.id_job
where JobComp.id_comp = 134
/
-runs in 0.20 sec

* Doubt *.

This behavior is correct?

PS. : I tried to recalculate the statistics, but nothing changes:

analyze the job calculation table statistics.
/
change the statistical calculation of index Job_PK reconstruction;
/
Start
dbms_utility.analyze_schema (sys_context ('userenv', 'current_schema'), 'CALCULATE');
end;
/

[of]
Gustavo Ehrhardt

Gus.EHR wrote:
Hello.
I'm sorry for the plan unformatted.
The execution time of the querys "without field name' and 'with the field name with suspicion" are equal.
He has no problem caching, because I get the plans of the sequence different from the querys and repeated the performance. The result is always the same.

I don't think that there is no problem with oracle crossing LOOP IMBRIQUEE to the HASH JOIN when you include the field name and this should be the expected behavior. But it seems that your WORKING table has a degree of parallelism set against what is causing the query to run in parallel (as JOB table is now available with full table scan, instead of indexed access earlier). It could be that the parallel execution is contributor to extra Runtime.
(a) do you know why the degree of parallelism on the WORK table has been defined? Do you need it?

You can see if the following query provides a better response time?

select /*+ NOPARALLEL(JOB) */ JobComp.*, Job.Name
  from JobComp
  join Job
    on Job.id = JobComp.id_job
 where JobComp.id_comp = 134

Tags: Database

Similar Questions

  • Problem with the primary key and indexes

    Hi all

    I'm looking a mess on one of our main tables.
    One of the developers here added an index on 3 columns in the table, thinking that it would speed up (not noticing that it had not a PK).

    Subsequently another developer has noticed there do not have a primary on key. So they added a touch of primry on the single column.

    The problem is that now the index created on 3 columns is bein used as the primary key index. As when the primary key is created a new index was not created.

    Is there anyway to get rid of this index/change it correct?

    This table is related to many many other tables, so when we tried to remove the index we could not due to the primary key and foreign key violations with other tables.

    Thanks in advance

    Oracle, as you found, is quite capable to use a column enformce multi index a single column primary key, as long as the pk column is the leader in the index. This should not cause performance issues for a search of PK and if the three indexed columns are often selected only may benefit from these types of queries.

    The only way to change that now, would be to drop all CF, drop and add the PK constraint and then add all the FK constraints. A long time and potentially dangerous (if you miss to add back of the FKs) endeavour. Certainly not worth the risk in my opinion.

    John

  • Can I create a web database search that does not use Javascript?

    Can I create a web database search that does not use Javascript?

    While it would be possible to do it through custom coding, this type of web database search would not supported by Eloqua.

  • creating a unique index of instaed of using the primary key index

    Hello

    I heard in a debate sometimes it is better to create a unique index on a column and use it instead of using the primary key index in oracle. I did not understand what that the reason propely.

    Can someone please help me in this topic if it is valid.

    Thanks in advance

    On the surface, which does not seem reasonable... Volume of the DML is irrelevent to determine which column is the primary key for a table.

    My wild speculation a bit at a reasonable time could someone do...

    If you use synthetic primary keys (i.e. the keys generated by sequence) and that your tables are subject to large volumes of inserts such as there is a danger that the block "to the right" will be the source of contention block and worry not about analysis of beach on the column, you can create a reverse on this column (unique or non-unique) key index before creating the primary key constraint and to indicate Oracle to use this existing index to respect the primary key constraint.

    Obviously, however, this involves a lot of assumptions to arrive at a reasonable point. There may well be another set of assumptions that could also lead to a valid argument. Or it could be a myth that someone has heard and just repeats.

    Justin

  • Factor of clustering for the primary key Index

    Hi all

    I have cretead a new table with 1.7 million records with an index of primary key on ID (NUMBER)
    Number of blocks used is arnd 57 K.

    Factor value of clustering on the primary key index is 1.6 million.

    Could you please suggest what can be the reason for such a clustering factor high for the new table.


    Thank you
    Ash N.

    Google is your friend:
    http://www.dbasupport.com/forums/archive/index.php/t-38893.html
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:1032431852141
    http://hemantoracledba.blogspot.com.es/2008/01/impact-of-clustering-factor.html

  • Problems with the primary key of the query string

    Moving from asp to php, to work with David Power's book: The Essential Guide to Dreamweaver CS4 with CSS, AJAX, and PHP.  Recycling of my brain, so starting from scratch in the learning process.

    Everything was going perfectly until I tried to add the primary key of a record in a query string.  I compared my code with the example code for the book, and everything matches.  When previewing the page in my browser and hover over the link which must pass the main code on the next page, the query string does not appear correctly.  It shows user_id = but no figure shows, as it is supposed to.  www.webpage.com/update_user.php?user_id=

    Here is my code: (Please note, <>have been removed, as I was unable to find a way view the code in the correct way here (copy/paste was doesn't work do not, nor insert syntax))

    ? PHP {?}

    ? PHP echo $row_listUser ['family_name'];? PHP echo $row_listUser ["FirstName"];?

    ? PHP echo $row_listUser ['username'];?       ? PHP echo $row_listUser ["admin_priv"];?

    a href = "update_user.php? user_id =? php echo $row_listUser ['user_id'];?" "Edit / has

    a href = "delete_user.php? user_id =? php echo $row_listUser ['user_id'];?" ' Delete / has

    ? PHP} while ($row_listUser = mysql_fetch_assoc ($listUser));?

    Any ideas that could help me understand why this part does not in particular would be greatly appreciated.  Writing to the database worked perfectly, I see that there are numbers in the database as user_id, and it is defined as my primary key in the configuration database.  Such a simple process that is causing me headaches!

    Thank you

    You have the code to request a copy in your folder:

    $query_listUser = 'SELECT user_id, username, first_name, family_name, admin_priv from users ORDER BY family_name ASC';

    $listUser = mysql_query ($query_listUser, $connSCFDIR) or die (mysql_error ());

    $row_listUser = mysql_fetch_assoc ($listUser);

    $totalRows_listUser = mysql_num_rows ($listUser);

    $query_listUser = 'SELECT username, first_name, family_name, admin_priv from users ORDER BY family_name ASC';

    $listUser = mysql_query ($query_listUser, $connSCFDIR) or die (mysql_error ());

    $row_listUser = mysql_fetch_assoc ($listUser);

    The $listUser table will contain the results of the second query, which does not include the field user_id. delete the redundant code.

  • RadioButton with submit does not insert new primary key/registration

    Hello

    I have a form with radio buttons. Originally, I used the button create automatically generated to send the page, record the value and creates a branch to another page. If the primary key is zero, it would create a new record with a primary key in the sequence.

    I changed the radio button to be 'submit' and now he passes on the next page, but does not create the new key.

    I don't see what is the difference between the two methods, but it is probably simple...

    Any help is greatly appreciated.

    Thank you
    Matt

    I don't see what you're doing. The page that loads the record must be programmed to do a checkout of the line using the element as the PK value if the element is not null. Attribute of the Source of this element should probably also be «Just...» ».

    Scott

  • Setting the query: optimizer does not use the index function

    Hello

    I have a request written by a developer that I can't change.

    It is here that the condition:

    (   UPPER(TRIM (CODFSC)) = UPPER (TRIM ( '01923980500'))

           OR UPPER(TRIM (CODUIC)) = UPPER (TRIM ( '01923980500')))

    There is an index on CODFSC and on CODUIC1.

    the plan is:

    Plan

    INSTRUCTION SELECT ALL_ROWS cost: 9 194 bytes: 3 206 502 cardinality: 15 054

    ACCESS FULL ANAGRAFICA cost TABLE TABLE 1: 9 194 bytes: 3 206 502 cardinality: 15 054

    So I created two new index on SUPERIOR (TRIM ()CODFSC)) and SUPERIOR (TRIM ()CODUIC)) but the plan

    complete analysis of STIL.

    Modifing where condition in:

    (   CODFSC = UPPER (TRIM ( '01923980500'))

           OR CODUIC = UPPER (TRIM ( '01923980500')))

    the plan is:

    SELECT STATEMENT ALL_ROWSCost: 157 bytes: 426 cardinality: 2

    CONCATENATION OF 5

    TABLE ACCESS BY INDEX ROWID ANAGRAFICA cost TABLE 2: cardinality of 5 bytes: 213: 1

    1 INDEX RANGE SCAN INDEX ANAGRAFICA_IDX01 cost: cardinality 3: 1

    TABLE ACCESS BY INDEX ROWID ANAGRAFICA cost TABLE 4: cardinality 152 bytes: 213: 1

    3 INDEX SKIP SCAN INDEX ANAGRAFICA_IDX02 cost: cardinality 1: 151

    Why optimizer not use my funct index?

    Thank you.

    Franck,

    I always forget that the default value for the GOLD expansion depends on a path indexed for each branch.

    2 in your use of or_predicates (2) depends on the position of complex predicate which must be expanded.  If you change the order of predicate 'State = 0' to display AFTER the complex predicate, you must change the indicator of "or_predicates (1).

    Outside of the current state of undocumented indicator, it also introduces the disturbing thought that, for a more complex query, a change in the transformation may result in another set of query blocks generated with a different ranking of the predicates. Yet another case to ensure that if you suggest anything suggest you (or create a SQL database).

    Concerning

    Jonathan Lewis

  • Problem with the primary key

    Hi all
    I have a table with the same data repeat 2 times. I mean that the lines are depating twice. so now, I create a primary key for the table. He throws me an error saying voilation key primary. I'll give you the clear script.

    create table employee)
    ID VARCHAR2 (4 BYTE) NOT NULL,
    First name VARCHAR2 (10 BYTE),
    VARCHAR2 (10 BYTE) last_name,
    START_DATE DATE,
    End_date DATE,
    Number (8.2) of salary.
    City VARCHAR2 (10 BYTE),
    Description VARCHAR2 (15 BYTE)
    )


    insert into employee values ('01', 'Jason', 'Martin', to_date('19960725','YYYYMMDD'), to_date('20060725','YYYYMMDD'), 1234.56, 'Toronto', 'Program');
    insert into employee values ('02', "Alison", "Mathews', to_date('19760321','YYYYMMDD'), to_date('19860221','YYYYMMDD'), 6661.78, 'Vancouver', 'Tester');
    insert into employee values ('03', 'James', 'Smith', to_date('19781212','YYYYMMDD'), to_date('19900315','YYYYMMDD'), 6544.78, 'Vancouver', 'Tester');
    insert into employee values ('04', 'Celia', 'Rice', to_date('19821024','YYYYMMDD'), to_date('19990421','YYYYMMDD'), 2344.78, "Vancouver", "Manager");
    insert into employee values ('05', 'Robert', 'Black', to_date('19840115','YYYYMMDD'), to_date('19980808','YYYYMMDD'), 2334.78, 'Vancouver', 'Tester');
    insert into employee values ('07', 'David', 'Larry', to_date('19901231','YYYYMMDD'), to_date('19980212','YYYYMMDD'), 7897.78, 'New York', 'Manager');
    insert into employee values ('06', 'Linda', 'Green', to_date('19870730','YYYYMMDD'), to_date('19960104','YYYYMMDD'), 4322.78, 'New York', 'Tester');
    insert into employee values ('08', 'James', 'Cat', to_date('19960917','YYYYMMDD'), to_date('20020415','YYYYMMDD'), 1232.78, 'Vancouver', 'Tester')
    insert into employee values ('07', 'David', 'Larry', to_date('19901231','YYYYMMDD'), to_date('19980212','YYYYMMDD'), 7897.78, 'New York', 'Manager');
    insert into employee values ('06', 'Linda', 'Green', to_date('19870730','YYYYMMDD'), to_date('19960104','YYYYMMDD'), 4322.78, 'New York', 'Tester');


    The table is now with 10 columns

    ID FIRST_NAME LAST_NAME START_DAT END_DATE SALARY CITY DESCRIPTION
    ---- ---------- ---------- --------- --------- ---------- ---------- ---------------
    Jason Martin 25 July 96 01 25 July 06 1234.56 Toronto programmer
    02 Alison Mathews 21 March 76 February 21, 86 6661.78 Vancouver Tester
    03 James Smith December 12, 78 March 15, 90 6544.78 Vancouver Tester
    04 Celia rice 24 October 82 21 April 99 2344.78 Vancouver Manager
    Robert Black 05 January 15, 84 8 August 98 2334.78 Vancouver Tester
    Linda Green 06 July 30, 87 January 4, 96 4322.78 tester of New York
    Manager of New York 07 David Larry 31 December 90 February 12, 98 7897.78
    08 James Cat 17-AUG-96 April 15 02 1232.78 ester of Vancouver


    Create a primary key for the table

    "Employee to ALTER TABLE PRIMARY KEY (ID, First_Name, Last_Name, start_date, end_date,
    Salary, city, Description); »

    I get error voilation primary key

    IS IT POSSIBLE TO CREATE THE KEY PRIMARY ON THE TABLE WITH ON THE DELETION OF THE DATA?
    Is IT POSSIBLE CREATING PRIMARY KEY USING 'GROUP BY' FUNCTION or OTHER FUNCTIONS?

    Published by: user11872870 on September 23, 2010 17:41

    Primary key columns cannot contain NULL values. If you tried to create a primary key constraint, you will get an error like this:

    ERROR at line 1:
    ORA-01449: column contains NULL values: cannot alter to NOT NULL
    

    However, you can add a unique constraint by doing something like the following:

    ALTER TABLE test ADD CONSTRAINT test_unq UNIQUE (column1, column2);
    

    I still wonder why you take the approach you take. I have a vague feeling that're missing us the key pieces of information to recommend the correct solution.

  • Dreamweaver does not use creative suite key?

    Had to reinstall dreamweaver, put in the cd key creative suite which has been used for other products and it says this isn't a valid key, downloaded the program of https://helpx.Adobe.com/Creative-Suite/KB/CS5-5-product-downloads.html (because I needed only to reinstall the dreamweaver) / / what can I do to fix this is a separate installation file should I use?

    If you purchased Creative Suite, then the serial number is thereafter, not different products within IT... you must download the Creative Suite and install Dreamweaver thru that.

  • old age and the primary key index

    That question lingers on me for a long time. When I have a table(non-partitioned) with A column as a primary key, it makes no difference (in data retreival) if I create an index on column A. The oracle that I use is 10.2.0.3. My conclusion was pk already stores records in a sorted order and an index is not necessary.

    I also have a question on the index in the global temporary tables. A global temporary table was created initially with his index finger. Then, it is used with each session. As the data in a global temporary table are related to the session, oracle create index separated for each session?

    Hello

    When you create an on a column in a table's primary key, a unique index is created automatically, you need not create separate.

    Oracle Concepts:

    You can create indexes for temporary tables using the CREATE INDEX statement. Indexes created in the temporary tables are also temporary, and the data in the index have the same scope of session or transaction data in the temporary table.

    You can create views that access the temporary and permanent tables. You can also create triggers on temporary tables.

    For more information, see [temporary Tables | http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref769]

    Kind regards

    Published by: Walter Fernández on February 7, 2009 22:09 - Add URL...

  • reverse the primary key index

    Hello

    When we create a primary key, it automatically creates a unique index on it. He is sort can we give a clause to create a single inverted index on this subject?

    We can of course more late the state change an index to Conversely, but how to do it at creation time?

    Kind regards!
    create table test_123(c1 number primary key using index  reverse)
    
  • Query that does not work inside the function

    So I have this movement script that I copied from Cs6 as «Copying the movement in AS3» It works fine until I tried to control it with a function of mouse event. So what don't understand me? It works very well outside the function but not at all backwards.


    Import fl.motion.AnimatorFactory;

    Import fl.motion.MotionBase;

    Import fl.motion.Motion;

    flash.filters import. *;

    to import flash.geom.Point;

    var __motion_NewBall_7: MotionBase;

    theButton.addEventListener (MouseEvent.CLICK, on_press1);

    function on_press1(event: MouseEvent): void {}

    If (__motion_NewBall_7 == null) {}

    __motion_NewBall_7 = new Motion();

    __motion_NewBall_7.duration = 60;

    __motion_NewBall_7.addPropertyArray ("x", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-4.02143,-8.04286,-12.0603,-16.0857,-20.1071,-24.1246,-28.15,-35.6987,-43.2474,-50.7885,-58.3447,-65.8934,-73.4346,-80.9832,-88.5395,-96.0882,-103.637,-111.186,-118.727,-126.283,-133.824,-141.38,-148.929,-156.478,-164.026,-171.575,-179.124,-186.672,-194.221,-201.77,-209.311,-216.867,-224.416,-231.957,-239.506,-247.062,-254.611,-262.152,-269.708,-277.257,-284.805 -292.346 ([, - 299.903, - 307.451,-315]);

    __motion_NewBall_7.addPropertyArray ("y", [0, 9.41071, 18.8214, 28.2227, 37.6429, 47.0536, 56.4549, 65.875, 75.2857, 84.6964, 94.1071, 103.518, 112.919, 122.339, 131.75, 124.157, 116.564, 108.979, 101.379, 93.7857, 86.2004, 78.6, 84.0237, 89.4474, 94.8656, 100.295, 105.718, 111.137, 116.56, 121.989, 127.413, 132.837, 138.261, 143.679, 149.108, 154.526, 159.955, 165.379, 170.803, 176.226, 181.65, 187.074, 192.497, 197.921, 203.345, 208.763, 214.192, 219.616, 225.034, 230.458, 235.887, 241.311, 246.729, 252.158, 257.582, 263.005 268.424]) 273.853, 279.276, 284,7]);

    __motion_NewBall_7.addPropertyArray ("scaleX", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("scaleY", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("Scewx", [0]);

    __motion_NewBall_7.addPropertyArray ("transformations", [0]);

    __motion_NewBall_7.addPropertyArray ("rotationConcat", [0]);

    __motion_NewBall_7.addPropertyArray ("blendMode", "normal");

    __motion_NewBall_7.addPropertyArray ("cacheAsBitmap", [false]);

    __motion_NewBall_7.addPropertyArray ("opaqueBackground", [null]);

    __motion_NewBall_7.addPropertyArray ('visible', [true]);

    var __animFactory_NewBall_7: AnimatorFactory = new AnimatorFactory (__motion_NewBall_7);

    __animFactory_NewBall_7.transformationPoint = new Point (0.500000, 0.500000);

    __animFactory_NewBall_7.addTarget (myClip, 0);

    }

    }

    use:

    Import fl.motion.AnimatorFactory;

    Import fl.motion.MotionBase;

    Import fl.motion.Motion;

    flash.filters import. *;

    to import flash.geom.Point;

    theButton.addEventListener (MouseEvent.CLICK, on_press1);

    var __motion_NewBall_7: MotionBase;

    var __animFactory_NewBall_7: AnimatorFactory; //<-just the="" declaration="" was="" to="" be="" moved. ="" not="" the="">

    function on_press1(event: MouseEvent): void {}

    If (__motion_NewBall_7 == null) {}

    __motion_NewBall_7 = new Motion();

    __motion_NewBall_7.duration = 60;

    __motion_NewBall_7.addPropertyArray ("x", [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-4.02143,-8.04286,-12.0603,-16.0857,-20.1071,-24.1246,-28.15,-35.6987,-43.2474,-50.7885,-58.3447,-65.8934,-73.4346,-80.9832,-88.5395,-96.0882,-103.637,-111.186,-118.727,-126.283,-133.824,-141.38,-148.929,-156.478,-164.026,-171.575,-179.124,-186.672,-194.221,-201.77,-209.311,-216.867,-224.416,-231.957,-239.506,-247.062,-254.611,-262.152,-269.708,-277.257,-284.805 -292.346 ([, - 299.903, - 307.451,-315]);

    __motion_NewBall_7.addPropertyArray ("y", [0, 9.41071, 18.8214, 28.2227, 37.6429, 47.0536, 56.4549, 65.875, 75.2857, 84.6964, 94.1071, 103.518, 112.919, 122.339, 131.75, 124.157, 116.564, 108.979, 101.379, 93.7857, 86.2004, 78.6, 84.0237, 89.4474, 94.8656, 100.295, 105.718, 111.137, 116.56, 121.989, 127.413, 132.837, 138.261, 143.679, 149.108, 154.526, 159.955, 165.379, 170.803, 176.226, 181.65, 187.074, 192.497, 197.921, 203.345, 208.763, 214.192, 219.616, 225.034, 230.458, 235.887, 241.311, 246.729, 252.158, 257.582, 263.005 268.424]) 273.853, 279.276, 284,7]);

    __motion_NewBall_7.addPropertyArray ("scaleX", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("scaleY", [1.000000]);

    __motion_NewBall_7.addPropertyArray ("Scewx", [0]);

    __motion_NewBall_7.addPropertyArray ("transformations", [0]);

    __motion_NewBall_7.addPropertyArray ("rotationConcat", [0]);

    __motion_NewBall_7.addPropertyArray ("blendMode", "normal");

    __motion_NewBall_7.addPropertyArray ("cacheAsBitmap", [false]);

    __motion_NewBall_7.addPropertyArray ("opaqueBackground", [null]);

    __motion_NewBall_7.addPropertyArray ('visible', [true]);

    __animFactory_NewBall_7 = new AnimatorFactory (__motion_NewBall_7); Set after the motion, _motion_NewBall_7 exists

    __animFactory_NewBall_7.transformationPoint = new Point (0.500000, 0.500000);

    __animFactory_NewBall_7.addTarget (myClip, 1);

    }

    }

  • I can't use the cloud of DC Acrobat. How to make a PDF of Acrobat Reader that does not use the cloud?

    This is just about everything said.

    I can't save sensitive departmental files on your cloud.

    Even for the non-sensitive to PDF, I don't always have access to the cloud when I need to view or work with a PDF file.

    I need a version of Acrobat Reader non-nuage.

    When DC player installed on my system there is no breath XI player.

    After uninstalling CD player, now I can't open/read a PDF file more.

    Also, I can't find a copy of Adobe Acrobat to install which is not dependent on cloud.

    It is a problem for me.

    In addition to all this, NOW I get error messages whenever I try to reinstall the CD player.

    See below.

    So today at work, I can longer open PDFs.

    Thank you? NOT!

    Help!

    Gene

    ReaderInstallErrorMsg.JPG

    Here, I finally have a solution.

    You're going to love Google.

    More useful than Adobe so far.

    Note: By clicking on the link below is immediately open the download dialog box.

    FTP://ftp.adobe.com/pub/Adobe/Reader/Win/10.x/10.1.1/en_US/AdbeRdr1011_en_US.exe

    I used to install this download and Setup was seamless.

    Thanks to everyone who contributed ideas and possible solutions.

  • Copy users and hashes of password between two servers that does not use AD

    Hello

    We have two servers running Windows 2008 R2, but because we run AD on two of them, I need to find a way to copy the users to the users group to the other server remote desktop and duplicate the hashes thus.

    Any ideas? No user file or parameter must copy.

    It is better that I do not have need to install AD on one of them and only for the purpose of copying users and hashes

    Hi c0de::bre@k,

    Thanks for posting in the Microsoft Community.

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    Please ask your question in the Technet Windows Server General category.
    http://social.technet.Microsoft.com/forums/en-us/winservergen/threads

Maybe you are looking for

  • Satellite L300 - 1 8 - Microsoft Works Suite has stopped working

    Hiya, first I will say that I am only on my 2nd computer so im not exactly a brainbox on them.I have a Satellite L300 - 1 8 with microsoft vista home premium 32 bit. I only had this laptop for less than 2 months today, when I was with microsoft works

  • deployment with motion

    Hi all, I am deploying a system that uses the OR 73xx palette. I've implemented a VI called "initialize Motion.vi" that contains the palette 73xx VI, "Initialize Controller.flx". Whenever I have deploy and try to run I get the attached error telling

  • Z35 VESA Mount

    Is there a specific acer or the Z35 adapter vesa mount, once you remove the media. I have the supports VESA 100 x 100, but does not because of the depth of the vesa mounting locationOr have I missed something. I buy the used however monitor Thank you

  • The CSM 5.5 transfer between Windows and IOS

    I bought the software Creative Suite Master Collection 5.5 (in box) for a Windows computer. The HP computer is in its final phase of life and I intend to switch to an iMac from Apple. How can I go on transfer and upgrade my software on my new compute

  • VR Device VMs ask space on DS I want to remove

    I have a SAN that I withdraw from my environment. I have a RV replication server and a server VR each claimed 0.00 B of XGB of space. So I can't remove the volume. I'm under vSphere 5.5U2 with VR 5.8.The volume in question has nothing else on this su