Viewing 7 posts - 1 through 7 (of 7 total)
Right, got it working. Had to change the data source from using Windows integrated security to Credentials stored securely on the report server. I also checked the Use as Windows...
December 24, 2008 at 2:54 am
Thanks for the feedback John. I ended up installing the OWC 11 add-in and that also resolved the issue.
Cheers,
Mark
November 22, 2007 at 9:19 pm
Hi Tommy,
That post was logged before Office 2007 was even released so perhaps there is a more up to date fix available. I'll install that component as a last resort...
November 19, 2007 at 9:13 pm
I've used the below script to remove duplicates (may even have found it on this site):
ALTER TABLE TableWithDuplicates ADD EliminateDuplicates_RowID int NOT NULL IDENTITY(1, 1)
DELETE
FROM t1
FROM TableWithDuplicates t1
JOIN(
SELECT EliminateDuplicates_RowID=MAX(EliminateDuplicates_RowID),
Field1,
Field2,
Field3,
Field4
FROM TableWithDuplicates
GROUP BY Field1,
Field2,
Field3,
Field4
HAVING COUNT(*)...
January 19, 2006 at 3:29 am
I found this script to be particularly useful.
-- /E : Use a trusted connection
-- /!X : Do not execute the DTS package
-- DTSRUN.EXE /S ServerName /E /N PackageName /F FileName /!X
-- Copy...
January 5, 2005 at 11:25 pm
See the script below to quickly save all your DTS packages. Note that packages will be appended to each other if the batch file is executed more than once and...
November 10, 2004 at 2:07 am
Viewing 7 posts - 1 through 7 (of 7 total)