1,resouce database
SQL Server 2005 added the Resource database. This database contains all the read-only critical
system tables, metadata, and stored procedures that SQL Server needs to run. It does not contain any information about your instance or your databases, because it is only written to during an installation of a new service pack. The Resource database contains all the physical tables and stored procedures referenced logically by other databases. The database can be found by default in C:\Program Files\Microsoft SQLServer\MSSQL10.MSSQLSERVER\MSSQL\Binn.mdf and .ldf, and there is only one Resource database per instance.
SELECT serverproperty('resourceversion') ResourceDBVersion,
serverproperty('resourcelastupdatedatetime') LastUpdateDate
2,The master Database
The master database contains the metadata about your databases (database configuration and file location),logins, and configuration information about the instance.
select * from sys.databases
3,tempdb Database
The tempdb database is similar to the operating system paging file. It’s used to hold temporary objects created by users, temporary objects needed by the database engine, and row-version information
4,model Database
model is a system database that serves as a template when SQL Server creates a new database.
5,msdb Database
msdb is a system database that contains information used by SQL Server agent, log shipping, SSIS, andthe backup and restore system for the relational database engine.
6,Schemas
Schemas enable you to group database objects together.
7,查看列类型
select o.name table_name ,c.name column_name,TYPE_NAME(c.user_type_id) as column_type
from sys.columns c,sys.objects o
where c.object_id=o.object_id and o.name='a'
8,存储类型
%20
%20
%20
sqlserver2008初步认识
来源:这里教程网
时间:2026-03-02 10:30:13
作者:
编辑推荐:
- sqlserver2008初步认识03-02
- Tomcat+JAVAJdk+SQL2000+JDBC环境搭建03-02
- Ubuntu free命令详解(轻松查看Linux内存使用情况)03-02
- nosql概述(引自维基百科nosql)03-02
- SQLSERVER启动不起来(错误9003)的解决方法分享03-02
- (SQLServer调试)无法启动T-SQL调试。未能连接到计算机 “.”。异常处理03-02
- Mysql,SqlServer,Oracle主键自动增长的设置03-02
- 2014 Moncler Pas Cher Recruit Damian Prince receives death threats03-02
下一篇:
相关推荐
-
雷神推出 MIX PRO II 迷你主机:基于 Ultra 200H,玻璃上盖 + ARGB 灯效
2 月 9 日消息,雷神 (THUNDEROBOT) 现已宣布推出基于英
-
制造商 Musnap 推出彩色墨水屏电纸书 Ocean C:支持手写笔、第三方安卓应用
2 月 10 日消息,制造商 Musnap 现已在海外推出一款 Oce
热文推荐
- sqlserver2008初步认识
sqlserver2008初步认识
26-03-02 - Ubuntu free命令详解(轻松查看Linux内存使用情况)
Ubuntu free命令详解(轻松查看Linux内存使用情况)
26-03-02 - nosql概述(引自维基百科nosql)
nosql概述(引自维基百科nosql)
26-03-02 - Mysql,SqlServer,Oracle主键自动增长的设置
Mysql,SqlServer,Oracle主键自动增长的设置
26-03-02 - 电脑C盘哪些文件可以删除
电脑C盘哪些文件可以删除
26-03-02 - 电脑显卡n卡和a卡的区别
电脑显卡n卡和a卡的区别
26-03-02 - [现实]分享Silverlight/Windows8/WPF/WP7/HTML5
- 电脑如何设置开机启动项
电脑如何设置开机启动项
26-03-02 - hp1010驱动安装图文教程
hp1010驱动安装图文教程
26-03-02 - 电脑CPU怎么测试性能
电脑CPU怎么测试性能
26-03-02
