InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
When I Run The Sql Server 2000 Setup, It Just Hangs. What Do I Do? |
|
Answer» In this situation, minimize the Setup window (and other windows if necessary) to SEE whether there are any MESSAGE boxes RELATING to FILE COPY or File Sharing. You must respond to any such messages before Setup can proceed. In this situation, minimize the Setup window (and other windows if necessary) to see whether there are any message boxes relating to File Copy or File Sharing. You must respond to any such messages before Setup can proceed. |
|
| 2. |
How Do I Perform An Unattended Install Of Sql Server 2000? |
|
Answer» If you are planning to install identical installations of SQL Server 2000 on several computers, or if you need to install SQL Server 2000 on computers that you cannot administer remotely, you can use the unattended install option. The most important component of an unattended install is the setup initialization file. The setup initialization file can be obtained in any of the following ways:
After you have the .iss file, you can perform the unattended install by starting the Setupsql.exe PROGRAM with the appropriate parameters. If you are planning to install identical installations of SQL Server 2000 on several computers, or if you need to install SQL Server 2000 on computers that you cannot administer remotely, you can use the unattended install option. The most important component of an unattended install is the setup initialization file. The setup initialization file can be obtained in any of the following ways: After you have the .iss file, you can perform the unattended install by starting the Setupsql.exe program with the appropriate parameters. |
|
| 3. |
How Do I Install Only The Client Tools Of Sql Server 2000? |
|
Answer» There are two ways to install the CLIENT tools:
There are two ways to install the Client tools: |
|
| 4. |
How Do I Determine How Many Instances Of Sql Server Are Installed On A Computer? |
|
Answer» The NAMES of all SQL Server instances on a COMPUTER can be found from the INSTALLED Instances VALUE which is located under the following REGISTRY key: The names of all SQL Server instances on a computer can be found from the Installed Instances value which is located under the following registry key: |
|
| 5. |
How Do I Find Information About The Install Locations For The Various Instances Running On A Computer? |
|
Answer» You can find out the install paths from the registry KEY CORRESPONDING to each INSTANCE. The following registry key contains the required information: HKEY_LOCAL_MACHINE /Software /Microsoft SQL Server /{Instance Name} /MSSQLServer /Setup /SQLpath. You can find out the install paths from the registry key corresponding to each instance. The following registry key contains the required information: HKEY_LOCAL_MACHINE /Software /Microsoft SQL Server /{Instance Name} /MSSQLServer /Setup /SQLpath. |
|
| 6. |
What Are The Different Editions Available In Sql Server 2000? |
|
Answer» SQL Server 2000 is available in seven different editions. They are:
SQL Server 2000 is available in seven different editions. They are: |
|
| 7. |
Are There Any Preferred Steps That Need To Be Taken Care Of Before Starting The Installation Of Sql Server 2000? |
|
Answer» Yes, For a SUCCESSFUL installation, follow these steps:
Yes, For a successful installation, follow these steps: |
|
| 8. |
What Is Awe? |
|
Answer» Address WINDOWING EXTENSIONS API is commonly known as AWE. AWE is used by SQL Server when it has to SUPPORT very large amounts of physical MEMORY. AWE feature is only available in SQL Server Enterprise, STANDARD, and Developer editions with of SQL Server 32 bit version. Address Windowing Extensions API is commonly known as AWE. AWE is used by SQL Server when it has to support very large amounts of physical memory. AWE feature is only available in SQL Server Enterprise, Standard, and Developer editions with of SQL Server 32 bit version. |
|
| 9. |
What Is Dirty Page? |
|
Answer» Dirty pages are DATA pages that have been ENTERED into the buffer CACHE and modified, but not yet written to the DISK. Dirty pages are data pages that have been entered into the buffer cache and modified, but not yet written to the disk. |
|
| 10. |
What Is Check-point? |
|
Answer» Check POINT WRITES all DIRTY pages for the current DATABASE to disk. Check point writes all dirty pages for the current database to disk. |
|
| 11. |
What Is A File Group? |
|
Answer» File group is a group of files logically grouped together. There are two types of filegroups:
File group is a group of files logically grouped together. There are two types of filegroups: |
|
| 12. |
Is The Log File Is A Part Of File Group? |
|
Answer» No, LOG FILE is a NEVER PART of file GROUP. No, Log file is a never part of file group. |
|
| 13. |
What Is Acid Properties? |
|
Answer» ACID (an acronym for Atomicity Consistency Isolation DURABILITY) is a concept that Database Professionals generally look for when evaluating databases and application architectures. For a RELIABLE database all this four attributes should be achieved.
ACID (an acronym for Atomicity Consistency Isolation Durability) is a concept that Database Professionals generally look for when evaluating databases and application architectures. For a reliable database all this four attributes should be achieved. |
|
| 14. |
How To Determine The Service Pack Currently Installed On Sql Server? |
|
Answer» To determine the SERVICE PACK that installed on your sql SERVER ,connect to your server ,execute the command: SELECT @@VERSION Go.To determine the service pack that installed on your sql server ,connect to your server ,execute the command: |
|
| 15. |
What Is A Raid And What Are Different Types Of Raid Configurations? |
|
Answer» RAID stands for REDUNDANT array of inexpensive disks, used to provide fault tolerance to DATABASE servers. There are six RAID LEVELS 0 through 5 offering DIFFERENT levels of performance, fault tolerance. RAID stands for redundant array of inexpensive disks, used to provide fault tolerance to database servers. There are six RAID levels 0 through 5 offering different levels of performance, fault tolerance. |
|
| 16. |
What Is A Transactions? |
|
Answer» A TRANSACTION is a logical unit of WORK in which, all the STEPS must be performed or none. A transaction is a logical unit of work in which, all the steps must be performed or none. |
|
| 17. |
What Is Sql Server 2000 Work Load Governor? |
|
Answer» Workload governor limits the performance of SQL SERVER DESKTOP engine (MSDE). Workload governor sits between the client and the DATABASE engine and counts the number of connections PER database instance. If Workload governor finds that the number of connections exceeds EIGHT connections, it STARTS stalling the connections and slowing down the database engine. Workload governor limits the performance of SQL SERVER Desktop engine (MSDE). Workload governor sits between the client and the database engine and counts the number of connections per database instance. If Workload governor finds that the number of connections exceeds eight connections, it starts stalling the connections and slowing down the database engine. |
|
| 18. |
What Is Default Port Number For Sql Server 2000? |
|
Answer» 1433. 1433. |
|
| 19. |
What Is Extent? Types Of Extents? |
|
Answer» EXTENT is a COLLECTION of 8 sequential pages.
Extent is a collection of 8 sequential pages. |
|
| 20. |
What Is 'write-ahead Log' In Sql Server 2000 ? |
|
Answer» Once data is stores in MEMORY USER can make changes to that a log FILE is generated. This log file is generated in every five minutes of transaction is DONE. After this sql server writes changes to database with the HELP of transaction log files. This is called Write-ahead log. Once data is stores in memory user can make changes to that a log file is generated. This log file is generated in every five minutes of transaction is done. After this sql server writes changes to database with the help of transaction log files. This is called Write-ahead log. |
|
| 21. |
What Is Logshipping And Its Purpose? |
|
Answer» In logshipping the TRANSACTIONAL LOG file from one server is AUTOMATICALLY updated in backup database on the other server and in the case when one server fails the other server will have the same DB and we can use this as the DDR (disaster recovery) plan. In logshipping the transactional log file from one server is automatically updated in backup database on the other server and in the case when one server fails the other server will have the same DB and we can use this as the DDR (disaster recovery) plan. |
|
| 22. |
What Command Do We Use To Rename A Database? |
|
Answer» sp_renamedb ‘oldname’, ‘newname’. sp_renamedb ‘oldname’, ‘newname’. |
|
| 23. |
What Are The Different Types Of Replication Are There In Sql Server 2000? |
|
Answer» Snapshot replication distributes data exactly as it appears at a specific moment in time and does not monitor for updates to the data. Snapshot replication is best used as a METHOD for replicating data that CHANGES INFREQUENTLY or where the most up-to-date values (low latency) are not a requirement. When synchronization occurs, the entire snapshot is generated and SENT to Subscribers. Snapshot replication distributes data exactly as it appears at a specific moment in time and does not monitor for updates to the data. Snapshot replication is best used as a method for replicating data that changes infrequently or where the most up-to-date values (low latency) are not a requirement. When synchronization occurs, the entire snapshot is generated and sent to Subscribers. |
|
| 24. |
What Is A Collation? |
|
Answer» A COLLATION specifies the bit patterns that represent each CHARACTER and the RULES by which characters are STORED and compared. A collation specifies the bit patterns that represent each character and the rules by which characters are stored and compared. |
|
| 25. |
Can I Run Multiple Instances Of Sql Server 2000 At The Same Time On One Computer? |
|
Answer» Yes. Yes. |
|
| 26. |
Does Sql Server 2000 Full-text Search Support Clustering? |
|
Answer» Yes. Yes. |
|
| 27. |
Does Sql Server 2000 Clustering Support Load Balancing? |
|
Answer» SQL Server 2000 clustering does not provide LOAD BALANCING; it PROVIDES failover support. To achieve load balancing, you NEED SOFTWARE that balances the load between clusters, not between servers within a cluster. SQL Server 2000 clustering does not provide load balancing; it provides failover support. To achieve load balancing, you need software that balances the load between clusters, not between servers within a cluster. |
|
| 28. |
What Is The Sql Server 2000 Version Number? |
|
Answer» 8.0. 8.0. |
|
| 29. |
What Is The Command To Change The Recovery Model? |
|
Answer» ALTER DATABASE [Database name] SET recovery full Alter database [Database name] set recovery full |
|
| 30. |
What Are The Recovery Models In Sql Server 2000? |
|
Answer» The RECOVERY models in SQL server 2000 are:
The recovery models in sql server 2000 are: |
|
| 31. |
How Many Database Files Are There In Sql Server 2000?what Are They? |
|
Answer» There are 3 DATABASE FILES in SQL server 2000.
There are 3 database files in sql server 2000. |
|
| 32. |
What Are The Default System Databases In Sql Server 2000? |
|
Answer» The default SYSTEM databases in sql server 2000 are: The default system databases in sql server 2000 are: |
|
| 33. |
How Many Instances Per Computer Are There In Sql Server 2000? |
|
Answer» 16. 16. |
|
| 34. |
How Many Databases Instances Are There In Sql Server 2000? |
|
Answer» 32,767. 32,767. |
|
| 35. |
What Is The Maximum Row Of A Size? |
|
Answer» 8060 BYTES. 8060 bytes. |
|
| 36. |
What Is The Definition For Sql Server 2000? |
|
Answer» MICROSOFT SQL SERVER is a relational MODEL database server PRODUCED by Microsoft. Its PRIMARY query languages are T-SQL and ANSI SQL. Microsoft SQL Server is a relational model database server produced by Microsoft. Its primary query languages are T-SQL and ANSI SQL. |
|