Viewing 15 posts - 8,551 through 8,565 (of 13,882 total)
Gary Varga (3/27/2015)
dwain.c (3/26/2015)
-- Whilst I'm a consultant named Jack
-- I swear that I'll never be back
-- Removing this code
-- Causes server overload
-- Despite you're thinking its a hack.
See what...
March 27, 2015 at 2:01 am
vipin_jha123 (3/26/2015)
I am working on SSIS package where I have to implement logging for records count.
In my package I have 20 Data Flow Task, now my requirement is to...
March 26, 2015 at 11:45 pm
2Tall (3/26/2015)
I may sleep on it and revisit tomorrow as my head is spinning 🙂Phil.
It's been that sort of a day here too. I'm going for a cleansing ale to...
March 26, 2015 at 10:39 am
2Tall (3/26/2015)
Thanks Phil. I will take a look but do not hold out much hope!Phil.
It's a really cool way of managing config settings in SSIS 2012+. Including sensitive data, like...
March 26, 2015 at 10:35 am
Drenlin (3/26/2015)
Phil Parkin (3/26/2015)That's exactly what the compatibility level is for, though it does come with downsides: all of the new features in 2014 are turned off for the databases...
March 26, 2015 at 10:26 am
Have a read through of this[/url] Stairway article and see whether you can begin to get to grips with the use of SSISDB environments, then feel free to post back.
March 26, 2015 at 10:26 am
Are you using Don't Save Sensitive as the package isolation level and then passing the password to the package as a 'sensitive' SSISDB environment parameter?
If not, try that.
March 26, 2015 at 10:02 am
wendy elizabeth (3/26/2015)
March 26, 2015 at 10:00 am
Drenlin (3/26/2015)
From the description it sounds similar to what we are experiencing...
March 26, 2015 at 9:53 am
The error message suggests that the problem is with the output, not the input.
What is the column width, in the output file spec, for column 'My Column'?
March 26, 2015 at 6:42 am
Here's an example:
declare @FileList table
(
SubDir varchar(500)
,Depth int
,IsFile int
);
insert @FileList
(SubDir
...
March 26, 2015 at 6:33 am
For example:
create function internal.get_execution_perf_counters
(
@execution_id bigint
,@execution_guid uniqueidentifier
)
returns table
(
execution_id bigint null
,counter_name nvarchar(128) null
,counter_value bigint...
March 26, 2015 at 5:16 am
dwain.c (3/26/2015)
Gary Varga (3/26/2015)
dwain.c (3/25/2015)
Make it Work, Make it Fast, Make it Pretty[/url]
Maybe I should...
March 26, 2015 at 3:12 am
If Provider_Id is an IDENTITY column and you want to generate new values in it, try un-setting 'Insert Identity values'.
This setting is used where you want to override the...
March 25, 2015 at 11:34 am
Hmm. What about this?
declare @Name varchar(50) = 'Diane Watson';
select Name = @Name, Result = case when @Name = 'Diane Watson' then 'One Space'
...
March 25, 2015 at 9:55 am
Viewing 15 posts - 8,551 through 8,565 (of 13,882 total)