Viewing 15 posts - 211 through 225 (of 1,160 total)
Hi Sasidhar,
I was not able to reproduce that issue. Can you please post the code and the job step details?
December 13, 2010 at 3:47 am
It is possible through VB Script as well. In addition to the Powershell link which I posted earlier, this has an even bigger repository.
December 12, 2010 at 8:11 pm
afaik you can only read information from Active Directory through SQL Server. SSMS does not have an option to "manage active directory".
You can make use of Powershell. More details here
December 12, 2010 at 11:00 am
'xp_restore_verifyonly' in turn makes use of RESTORE VERIFYONLY command. VERIFYONLY will verify that the backup set is valid. More details here.
The time it takes to verify the backup is always...
December 12, 2010 at 10:49 am
You can make use of a script similar to the one below.
CREATE LOGIN [computername$] FROM WINDOWS;
December 12, 2010 at 9:08 am
To add to the list, one more with screenshots.
http://www.db-staff.com/index.php/microsoft-sql-server/87-upgrade-sql-2005-cluster-to-sp3
December 12, 2010 at 9:04 am
Check the System/Application Event log and SQL Server Error Log when the system boots up. These logs would have some information as to why SQL Server service is not starting...
December 12, 2010 at 9:00 am
Please check if there is another instance of sqlservr.exe running in Task Manager.
December 11, 2010 at 10:25 am
On which OS are you installing SQL Server 2005? If it is Vista or Windows Server 2008 you may find this KB article useful.
December 11, 2010 at 10:17 am
Cross post. All replies at http://www.sqlservercentral.com/Forums/Topic1033318-146-1.aspx
December 11, 2010 at 10:13 am
elango_chn (12/9/2010)
PLs Change you System name (host name) and try it will work.
This is applicable when the System Name is in Lower case. In that case the error message will...
December 9, 2010 at 11:31 pm
Have a look at Redgate's SQL Monitor
December 9, 2010 at 11:01 pm
If Default Trace is running, then a query similar to the one below can be used.
SELECT
LoginName,max(StartTime)AS LoginTIme
FROM ::fn_trace_gettable('C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\log_493.trc',0)
where LoginName='loginname'
GROUP BY LoginName
This information...
December 9, 2010 at 12:59 pm
Add db_name() in the select list of the query that Lowell had given.
December 9, 2010 at 12:49 pm
Please check the logs located under C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG folder for the possible reason for this error.
December 8, 2010 at 10:31 pm
Viewing 15 posts - 211 through 225 (of 1,160 total)