Viewing 15 posts - 1,096 through 1,110 (of 13,849 total)
You want to generate a single data item which (somehow) combines both Category and Date, is that correct?
What form should this composite value take?
Something like
XXnnnnnn,
where XX is a code for...
October 21, 2022 at 2:30 pm
Thanks for posting the second link, Frederico. That is a useful technique.
October 20, 2022 at 7:57 am
What exactly do you mean by 'flip'?
Yes, I have sensitive parameters assigned from SSISDB, but I think you must mean something more involved than that.
October 19, 2022 at 7:39 pm
From the top of my head, some pros are as follows:
October 19, 2022 at 3:11 pm
One big con depending on what version you are doing is that in Project mode deployment of individual packages isn't possible. You have to deploy the entire project. This...
October 19, 2022 at 3:04 pm
Keywords indeed! OK, here is one way, which (for ordering purposes) relies on every person having a unique Id column.
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData
(
...
October 19, 2022 at 8:43 am
Never seen this function before!

October 19, 2022 at 7:46 am
Having said that, if you can transform your source query so that the results look like this, it would be straightforward.

October 19, 2022 at 7:43 am
I don't think that there is a 'no code' way of achieving this.
But if you know how to code and use Script Components, this is possible.
October 19, 2022 at 7:38 am
There is no support in SSIS for creating PDFs.
However, if you can work out how to create PDFs using .NET assemblies, you may be able to do this by using...
October 18, 2022 at 2:55 pm
Stored procedure OUTER_TEST calls stored procedure INNER_TEST.
If an error in INNER_TEST, how do I capture the error message (to store in a table). When I have a try-catch...
October 17, 2022 at 11:26 am
Something like this, I think:
DECLARE
@Route VARCHAR(50)
, @USRoute VARCHAR(50);
SELECT
@Route = 'x'
, @USRoute = '';
SELECT...
October 13, 2022 at 7:48 am
That's useful functionality, for sure. I think you should have mentioned somewhere that this is third-party software available at a price, not something which comes with the product.
October 12, 2022 at 4:15 pm
OK, that's an example of the source data. Based on that, what do you want to see? I do not see any 'subgroups' in this example.
October 12, 2022 at 3:17 pm
We have to insert the records for each student key based on type and sub type. but in select we have to use id as with type HOLL and...
October 12, 2022 at 3:14 pm
Viewing 15 posts - 1,096 through 1,110 (of 13,849 total)