Viewing 15 posts - 3,676 through 3,690 (of 13,877 total)
I don't think you can because the hash is created internally based on a structure in the optimizer, not the T-SQL text, that would also have to be recreated....
May 10, 2019 at 1:48 pm
For 10,000 rows, it could well be faster (and simpler to code and maintain) for you to do a full truncate/reload every time.
Unless you have a reason not to?
May 10, 2019 at 1:36 pm
Which hash are you referring to?
Which tool are you wanting to calculate the hash with?
Which engine are you referring to? The Mazda I have at the moment is pretty fast,...
May 10, 2019 at 1:30 pm
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
Viewing 15 posts - 3,676 through 3,690 (of 13,877 total)