Viewing 15 posts - 196 through 210 (of 699 total)
Your request isn't really very clear ... I can think of several solutions, but can you elaborate a bit on the problem?
November 8, 2011 at 12:00 pm
Don't set the connection string property. Set the ExcelFilePath property. I find that it causes fewer headaches than trying to build a string for the connectionstring, since unlike the other...
November 8, 2011 at 11:55 am
Yup, basically what christina said.
Use the lookup unless you're really running into memory restrictions. Lookup is *way* faster, and it's designed for this exact purpose. Just make sure that you...
November 8, 2011 at 7:18 am
SQL_Athmi (6/6/2011)
MERGE - similar to JOIN operation. Only joins only two inputs. If there are more than two inputs UNIONALL is used
MERGE JOIN -...
November 8, 2011 at 7:14 am
IF there isn't a huge amount of logic being used to transfer the data, maybe you could use a foreach loop, and have a table which has the names of...
November 8, 2011 at 7:02 am
Honestly I don't really think you're giving enough information here for me to be able to answer that question.
What DateDiff in the case statement are you referring to? The one...
November 7, 2011 at 8:36 am
Yeah if you can find the example of the windows login that would be great. I assume I would have to log in to the machine that the database server...
November 7, 2011 at 8:05 am
I don't think there is a proxy account set up. I was looking into that, but I'm not sure which login I need to use in the proxy for this...
November 7, 2011 at 7:44 am
Hmm Jeff, now I'm getting the error:
The xp_cmdshell proxy account information cannot be retrieved or is invalid. Verify that the '##xp_cmdshell_proxy_account##' credential exists and contains valid information.
Here's what I tried...
November 7, 2011 at 6:57 am
The last option, of course, if the cte isn't sufficient due to the size of the query or the need for indexes or something, is to create a real table,...
November 7, 2011 at 6:39 am
Why not just do this, as your source:
WITH cte AS
(
SELECT Comp.CompanyName, LEFT(Comp.CompanyNumber, 6) AS [Account Number], Quote.QuoteID,
MIN(Comp.PhoneNumber) AS Phone, MIN(CoTyp.AgencyTypeDescription) AS Affinity,
MIN(MktTer.MarketingTerritoryID) AS Territory, MIN(Co.CountyName) AS County,
CASE...
November 7, 2011 at 6:15 am
I'm guessing that, short of logging in as SA, there's no way of being able to get a database to be owned by SA?
November 7, 2011 at 6:03 am
Well unfortunately Lynn, that solution doesn't work - the user still needs access to xp_cmdshell, even if I use EXECUTE AS.
I've looked for other solutions, but it appears as though...
November 4, 2011 at 9:12 am
Create a blank template file, and a blank output file. As the first step in your process, use the File System Task, choose Copy File, choose Overwrite Destination, and select...
November 4, 2011 at 8:07 am
Seems like your problem is that the user which you are using on SSIS to connect to the database, doesn't have permissions to access the linked server.
But I think your...
November 4, 2011 at 7:45 am
Viewing 15 posts - 196 through 210 (of 699 total)