default databases available in sql server and there uses ?
Answers were Sorted based on User's Feedback
Answer / rajesh bhawsar
1.Model
Model database is templete. when u create new database
system gives u a copy of model database
2.Tempdb
Tempdb is scratchpad of sql server
3.msdb
4.master
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sreeja.t.pillai
Default databases in SQL server are
1.Master
2.Model
3.tempdb
4.msbd
Master-Contains information about all databases and contains system objects.
Model-It is a template database used in creation of any new database.
msdb-It contains information about sql agent,job,dts packaging and some replication information.
tempdb-contains temporary stored procedures and tables.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / selvam
There are 5 default DB's in Sql server
1. Master - Contains all of the system level information
2. Model- Used as a template db for all db instances created in SQL Server
3. Msdb -- It used by sql server agent, Mail Service
4. Tempdb -- Contains temporary objects and intermediate results
5. Resource -- it is read only db that contains system objects that are included with sql server
Is This Answer Correct ? | 1 Yes | 0 No |
Write a program using SQL queries to find a unique entry in a table.
What is the default server name for sql server?
How do you send email on SQL Server?
you have developed an application which uses many stored procedures and triggers to update various tables users ocassionally get locking problems which tool is best suited to help you diagnose the problem? : Sql server administration
What is normalization in Database ?
What are the types of database schema? : sql server analysis services, ssas
How can I know what locks are running on which resource?
What languages bi uses to achieve the goal?
what type of index will get created after executing the above statement? : Sql server database administration
syntex of insert
What is log shipping? Can we do logshipping with SQL Server 7.0 - Logshipping is a new feature of SQL Server 2000. We should have two SQL Server - Enterprise Editions. From Enterprise Manager we can configure the logshipping. In logshipping the transactional log file from one server is automatically updated into the backup database on the other server. If one server fails, the other server will have the same db and we can use this as the DR (disaster recovery) plan.
How to create a large table with random data for index testing in ms sql server?