Some simple hints:
for version 2000+: exec xp_msver 'ProcessorCount'
for version 2005+ : sys.dm_os_sys_info
Tuesday, September 14, 2010
Friday, September 10, 2010
Flaw in sp_helpdb system stored procedure
Well, it is the first time ever for me to encounter this problem, so I documented it here with 3external links which explain the cause and solution pertty well already: link1, link2, link3.
The script to quickly locate databases without owners is:
select name from master..sysdatabases
where suer_sname(sid) is null
go
The script to quickly locate databases without owners is:
select name from master..sysdatabases
where suer_sname(sid) is null
go
Labels:
sp_helpdb,
system stored procedure
Subscribe to:
Posts (Atom)