Viewing 15 posts - 7,831 through 7,845 (of 13,876 total)
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
msbi.ravindhar (12/13/2015)
December 14, 2015 at 6:23 am
John1.5.nlt (12/11/2015)
having a bad day, please disregard
Not long before the weekend!
December 11, 2015 at 11:18 am
I have experimented with the Extract Zip File task
As far as I know, there is no standard SSIS task which does this. Are you using third-party tools?
You should be able...
December 11, 2015 at 10:17 am
If you are open to using SSIS, most definitely.
December 10, 2015 at 6:24 pm
Except for one thing. If you have an ISO language table, there is no need to invent an int PK - use the ISO code instead.
December 10, 2015 at 6:10 am
Viewing 15 posts - 7,831 through 7,845 (of 13,876 total)