Viewing 15 posts - 421 through 435 (of 1,161 total)
Cross posted. All replies here
November 11, 2010 at 9:31 pm
Please go through the Summary.txt file located on C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\LOG. It will the detail about which component failed.
November 11, 2010 at 9:11 am
In the Cleanup task did you enter .bak instead of bak as file extension?
November 11, 2010 at 8:26 am
You may use sp_CompareDB posted in this discussion.
November 10, 2010 at 10:01 pm
If DAC is also not an option, as Henrico suggested try connecting to the instance using startup account credentials.
November 10, 2010 at 10:28 am
These examples should get you started.
http://blog.netnerds.net/2008/02/create-a-basic-sql-server-2005-trigger-to-send-e-mail-alerts/%5B/url%5D
http://www.datasprings.com/Resources/ArticlesInformation/CreatingEmailTriggersinSQLServer2005.aspx
November 10, 2010 at 9:22 am
Does the "test" user have permissions on AuditDatabase database?
November 10, 2010 at 6:03 am
In that case you need to Open the maintenance plan and click on Save to update the MP to use the existing databases.
Other option is to use a custom script...
November 10, 2010 at 3:57 am
Glad to know that the issue is resolved.
November 10, 2010 at 2:57 am
DBAsql-1046554 (11/9/2010)
First query returns 1 row where as second does not return any.
This means there is an open transaction on Tempdb.
November 10, 2010 at 2:32 am
I have not come across any performance issues because of creating SQL Logins back to back
November 9, 2010 at 10:28 pm
Like mentioned earlier this article has a script for fixing Maintenance Plans.
November 9, 2010 at 10:24 pm
Does these queries give you any output? If not, try shrinking tempdb now.
SELECT * FROM sys.dm_exec_requests WHERE database_id = 2
go
select * from sys.dm_tran_locks where resource_database_id=2
go
November 9, 2010 at 10:20 pm
Since you are able to execute that file under the credentials of service account, permissions issue is ruled out.
Does the folder or file has spaces in between or the length...
November 9, 2010 at 6:07 am
Did you try launching the exe under the credentials of the service account (by logging on to the server using service account / using "Run as" for the exe)
November 9, 2010 at 4:36 am
Viewing 15 posts - 421 through 435 (of 1,161 total)