Viewing 15 posts - 8,551 through 8,565 (of 13,876 total)
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
Those additional spaces seem to have been collapsed/removed somehow.
Are you questioning the results of the following?
if 'Diane Watson' = 'Diane Watson'
select 'Matched'
else
select 'No...
March 25, 2015 at 9:18 am
LightVader (3/25/2015)
And the ones that would only do so because I wrote the comments first to document the process and then wrote code that implemented the process.
That's pretty much...
March 25, 2015 at 8:12 am
Actual rows and Est rows are very different. Are your statistics up to date?
March 24, 2015 at 4:33 am
We really need to see the DDL for the table and its indexes.
Also, can you explain what you mean by this:
..which results on half the table for first part of...
March 24, 2015 at 3:50 am
Perhaps you can run some SQL after the transfer to set the job statuses?
March 24, 2015 at 3:43 am
Vertigo44 (3/23/2015)
March 23, 2015 at 12:57 pm
Viewing 15 posts - 8,551 through 8,565 (of 13,876 total)