Viewing 5 posts - 1 through 5 (of 5 total)
Glad to hear it's (mostly) doing what you're looking for. If I understand correctly, you only want to see all records for a given week where there's been a change...
June 5, 2021 at 2:47 pm
Is this what you're looking for?
select * from SampleData1
where date in (
select distinct sd1.date
from SampleData1 sd1
...
June 4, 2021 at 2:46 pm
I needed the same data you did a couple years ago, but we bought something specifically for MS Dynamics Ax.
However, this site has csv files it appears for both the...
December 16, 2011 at 8:39 am
If both servers are SQL Server, I'd be tempted to use a linked server to write one query joining the two tables/queries.
December 6, 2011 at 2:14 pm
The instructions in this thread worked well for me, however I got burned by having special characters in the sftp site's password ... in particular the "%" sign.
When...
December 3, 2009 at 2:08 pm
Viewing 5 posts - 1 through 5 (of 5 total)