Viewing 15 posts - 7,831 through 7,845 (of 13,882 total)
barry.andreasen (12/16/2015)
Phil Parkin (12/16/2015)
If you are using the project deployment model and performing configuration via SSISDB 'environments', everything can be scripted (though the script may be a little complex ...).
Sorry,...
December 16, 2015 at 8:37 am
g.britton (12/16/2015)
Alvin Ramard (12/15/2015)
Phil Parkin (12/15/2015)
g.britton (12/15/2015)
Alvin Ramard (12/15/2015)
I don't know why it got things wrong, but you can edit your connection and make the required connections.
Of course. however...
December 16, 2015 at 7:54 am
barry.andreasen (12/16/2015)
December 16, 2015 at 7:38 am
g.britton (12/15/2015)
Alvin Ramard (12/15/2015)
I don't know why it got things wrong, but you can edit your connection and make the required connections.Of course. however the connections are already correct.
I...
December 15, 2015 at 1:57 pm
Nothing is wrong.
You are partitioning by row number, which is unique in the source data - making the partition redundant. If you sum a column which contains a NULL and...
December 15, 2015 at 1:55 pm
Eshika (12/15/2015)
I have a package and it is one of the 3 deployed packages in a folder. Do I need other two packages as well to...
December 15, 2015 at 1:34 pm
Eshika (12/15/2015)
I have tried to export the package...
December 15, 2015 at 12:12 pm
I am assuming that you have a reason for not adding suitable database references, to make the errors and warnings disappear?
December 15, 2015 at 11:19 am
Here is a rather hacky solution using Jeff Moden's DelimitedSplit8K function:
DECLARE @x XML = '<?xml version="1.0" encoding="UTF-8"?>
<StaffingOrder>
<OrderId validFrom="12/31/2015" validTo="12/31/2015">
<IdValue>JNJNJP00040440</IdValue>
<Status>Submitted</Status>
...
December 15, 2015 at 10:52 am
craig.bobchin (12/14/2015)
Yep. I added a break point and checked the variables and the filename, source, archive etc... all looked as I would expect.
As the FST is basically a 'black box',...
December 14, 2015 at 1:33 pm
Looks good to me.
Have you tried adding a breakpoint on the File System Task & verifying that all of the various variables are looking OK?
Is there anything 'unusual' about the...
December 14, 2015 at 1:10 pm
sql.queries (12/14/2015)
Would the 'group by' solution, grouping all results from MyTable2, be a better solution than the correlated query?
It is not an OLTP database and the query is executed frequently,...
December 14, 2015 at 11:17 am
sql.queries (12/14/2015)
...Any advice to replace the correlated query?
Thanks
You could try left-joining to a CTE:
with t2Counts as (select t2.col1, ctcol1 = count(t2.*) from MyTable2 t2 group by t2.col1)
select
col1,
col2,
col3_no = IsNull(t2Counts.ctcol1,0),
col4_no =...
December 14, 2015 at 10:02 am
Viewing 15 posts - 7,831 through 7,845 (of 13,882 total)