MattGibson (12th November 2008)
Very strange problem i went to do a backup last night but couldn't get the SA user to work. so i checked nightly backup script to see what password it was using, and sure enough it was correct. So how comes its backing up with SA user but im unable to use it under DBAttach....?
Any ideas?
Re-run S:\setups\SIMSSQLApplicationSetup.exe
Check where it installs too, some times it refers to the old path (MSDE).
There are known issues with dbattach with switches.
the exact message i get is "Login Failed for user 'sa'."
Cant really understand if its backing up with sa - surely it should work for other database tasks such as dbattach
How do i do this as sa isn't part of the system manager.
Do i use ChSaPwd.exe?
Log on to the SIMS\MSSQL server as administrator and run...
OSQL -E -S servername -Q "exec sp_password NULL, 'newpassword', 'sa'"
MattGibson (12th November 2008)
Ah Brilliant, Cheers for that it worked - My SQL knowledge is very limited.
Don't understand how it could use the same login on the script to do a backup. but wouldn't let me use it anywhere else.
You mean MSSQL[Quickly covers up his documents with MySQL instend of Mssql]
I would try reinstalling dbattach.
Me again!
Since changing the sa password my backups are now failing, When the SQL Script runs it says failed login for Sims & FMS.....
I have looked at the script under -Usa -Ppassword and its is the same password as i changed it too the other week.
Is there another table in the database which needs updating?
cheers guys
Have you got multiple instances of SQL going on there?
Is the instance name in the backup script the same one that you specified in the password change command, i.e.
-S servername
vs
-S servername\instancename
Also - am assuming that you are running the commands from the same machine that is running the backup script, is that correct?
Yep Double checked its the same as what i used.
OSQL -E -S ADM-Sr-001\Sims2005 -Q "exec sp_password NULL, 'newpassword', 'sa'"
And this seemed to work.
Like i said before the backup script worked fine before i changed the sa password because i was unable to use DBAttach.
The script I'm using is:
OSQL -S ADM-Sr-001\Sims2005 -E -N -Q "exec ccsfms.sims.db_p_transfer_login"
OSQL -S ADM-Sr-001\Sims2005 -E -N -Q "exec sims.sims.db_p_transfer_login"
OSQL -S ADM-Sr-001\Sims2005 -Usa -Ppasswordsql-2005 -n -Q "BACKUP DATABASE SIMS TO DISK = 'F:\Program Files\Microsoft SQL Server 2005\MSSQL.1\MSSQL\Nightly\SIMSSQL.BAK'"
OSQL -S ADM-Sr-001\Sims2005 -Usa -Ppasswordsql-2005 -n -Q "BACKUP DATABASE CCSFMS TO DISK= 'F:\Program Files\MICROSOFT SQL Server 2005\MSSQL.1\MSSQL\NIGHTLY\CCSFMS.BAK'"
net stop mssql$sims2005
net start mssql$sims2005
:S
Why are you stopping the service and starting it? Backups like this are done live
I would run a query (using SQL Server Management Studio ) to check for any errors.
DBCC CHECKDB WITH NO_INFOMSGS, TABLERESULTS
Check there is no errors in the database. I would really look at doing this via dbattach with switches.
Otherwise, just stop the service then copy the .mdf and .ldf
There are currently 1 users browsing this thread. (0 members and 1 guests)