adspace


How many database files are there in sql server 2000?what are they?

Answer Posted / Raju Kumar Rai

In SQL Server 2000, there are five system databases and one user-created database file:n
1. Master: Stores metadata about other databases, login information, and system objects.
2. Model: Contains the default settings for a new database.
3. Tempdb: Temporary storage area for sorting, hash tables, and worktables during execution of queries.
4. Msdb: Used by SQL Server Agent to store job history, alerts, and other agent-related objects.
5. Northwind: A sample database that contains data from an online food sales company.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it possible to have clustered index on separate drive from original table location?

1041


List out the different types of locks available in sql server?

1051


How to rebuild the master database?

1167


What are different types of constraints?

1003


What are the properties of the transaction?

1074


This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?

2568


What is acid mean in sql server?

1247


explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration

1134


How efficient you are in oracle and SQL server?

1258


Equi join and non equi join is possible with sql server?

1134


How to provide default values to function parameters?

1261


How do I find query history in sql server?

1026


Why use identity in sql server?

1203


How to enter binary string literals in ms sql server?

1246


What is temporary table in sql server? Why we use temp table?

1023