Viewing 5 posts - 1 through 5 (of 5 total)
This can be useful in identifying the host AND the program connecting to you SQL Server database.
In Query Analyzer execute
exec sp_who2
Note the "PorgramName" column.
September 27, 2005 at 9:53 am
Alternatively you can use the following select to obtain the hostname of the SQL Server.
SELECT SERVERPROPERTY('ServerName') as 'Server Name';
and the query below will provide you with further useful SQL Server...
July 13, 2005 at 11:24 am
This is a great start! How can other DBA's/SQL Developers contribute more "TiVo for DBA's"?
What tools were used to capture and record the administrative tasks demonstrated in the video? And...
December 16, 2004 at 1:36 pm
Short answer: No. You cannot use SQL Server & the SA account to retrieve the Windows 2003 Server Administrator account password.
You can, however, overwrite or reset the Administrator with a...
August 2, 2004 at 10:48 am
If you have administrative access to the Windows server SQL Server is installed on do this:
SQL Server sa account password lost
Login to the SQL Server computer as the Administrator of...
April 2, 2004 at 6:44 am
Viewing 5 posts - 1 through 5 (of 5 total)