Viewing 15 posts - 1,936 through 1,950 (of 13,880 total)
It is not easy to query the content of packages which have been deployed to SSISDB, because the deployment process also encrypts the package contents.
But assuming you have all of...
August 9, 2021 at 1:36 pm
I can't find the option either.
But try navigating to https://www.sqlservercentral.com/forums/user/<username>/messages/
That worked for me.
August 5, 2021 at 1:39 pm
Might this work?
select s.Shipment_No, p.pkg_no, l.ord_no -- You need to get ord_no from either s or p instead
from wsPKGShipment s
left join wsPKG p
ON s.Shipment_No = p.Shipment_No
where...
August 4, 2021 at 3:18 pm
Nothing obvious comes to mind.
But as it's a dev environment, I'd be fairly brutal. Taking all of the User databases offline for a month and waiting for complaints is one...
August 4, 2021 at 9:54 am
What does your desired output look like? Is a list of all the source rows which are different good enough? Or do you want to see differences at the data-item...
August 3, 2021 at 7:37 pm
I'm looking for some suggestions on how to create a delta file that will some me differences from yesterdays downloaded information versus today's.
August 3, 2021 at 4:23 pm
That is looking good to me – my sample data was incorrect. I was also thinking that a recursive solution was required, good stuff.
August 3, 2021 at 4:19 pm
Good start, Ken.
In case others are interested in refining his, here is some sample data which trips up the solution:
INSERT #TestSUM
(
ProductID
...
August 3, 2021 at 11:48 am
Thanks - Thats usefull including sarcasm.
It was intended as a reminder to do some research yourself before posting here and getting other people to do it for you.
As a...
July 30, 2021 at 10:09 am
Had you done a quick Google search, as I did, you should have found this, which seems to do the trick:
https://stackoverflow.com/questions/2641068/sql-server-find-and-replace-in-text-field
July 30, 2021 at 9:18 am
Thanks for your input, Jonathan.
The single query method did not work, even after changing s2.Value to s2.ColName in the necessary spots.
I have gone ahead with the multiple-batch version (there are...
July 28, 2021 at 3:56 pm
As you have not provided us with any sample DDL or data, we cannot give you a coded solution. But the answer to the question: "Can queries in SQL Server...
July 28, 2021 at 5:41 am
You can do this using REVERSE, or a splitter (link). A splitter provides a more flexible and elegant solution, in my opinion:
DROP TABLE IF EXISTS #sample;
CREATE...
July 27, 2021 at 10:43 am
Phil - Correct. Devs want it all in dev.
Then add a switch to the code … this sort of thing:
IF (DEV)
DEBUGMODE="Verbose"
ELSE...
July 26, 2021 at 3:04 pm
Viewing 15 posts - 1,936 through 1,950 (of 13,880 total)