To achieve optimum functionality of the client computers, you must upgrade all of them to Windows 2000. Upgrading some of them and/or installing the Directory Service Client will gain some functionality, but the question specifically states that "optimum functionality" is the required result.
The Data Source attribute of the connection string contains the name, instance or network address of the instance of SQL Server to which to connect. In this scenario we are to connect to the Factory Instance on XYZ01 so we use XYZ01\Factory as data source. To specify the database we should either use the Database or the Initial Catalog attribute. Here we use Database=FactoryDB.
Incorrect Answers:
A, B: There is no Server attribute in the connection string. Instead we should use the Data Source attribute to specify the server and the instance.
C: There is no Initial Category attribute in the connection string. We can use Database or the Initial Catalog attribute to specify the database.
The rule enumeration indicates the action that occurs when a ForeignKeyConstraint is enforced.None specifies that no action will occur, but exceptions are generated. This is what has occurred in this scenario.
Incorrect Answers:
A: Cascade specifies that all rows containing that value are also deleted.
B: SetNull specifies that values in all child columns are set to null values.
C: SetDefault specifies that all child columns be set to the default value for the column.
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.