Viewing 15 posts - 4,246 through 4,260 (of 7,187 total)
So what happens when you try to send a test mail from Database Mail? Does it arrive? Does your job include an explicit sp_send_dbmail or is it just...
November 28, 2012 at 8:23 am
Rob
My intention was not to try to persuade you to use a natural key instead of a surrogate key as your primary key and/or clustered index. I do have...
November 28, 2012 at 7:13 am
Step 1: type set max server memory into your favourite search engine.
John
November 28, 2012 at 4:25 am
I don't know if this would work for you, but you could create the schema in the model database. Then it would appear automatically in all new databases.
John
November 28, 2012 at 1:37 am
Maybe you have an orphaned user. If you look at the properties of the user, what does it say next to Login name? If it's blank, try dropping...
November 27, 2012 at 6:20 am
Wow - that's a lot of indexes, and some of them looking very similar to others. I think I'd look at finding out which of them aren't used, and...
November 27, 2012 at 6:02 am
Sounds like you need to grant the service account the lock pages in memory right.
John
November 27, 2012 at 5:49 am
Mike
Where are those messages appearing? Are you getting anything in SQLAGENT.OUT?
John
November 27, 2012 at 3:32 am
Rob
I'm really sorry to hear about your health problems, and I hope it all works out for you.
It would really help if you could post the DDL for your table,...
November 27, 2012 at 3:20 am
Yes, it's been available since SQL Server 2005. Online index rebuilds are only available with Enterprise Edition, however. (At least that was the case up to 2008 R2,...
November 26, 2012 at 8:50 am
Ah yes, so it does. I'm running out of ideas now. How about creating a named local Windows account and seeing if you can start SQL Server Agent...
November 26, 2012 at 7:18 am
Sounds like you might have to do it manually, then. Try creating a login for your domain account and adding it to sysadmin. Then use SQL Server Configuration...
November 26, 2012 at 7:01 am
If it's a single transaction that's causing the log growth, increasing backup frequency won't help. You'll need to rewrite the transaction or ensure you have enough disk space to...
November 26, 2012 at 5:05 am
Something like this:
SELECT 'USE ' + name + ' EXEC sp_addrolemember ''db_datareader'', ''myusername'''
FROM master..sysdatabases
That will generate the SQL to add the user to the role in each database. This...
November 26, 2012 at 4:48 am
You'll be looking for the COALESCE function.
John
November 26, 2012 at 4:24 am
Viewing 15 posts - 4,246 through 4,260 (of 7,187 total)