Viewing 15 posts - 1,891 through 1,905 (of 13,838 total)
You seem to be having trouble understanding what is being requested.
What Jeff is talking about is that you provide us with some sample code which we can cut and paste...
August 15, 2021 at 9:02 am
A lot of people here use SQL Prompt and to get the most help from it during query writing, it's best to have the FROM clause written, including all JOINs...
August 13, 2021 at 8:32 am
Why not just give the column a default value in SQL Server? Perhaps you want all of the entries in the batch being process to have the same value.
August 12, 2021 at 4:07 pm
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
Viewing 15 posts - 1,891 through 1,905 (of 13,838 total)