DBA > Interview Resource

Microsoft SQL Server FAQs

Part:   1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41 

(Continued from previous part...)

What can tracer tokens measure in SQL Server 2005 transactional replication?

Answer
1 and 3

Explanation
Tracer tokens measure two things. One is the amount of time elapsed between a command being committed on the publisher and being written to the distribution database. The other is from the writing to the distribution database and being committed to a subscriber. This allows you to determine the latencies for transactions moving through your replication topology.


You want to script the execution of an Integration Services package from the command line for use from a Unix scheduler. What utility would you use?

Answer
dtexec.exe

Explanation
The dtexec.exe utility is used to configure and execute Integration Services packages from the command line.


What does the sqlwb utility do?

Answer
Opens SQL Server 2005 Management Studio.
Explanation
sqlwb.exe actually opens Management Studio and can be configured to optionally open a solution, project, or script file when it starts.


You want to automate the installation of SQL Server 2005 using SMO for your custom application and ensure that the encryption features are available with a service master key. What method would you call to create this key?

Answer
The Regenerate method under the ServiceMasterKey object.
Explanation
To create a Service Master Key in SMO, you would get a handle to the ServiceMasterKey object under the Server object and then call the Regenerate method.


How can you determine which Service Broker ports are being used on your server?

Answer
Query the system catalog view: sys.conversation_endpoints
Explanation
The system catalog view sys.conversation_endpoints will show you which Service Broker endpoints, and therefore ports, are open on your server.

(Continued on next part...)

Part:   1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41