Viewing 15 posts - 3,001 through 3,015 (of 13,874 total)
Frederico is spot on.
In addition, note that SSDT is a client tool and should, therefore, not be installed on either of your servers.
January 24, 2020 at 6:53 pm
When you created the Project in VS, what sort of Project did you create? Was it like this:

January 24, 2020 at 4:43 pm
limitations of using developer edition versus full blow standard?
As John suggested, quite the opposite. Developer has more features than Standard.
January 24, 2020 at 4:40 pm
No need for a cte:
update h
set h.Person = t.Person_To,
h.Pctg = t.Pctg_New
from #holders...
January 24, 2020 at 4:38 pm
Please bear with me. I've never had to create a project in the 23 years I've worked with SSIS. I created a SQL Server project and add my .dtsx...
January 24, 2020 at 4:06 pm
Hi Phil, thanks for replying. This is exactly what I thought. This is all at a POC level so far.
I originally had my dimensional loads running in sequence but...
January 24, 2020 at 3:38 pm
Yuck! I started on this before spotting the need for some sort of recursion, to make the Person A4 bit work.
If I had more time, I think that I would...
January 24, 2020 at 2:32 pm
Thanks Phil Parkin, it works fine with variable of 'Object' data type.
I must say, error text is not intuitive at all.
I'm with you on error message clarity. On Azure,...
January 24, 2020 at 2:20 pm
You need to use a data type of Object to handle resultsets.
January 24, 2020 at 1:58 pm
Sounds like you need to put your data flow task inside a Foreach container.
Your Foreach container needs to iterate around the various GLExtractId values.
To make that happen, use an ExecuteSQL...
January 24, 2020 at 1:55 pm
You have two (or more) child packages running in parallel.
Your requirement is that if one of the child packages fails, processing stops immediately ... is that correct?
If so, I don't...
January 24, 2020 at 1:46 pm
Looks good to me ... that should work (assuming you have no values for NodeId which are less than -9999 ... which you should confirm).
January 24, 2020 at 1:36 pm
UAT is a testing area and (it would seem that) executing procs could be considered part of that testing.
As long as the devs can't make schema changes, I'm not sure...
January 23, 2020 at 8:27 pm
execuse me it is 0215487989 to 02.15.48.79.89
it's the same chain
You need to get STUFFing:
DECLARE @x VARCHAR(20) = '0215487989';
SELECT @x
,Result =...
January 23, 2020 at 7:08 pm
Hello Please help me (how to modify a character string in sql server 2017)
the question is to convert the number 021548798 to 02.15.48.79.89
thank you
Where does the 9 in the...
January 23, 2020 at 6:30 pm
Viewing 15 posts - 3,001 through 3,015 (of 13,874 total)