Viewing 15 posts - 3,676 through 3,690 (of 13,874 total)
I don't think you are missing anything simple.
Are you able to revisit the 'data must be live' requirement? If it transpires that a 10-minute latency period is acceptable, it potentially...
May 9, 2019 at 2:28 pm
Going back to the script task, you do not need to know variable names in order to iterate round the variables collection. Here's a chunk of code I copied from...
May 9, 2019 at 2:03 pm
As you are using an expression to define the Execute Process command, I would suggest that you put a debug breakpoint on the EP task and then check the run-time...
May 9, 2019 at 1:56 pm
Hi Phil, I used insert and delete triggers on the existing tables to manage the data. Unfortunately I do not believe this is possible on a view.
OK, is part...
May 9, 2019 at 1:48 pm
How did the data previously get from the remote databases into your locally hosted 'existing' table?
May 9, 2019 at 1:43 pm
Have you tried setting a breakpoint and then inspecting the contents of the various variables? Might provide some useful insight.
Also, if you are looping round resp.ResponseData, what is the point...
May 8, 2019 at 9:22 pm
What is the exact text of the error message?
Is this something which used to work and has suddenly stopped, or has it never worked?
May 8, 2019 at 8:12 pm
This post may be of interest.
I'll reproduce the code here:
DECLARE @s VARCHAR(25),
@Iteration INT;
SET @s = 'ABCDEF';
SET @Iteration = LEN(@s);
WITH E1 (N)
AS (SELECT 1
UNION ALL
SELECT 1
UNION ALL
SELECT...
May 8, 2019 at 3:35 pm
Not that it makes too much difference, but what is the input format? Is it a single delimited string, or a recordset?
May 8, 2019 at 2:03 pm
So this should be fine? select a.*, b.full_name from alt_id_view a left outer join all_clients_view b on a.people_id = b.people_id It's only bringing in the matched so it could...
May 7, 2019 at 8:58 pm
Hello, I am trying to see all records, even those which do not have a match on table b. I tried full outer join but the results were the...
May 7, 2019 at 8:18 pm
It just depends on the nature of the table.. if I can avoid deleting data I prefer to do it another way, whether that is checking if the table...
May 7, 2019 at 7:30 pm
There is no guarantee that CHECKSUM_AGG() will return a unique value for every different recordset, so 'fixing' the proc is not really an option unless you are prepared to use...
May 7, 2019 at 1:36 pm
...
Right now, my priority is to wait a few more days for the water to warm up. Predicting some time to relax and pull in some crappies. And maybe...
May 6, 2019 at 9:12 pm
Could be the 'new' cardinality estimator (introduced in 2014). Lots of links all over, but you could start with this.
May 6, 2019 at 3:43 pm
Viewing 15 posts - 3,676 through 3,690 (of 13,874 total)