Viewing 13 posts - 301 through 313 (of 313 total)
Hi,
1. You are able to run DTS 2000 in SSIS, but I would recommend using SSIS from the start if they are going to be moving to it in the...
March 8, 2007 at 2:36 pm
James, see my post on a similar forum:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=148&messageid=349385
Let me know if that helps.
Steve
March 8, 2007 at 2:28 pm
Hi,
You can't single-click on the ExecuteSql task and then drag the green line to the Data Flow task?
March 8, 2007 at 2:24 pm
You could create a Script Task Component that sets the value of a package variable to true or false based on whether or the file is there.
Then, you can change...
March 8, 2007 at 2:22 pm
All,
The standard security on an SSIS package is "EncryptSensistiveWithUserKey" which only allows the user that created it to be able to run in as long as there is sensitive information...
March 8, 2007 at 1:39 pm
Hm, I'm not sure then.. I see what you're saying, but I don't really have a suggestion on how to get that value dynamically... Sorry I can't be of...
February 8, 2007 at 2:14 pm
I'm not sure why it would stop working, but as a regular practice, I would put the column names on your insert statement,
TRUNCATE TABLE [dbo].[agingData]
INSERT INTO [dbo].[agingData] (col1, col2, col3)
...
February 1, 2007 at 12:25 pm
You could set up an OnError Handler at the package level and set up an SMTP connection and send an email on the package failure. When you say "setup...
February 1, 2007 at 11:59 am
When you have a SQL Server database with a fill factor of 50%, it's my understanding that each page will leave 50% of free space to allow for clustered indexing...
February 1, 2007 at 11:52 am
Just tried re-creating the profile with the same results. The server I'm using requires SSL on port 465, do you think I need to open up a port so...
January 12, 2007 at 2:01 pm
Thanks for the reply... I was just mentioning my Outlook settings in relation to the settings I set up in Database mail. The settings work in Outlook but...
January 12, 2007 at 8:14 am
You can have your app convert the format to mm/dd/yyyy and then convert the date pulled in by your query to that format..
CREATE PROCEDURE ap_getInfo
@importedDate datetime
AS
SELECT CONVERT (varchar, [dateColumn], 101)...
December 23, 2006 at 10:19 pm
I had the same problem with my FTP Task. The problem is that the package views the FTP password as "sensitive information" and the default setting is "EncryptSensitiveWithUserKey". This setting...
November 21, 2006 at 1:46 pm
Viewing 13 posts - 301 through 313 (of 313 total)