Hello World!
摘要: 1. 查看数据库的版本 select @@version 2. 查看数据库所在机器操作系统参数 exec master..xp_msver 3. 查看数据库启动的参数 sp_configure 4. 查看数据库启动时间 select convert(varchar(30),login_time,120) from master..sysprocesses where spid=1 查看数据库服务器名和实例名 print 'Server Name...............:' + convert(varchar(30),@@SERVERNAME) p... 阅读全文
posted @ 2012-11-19 09:14 世界万物 阅读(206) 评论(0) 推荐(0) 编辑
Bye World!