Answer by Jason Crider
I had something similar happen, and I believe I had to go into the roles and add application Server. I added Web Server(IIS) as well because I just didn't know at the time, but I wonder if it would be...
View ArticleAnswer by Jason Crider
There's no way I can write that whole thing for you, but here's a couple of thoughts. I've used the conversion like this: SELECT DATEADD(hour, -5, GETUTCDATE()) And also like this: SELECT TOP 100 a.ID,...
View ArticleAnswer by Jason Crider
Not sure if you can use it, but here's a nice way to copy and rename in one step. Depends on how your logic is for usefulness. Can you check for the existence of the file and if it's not there you put...
View ArticleAnswer by Jason Crider
The minus sign was really the problem. I had tried the way that Jay mentioned before and I never could quite get the negative days to work. Here's how I finally got it to work. The number of days to...
View ArticleAnswer by Jason Crider
Excel Integration in SSIS Package Here's an older list of links I used when populating an excel spreadsheet versus extracting as you are hoping to do. One of the biggest things I ran into is whether or...
View ArticleAnswer by Jason Crider
I started with the following link: http://technet.microsoft.com/en-us/library/cc645858.aspx See if that Validating LSN Boundaries section at the top helps you at all.
View ArticleAnswer by Jason Crider
I will add the little bit I've seen with it. Don't expect to patch up to 2282. I'm not sure at what point it breaks between SP4 and 2282 though.
View ArticleAnswer by Jason Crider
you could also go to a cmd line and type "netstat -a" and find all kind of port goodness there. I do know that I've had to hit one with a different port it was instance, port.
View ArticleAnswer by Jason Crider
I would point to the following resources that have truly helped me in the beginning: [SSIS multi-environment configuration in a single SQL Server table][1] [SQL Overview Part I][2] And here are some...
View ArticleAnswer by Jason Crider
SET ROWCOUNT 10000 --DECLARE @Text varchar(255) --SET @Text = 'Deleted 10000 rows' DELETE FROM [database].[dbo].[table] WHERE DateChecked < '2011-01-01' WHILE @@rowcount > 0 BEGIN DELETE FROM...
View ArticleAnswer by Jason Crider
See if walking through this gives you some ideas: [http://www.sqlservercentral.com/articles/Integration+Services+%28SSIS%29/61621/][1] [1]:...
View ArticleAnswer by Jason Crider
Hi Larry, You say that you are connecting to 2008 R2, correct? What version is on your box?
View ArticleAnswer by Jason Crider
Larry, I've had problems in the past when I tried to open a newer template in an older version. Start looking here ([http://msdn.microsoft.com/en-us/library/ms188303.aspx][1]) and see what you can...
View Article