after sysprep of an SQL 2005 the SQL Server Agent won't start as any other
account but Local System.
I did change the server's name to mach the windows server name:
check servername
select @@servername,serverproperty('machinename')
if both values are different then you need to
exec sp_dropserver 'oldservername'
exec sp_addserver 'newservername','local'
After that I did a restart of the whole server, no help.
If I add a domain account to the local admins group, and make the SQL
Server Agent run as that account, then it works. But I don't like idea of
having that account as the local admin.
Any ideas?
Any good articles on sysprep'ping the SQL 2005 and 2008?
Thank you in advance!
Regards
Zoran
I have NOT seen offten users./clients have a SQL Server account member of
non-admin group
"Zoran" <ms....@pantic.dk> wrote in message
news:e1kWImbb...@TK2MSFTNGP04.phx.gbl...
But are both services configured with the same password?
Then again, that does not look like an error message from Windows, but
SQL Server. That is, the service account is not able to log into
SQL Server.
Log in to Windows as OurDomain\SqlService and try to connect to
SQL Server with Windows Authentication. My guess is that this will
fail.
--
Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se
Links for SQL Server Books Online:
SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx
SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx
SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx