Viewing 7 posts - 16 through 22 (of 22 total)
Louis-644449,
First of all, I should have made more clear that an AFTER trigger is always an option.
I agree that triggers allow for more friendly error messages.
I think the technique...
August 20, 2012 at 4:02 am
Thank you so much for your detailed comments. They have been most helpful. I hadn't thought of dividing the task up into file watching and file processing, but that might...
August 13, 2012 at 12:44 pm
Thanks for referencing the discussion on the WMI article. It was most helpful. Your description of the standard batch processing and ETL design matches my experience.
What sort of load have...
August 13, 2012 at 11:11 am
You make very good points regarding Microsoft testing and the WMI Event Watcher Task. I guess my qualm is that it seems to be an afterthough by Microsoft. All the...
August 13, 2012 at 9:57 am
Thanks for the article. I've been intrigued by this component, but have shied away from it because I have qualms about the architecture. I worry about having an SSIS job...
August 13, 2012 at 8:23 am
To demonstrate what Lynn posted, the following code shows the month, day and year parts of the dates you provided:
Declare @ConversionTestTable
(SomeDateTime2_0DateTime2(0) Not Null,
SomeDateTimeDateTimeNull
);
Insert Into @ConversionTest
(SomeDateTime2_0)
Values ...
July 20, 2012 at 11:53 am
The following code converts datetime2(0) to datetime:
Declare@SomeDateTime2_0datetime2(0)
Declare@SomeDateTimedatetime
Set@SomeDateTime2_0='2012-01-01 00:00:00'
Set@SomeDateTime=Convert(date, @SomeDateTime2_0)
Select@SomeDateTime2_0As[@SomeDateTime2_0],
@SomeDateTimeAs[@SomeDateTime]
The result is the following resultset:
@SomeDateTime2_0@SomeDateTime
2012-01-01 00:00:002012-01-01 00:00:00.000
July 20, 2012 at 10:51 am
Viewing 7 posts - 16 through 22 (of 22 total)