Viewing 15 posts - 16 through 30 (of 57 total)
Perhaps the is something wrong with the variable. Under the Dim filePath As String = Dts.Variables.Item("FileName").Value.ToString line add msgbox(filePath). Then run the package and see if the process is moving...
August 14, 2009 at 9:23 am
Even though this is SQL 2005 we still like to assist. Try this procedure I wrote using the undocumented sp_MSforeachdb procedure. You'll need the table DatabaseGrowthStats for testing. Here is...
August 12, 2009 at 11:06 am
San - I was able to accomplish this task in SSIS. Here are the steps I took:
1.) Add a Foreach Loop container
2.) Set properteries to For Each File Enumerator. Set...
August 11, 2009 at 11:05 am
Double check the account used for SQL Agent has rights to execute the procedure. When you run the procedure from SSMS either your AD account or the SQL account is...
August 11, 2009 at 9:51 am
Thanks for your input Paul. I'll take your suggestion and do some testing in our DEV environement.
August 7, 2009 at 9:19 am
Follow Up: Thanks again everyone who replied. Here are my findings after testing both solutions:
Sol1: Alter the column with an Alter Table statement
Took 13 minutes to alter...
August 5, 2009 at 2:36 pm
Rggg...typing. Command not comment.
August 5, 2009 at 10:38 am
Paul - Yes to your question. The field in question is populated but is a NULLABLE field and it does sit in the middle of the row.
FYI - I ran...
August 5, 2009 at 10:36 am
Thank you all for the replies. These is data in the column however some values are NULL.
August 5, 2009 at 10:09 am
First - Thank you to all that spent time working on a solution.
Lamprey13's solution is hitting on the correct records. If you look at the tmpOrders data sorted by recordid...
July 24, 2009 at 9:50 am
To eliminate dynamic sql you could use an if statement like the following (used a simple date select to get the point across):
DECLARE @nParent NVARCHAR(3)
SET @nParent = 'ALL'
IF ISNUMERIC(@nParent) =...
July 8, 2009 at 10:38 am
Being a little OCD with my queries, I prefer upper case keywords. I agree holding the shift key can be a pain and slow things down. There is a great...
July 8, 2009 at 10:21 am
Also, if the issue is intermittent you could setup a small table to log any errors. In the catch block set an insert into the logging table for ERROR_NUMBER() and...
June 15, 2009 at 12:55 pm
I appreciate your feedback. I am putting some documentation together on best practices and hope to get the winning vote from upper management.
March 5, 2009 at 11:35 am
Exactly my thoughts. I am trying to fight the battle with SAS70 compliance but can't find much ground to stand on. I am basing my argument primarily on best practices.
March 5, 2009 at 10:51 am
Viewing 15 posts - 16 through 30 (of 57 total)