Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 MS SQL Server Interview Questions / FAQs
Describe Microsoft SQL Server 2000 ?
Microsoft SQL Server 2000 is a full-featured relational database management system (RDBMS) that offers a variety of administrative tools to ease the burdens of database development, maintenance and administration. The more frequently used tools: Enterprise Manager, Query Analyzer, SQL Profiler, Service Manager, Data Transformation Services and Books Online. Lets take a brief look at each:

Enterprise Manager is the main administrative console for SQL Server installations. It provides you with a graphical "birds-eye" view of all of the SQL Server installations on your network. You can perform high-level administrative functions that affect one or more servers, schedule common maintenance tasks or create and modify the structure of individual databases.

Query Analyzer offers a quick and dirty method for performing queries against any of your SQL Server databases. It is a great way to quickly pull information out of a database in response to a user request, test queries before implementing them in other applications, create/modify stored procedures and execute administrative tasks.

SQL Profiler provides a window into the inner workings of your database. You can monitor many different event types and observe database performance in real time. SQL Profiler allows you to capture and replay system "traces" that log various activities. It is a great tool for optimizing databases with performance issues or troubleshooting particular problems.

Service Manager is used to control the MSSQLServer (the main SQL Server process), MSDTC (Microsoft Distributed Transaction Coordinator) and SQLServerAgent processes. An icon for this service normally resides in the system tray of machines running SQL Server. You can use Service Manager to start, stop or pause any one of these services.

Data Transformation Services (DTS) provide an extremely flexible method for importing and exporting data between a Microsoft SQL Server installation and a large variety of other formats. The most commonly used DTS application is the "Import and Export Data" wizard found in the SQL Server program group.

Which operator performs pattern matching in SQL Server?
LIKE operator.
Which operator tests column for the absence of data in SQL Server?
IS NULL operator.
Which wildcards are used for pattern matching in SQL Server?
There are two wildcards are used for pattern matching:
1. _ for single character substitution and
2. % for multi-character substitution
State true or false. EXISTS, SOME, ANY are operators in SQL ?
True.
State true or false. !=, <>, ^= all denote the same operation in SQL Server.
True.
What are the privileges that can be granted on a table by a user to others in SQL Server?
Insert, update, delete, select, references, index, execute, alter, all.
Displaying page 1 of 11NextLast
What is the UNIQUE KEY constraint in SQL Server?
What is difference between function and stored procedure in sql server?
What is the full form of .mdf in sql server data files?
Which function is used in SQL Server to find the largest integer less than or equal to a specific value?
What is the difference between group by and order by?
TRUNCATE TABLE EMP;, DELETE FROM EMP; -What Will the outputs of the above two commands (Queries) in SQL Server?
What is the default join in SQL Server 2000?
What is the primary key in SQL Server?
The reason why views are created in SQL Server?
What is a Subquery ?