Viewing 15 posts - 151 through 165 (of 469 total)
NJ-DBA (12/6/2011)
December 6, 2011 at 1:56 pm
With the limited info you provided, I can say it's likely that the peformance gain you are noticing is due sql server caching the execution plan and reuses it on...
December 6, 2011 at 1:55 pm
I run the following to set page lock on for every index in every database on a server:
exec master..sp_MSForeachdb 'USE [?]
if ((select is_read_only from sys.databases where name=db_name())=0)
begin
SET NOCOUNT ON
DECLARE @DBName...
December 6, 2011 at 12:09 pm
george sibbald (12/5/2011)
December 5, 2011 at 6:21 am
crazy4sql (12/5/2011)
Also sp_change_users_login, report only about the orphaned sql login...
December 5, 2011 at 5:59 am
vultar (11/22/2011)
NJ-DBA - That's worked a treat, much better & safer than editing the...
November 22, 2011 at 8:10 am
NJ-DBA (11/22/2011)
NJ-DBA (11/22/2011)
Here I will show how to find or change the default backup dircetory in various versions of SQL Server.
SQL Server 2008
Connect to the server in SSMS.
In...
November 22, 2011 at 7:42 am
NJ-DBA (11/22/2011)
Here I will show how to find or change the default backup dircetory in various versions of SQL Server.
SQL Server 2008
Connect to the server in SSMS.
In the...
November 22, 2011 at 7:37 am
from http://www.sqlservercentral.com/articles/Backup+%2f+Restore/71500/
Here I will show how to find or change the default backup dircetory in various versions of SQL Server.
SQL Server 2008
Connect to the server in SSMS.
In the Object...
November 22, 2011 at 7:36 am
NJ-DBA (11/10/2011)
November 10, 2011 at 11:22 am
christophe.bernard 47659 (11/10/2011)
We worked with sql server 2005 and since last week end we have migrate all your server, database and so on to sql server 2008.
Now, we notice since...
November 10, 2011 at 9:30 am
Hmm, I guess the system accuont needs to be granted permissions to "send as" the sender email address you are using.
November 9, 2011 at 12:33 pm
Sounds pretty solid to me.
November 9, 2011 at 8:23 am
The error message suggests it cant "send as" the sender you are specifying... so you said you specified your address as the sender- if you leave the sender address blank...
November 9, 2011 at 8:06 am
You need to talk to the person who administers your SMTP server. The easiest way, is for the mail server admin to configure the SMTP server to allow anonymous...
November 9, 2011 at 7:11 am
Viewing 15 posts - 151 through 165 (of 469 total)