Viewing 15 posts - 106 through 120 (of 391 total)
A bigger problem is I'm finding it hard to identify where the errors are occuring... the red dot is over the source file when I run the package. The error...
May 28, 2021 at 4:24 pm
Thanks! This appears to be running at least 50% faster than the MERGE
May 26, 2021 at 12:40 pm
Like this? Note the syntax problems:
BEGIN
INSERT a2wh.dbo.CallLogCommon_dbc D
(D.[CALL_ID],
D.[DATE],
D.[TIME],
D.[lead_id],
D.[DOMAIN],
D.[SESSION_ID],
D.[CALL_TYPE],
D.[CALLS],
D.[CAMPAIGN],
D.[LIST_NAME],
D.[CAMPAIGN_TYPE],
D.[SKILL],
D.[CUSTOMER_NAME],
D.[DISPOSITION]) --DOES NOT LIKE THE ")" SYNTAX
SELECT
(S.[CALL_ID], --DOES NOT LIKE THE COMMA SYNTAX
S.[DATE],
S.[TIME],
S.[lead_id],
S.[DOMAIN],
S.[SESSION_ID],
S.[CALL_TYPE],
S.[CALLS],
S.[CAMPAIGN],
S.[LIST_NAME],
S.[CAMPAIGN_TYPE],
S.[SKILL],
S.[CUSTOMER_NAME],
S.[DISPOSITION])
FROM F905.dbo.stgCallLogCommon_dbc S
WHERE NOT EXISTS (SELECT...
May 25, 2021 at 7:54 pm
I'm hoping this will work:
MERGE a2wh.dbo.CallLogCommon_dbc AS TARGET
USING F905.dbo.stgCallLogCommon_dbc AS SOURCE
ON TARGET.[CALL_ID] = SOURCE.[CALL_ID] AND
TARGET.[DATE] = SOURCE.[DATE] AND
TARGET.[DOMAIN] = SOURCE.[DOMAIN] AND
TARGET.[CALL_TYPE] = SOURCE.[CALL_TYPE] AND
TARGET.[TIME] = SOURCE.[TIME]
WHEN...
May 25, 2021 at 3:34 pm
Did an uninstall/reinstall of SSDT. Still can't see or edit my C# script. I uninstalled VS. What is the best link to reinstall VS & SSDT?
May 20, 2021 at 1:20 pm
One more issue arose. I cannot edit my C# Scripts... I hit the button and C# won't launch... I ran the repair on VS 17 and restarted my machine and...
May 19, 2021 at 9:35 pm
The link you supplied worked with no problems.... thanks!
May 19, 2021 at 6:05 pm
I had to uninstall everything to clean things up. Should I install VS before the link you posted?
May 19, 2021 at 4:00 pm
Visual Studio 17 Microsoft SQL Server Data Tools for Visual Studio 2017 SSDT Version 15.9.30
I don't remember installing any extensions, but I may have, all I know is it was...
May 18, 2021 at 8:41 pm
Right clicking does not give me an option of View Designer
May 18, 2021 at 7:21 pm
I have SSDT open but I don't know from there what to open. I see a solution .sln file but when I open it here's what I see:
May 18, 2021 at 4:44 pm
This idea worked... and is simple... thanks!
May 14, 2021 at 6:24 pm
I'm getting this error from the CTE solution (which is on the right track I think): Column 'cte.DOMAIN' is invalid in the select list because it is not contained in...
May 14, 2021 at 6:08 pm
Crisis avoided I restored a previous version.
May 11, 2021 at 5:50 pm
There probably are now as my original package corrupted and I had to make a copy. I'm trying to create a flat file connection manager and have for gotten how...
May 11, 2021 at 5:43 pm
Viewing 15 posts - 106 through 120 (of 391 total)