Viewing 8 posts - 46 through 53 (of 53 total)
I believe when I got that error rebooting the machine took care of it.
August 10, 2009 at 12:50 pm
Hello
I found this forum that discussed the problem:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=82093
at the bottom of the discussion this is how they got it to work:
On our SQL Server 2005 development...
July 28, 2009 at 10:33 am
John Doe (7/2/2009)
July 2, 2009 at 12:26 pm
If this is SQL Server 2005 Try this:
USE [master]
GO
EXEC dbo.sp_dbcmptlevel @dbname=N'Database_Name', @new_cmptlevel=90
GO
July 1, 2009 at 7:38 am
The default owner of the db_owner Schema is dbo. Use this to change it back.
USE [DatabaseName]
GO
ALTER AUTHORIZATION ON SCHEMA::[db_owner] TO [dbo]
GO
June 24, 2009 at 10:20 am
I checked out this problem and the answer seems to be to Log into your terminal server remotely or through the remote desktop utility. Open up SQL management studio on...
June 19, 2009 at 10:23 am
So your just trying to get this to your phone? And looking at the address you have that states your trying to send it to "phone number@provider.com" ...
June 16, 2009 at 10:10 am
Hello
Yes you can do this by creating a new role. I call the role sp_execute. You then add your role members (the users who will be able to execute the...
June 12, 2009 at 11:49 am
Viewing 8 posts - 46 through 53 (of 53 total)