Viewing 15 posts - 361 through 375 (of 1,161 total)
SKYBVI (11/18/2010)
Login faield for user 'sa'. Server is in single...
November 18, 2010 at 7:42 pm
You need to restore master database from the backup
November 18, 2010 at 12:57 pm
Agree with Roy. Restarting the instance would be a safe idea
November 18, 2010 at 9:33 am
The Error number will not be printed in SQL Server Error Logs. Please navigate to Application Event Log, you will find the error number listed there.
November 18, 2010 at 8:31 am
I am creating a DBMAIL, I know the smtp server name, can you please let us know which account need to be added to smtp server with what permissions.
AND
I saw...
November 18, 2010 at 6:18 am
Cross post. All responses at http://www.sqlservercentral.com/Forums/Topic1022684-391-1.aspx
November 18, 2010 at 2:19 am
You can make use of the scripts mentioned in this article to find out when was the database last accessed.
November 18, 2010 at 2:18 am
Check if the Job History has any information as to why the job is not proceeding. You may also add an output file to the Job Step to capture more...
November 18, 2010 at 2:12 am
You can make use of the Default Trace to track DDL Changes. Please go through this[/url] useful article on SSC.
November 18, 2010 at 1:22 am
SQL Server should be started in Single User mode. Hence the -m startup parameter should be used
November 18, 2010 at 1:14 am
You need enable NOCHECK on the tables. Check if some of the script posted here are useful.
November 17, 2010 at 10:41 pm
smjhunt (11/17/2010)
ServerConnection connDst = new ServerConnection("servername\\MSSQLServer", "sa", "password");
Are you using the correct Instance Name?
servername\\MSSQLServer does not seem to be a right one.
November 17, 2010 at 10:39 pm
Yes it is necessary to use 3608 trace flag. This article[/url] in SSC has good information about moving system databases.
November 17, 2010 at 10:02 pm
You may create an Alert for Error # 833 and configure it to send an email to the operators. Here is an example
USE [msdb]
GO
EXEC msdb.dbo.sp_add_alert @name=N'833Alert',
@message_id=833,
@severity=0,
@enabled=1,...
November 17, 2010 at 9:56 pm
pavan_srirangam (11/17/2010)
Just give him db_securityadmin. works fine for that.
Secutityadmin members can GRANT, REVOKE, DENY permissions. It has nothing to do with RESTORE permissions. More details here
Minimum requirements:
To backup a database:-...
November 17, 2010 at 9:43 pm
Viewing 15 posts - 361 through 375 (of 1,161 total)