I am getting this on a Subscription in SharePoint. The subscription is for a SSRS report that was deployed to a SharePoint Report Center Library.
It worked fine and then I made a change to the report in SSRS and redeployed the report. I did not make any changes or redeploy the Data Source.
I...
I have a tables that has replicated rows. The only thing different is the FLD_ID. I need to select into a temp table the one with the lowest FLD_ID. The following gives me the replicated ones. Any help?
SELECT
*FROM
folder_id
WHERE
EXISTS (SELECT NULL
FROM folder_id b...
I’m new to SQL, and as an old RPG’r I know how I would do it that way but need help here. I can identify the duplicates
SELECT FIELDA, FIELDB, FLDR
FROM TableA c
WHERE c.FLDR <> (
SELECT MAX (FLDR ) FROM TableA
WHERE FIELDA = c.FIELDA
AND FIELDB = c.FIELDB)
order by...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.