Viewing 15 posts - 421 through 435 (of 495 total)
Right. So instead of using the OS to store your path, put it into a config file and map the SSIS package to read the config file to get...
July 28, 2010 at 7:41 am
Why would you do that? Couldn't the data from the system variable be transferred into the config file? IMO depending upon the OS for that sort of thing...
July 28, 2010 at 7:11 am
The SELECT @variable = SCOPE_IDENTITY needs to be the very next statement after the insert to ensure you are getting the proper IDENTITY. So before the END.
July 27, 2010 at 2:22 pm
No. Do your insert as normal without reference to the ID column. The insert will create the row and generate the identity. The very next statement after...
July 27, 2010 at 2:01 pm
So I assume then that you are using Basic Authentication with the user name and password? If you use Windows Auth it WILL use the SQL Server service account.
Can't...
July 27, 2010 at 12:21 pm
OK, you are not making any sense to me. You say "same account" and "different account" in the same breath, you say that the setup on this server is...
July 27, 2010 at 11:55 am
Plus there are DR scenarios for which log shipping is perfect, far more suited than mirroring. I think it would be a mistake to remove the feature.
July 27, 2010 at 11:18 am
Sounds like the SQL Server service account has write-only access to the directory, and can't read from it. Check to make sure that read access is available in both...
July 27, 2010 at 11:16 am
But that would also deny the DB he needs, though, right?
July 27, 2010 at 11:13 am
Are you sure that the mail account is set up in the mail server correctly? You're getting a mailbox access error; if this were Exchange, I would assume that...
July 27, 2010 at 11:12 am
This is an edited job creation script to show what I mean.
USE [msdb]
GO
DECLARE @FileName NVARCHAR(200)
DECLARE @FilePath NVARCHAR(200)
DECLARE @ConfigFile NVARCHAR(200)
SELECT @FilePath = 'C:\'
SELECT @FileName = @FilePath + 'test.dtsx'
SELECT @ConfigFile = @FilePath...
July 27, 2010 at 11:10 am
timscronin (7/27/2010)
July 27, 2010 at 8:34 am
Looks like an Exchange setup issue. Are you sure that the account being used for DB Mail has an Exchange mailbox created? You can't do anything without that...
July 26, 2010 at 3:19 pm
For a GROUP BY query, you can only order by columns in the SELECT list. Therefore the only way to do what you need is to put the month...
July 26, 2010 at 3:08 pm
Because of the support issues that Gail refers to, we find that it is a waste of time to monitor SQL Servers running SharePoint. Best to make them reside...
July 26, 2010 at 10:53 am
Viewing 15 posts - 421 through 435 (of 495 total)