Viewing 15 posts - 511 through 525 (of 4,272 total)
The number of servers is an ongoing battle. Part of that battle is changing assumptions, many start from the "we need another server" assumption but where we should start...
March 1, 2012 at 1:53 pm
My first thought is that the prod server isn't really there.. I say that because you did a restore and it remembered the prod server but the current server...
March 1, 2012 at 1:39 pm
I just hate having to manually set all that up. I use the same base mail config for all servers. That script gets minor tweaks for the from...
March 1, 2012 at 1:36 pm
Lowell beat me to the SYNONYM point. I prefer to use that, the code never changes and the SYNONYM is defined at the database level given you the ability...
March 1, 2012 at 1:20 pm
Always is a strong word, so I'm going to say no. Over a long period of time they will probably be close, but any session remaining open when the...
March 1, 2012 at 1:18 pm
If you add:
EXEC master.dbo.xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent', N'UseDatabaseMail', N'REG_DWORD', 1
GO
EXEC master.dbo.xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent', N'DatabaseMailProfile', N'REG_SZ', N'DBA'
GO
It will configure SQL Agent as well.
CEWII
March 1, 2012 at 1:04 pm
I have a script to setup DBMail on my servers, but I still have to do Agent myself, maybe I'll script that too..
USE [msdb]
GO
EXEC dbo.sysmail_add_account_sp
...
March 1, 2012 at 12:45 pm
siva 20997 (3/1/2012)
March 1, 2012 at 12:37 pm
You are welcome.
I just hate asking the REALLY simple questions, I don't want people to think I am talking down to them.
And this is a REALLY easy step to miss....
March 1, 2012 at 12:22 pm
I get the idea of not wanting to spend anymore $$$ than necessary for licensing. You need to keep in mind that it is Microsoft's definitions of multi-plexing and...
March 1, 2012 at 12:18 pm
I'm gonna ask a stupid question, sorry, but did you configure SQL Agent to USE DBMail?
CEWII
March 1, 2012 at 12:04 pm
DNS is incapable of port binding.. So as you have specified it it cannot be done.
However, since it isn't a clustered machine you may be able to add 2-3...
March 1, 2012 at 11:53 am
The differing schemas is a problem because the pipeline in a data-flow is set at design-time and cannot differ at run time.
You mention that they are different schemas in the...
March 1, 2012 at 8:39 am
A type 4 SCD is defined as basically history tables.
Neither the SSIS SCD Wizard or the Kimbal SCD component supports type 4 SCDs.
Is this for a data warehouse?...
March 1, 2012 at 8:04 am
I dislike the registry for configurations. It is less visible and my experience has been it is easier to miss when deploying. So perhaps it is more secure...
March 1, 2012 at 7:55 am
Viewing 15 posts - 511 through 525 (of 4,272 total)