Viewing 15 posts - 301 through 315 (of 417 total)
Does the public role have read access to those tables? I don't think you can remove a user from public.
You could create a new role, add the user to the...
February 25, 2022 at 3:58 pm
You original post talked about 1's and 0's. You've now post data with only 1's and haven't posted the result that you're looking for. I don't know about anyone...
February 24, 2022 at 7:01 pm
SELECT GivenPartNumber_Non, vcompanyid, MAX(SourceType) AS 'SourceType'
FROM #notmappedsources
GROUP BY GivenPartNumber_Non, vcompanyid
HAVING MAX(SourceType) = 484456
AND MIN(SourceType) = 484456
and for fun.
DECLARE...
February 24, 2022 at 1:45 am
I tried removing spaces and converted to uppercase case characters, still no difference in figures of match and no match.
Can you join your No Match destination table to the...
February 23, 2022 at 4:38 pm
The problem is that the no match output includes rows that you think should be in the match output, is that correct?
Do you have mixed upper and lower case text...
February 22, 2022 at 4:42 pm
Are your statistics outs of date on the Parts.ManufacturingData table? PartID is the primary key and is the join, but the estimated rows for the clustered index scan is 33...
February 18, 2022 at 7:58 pm
I am struggling to understand your requirements, and your suggested query references columns that do not exist anywhere in your code ([Contract Status] and [Date ID]). I am also unclear...
February 18, 2022 at 7:05 pm
You should have removed the Identity attribute from the AccountKey of your temp table !!! ( as you may end up with different AccountKey values in your tempdb !!!...
February 15, 2022 at 8:27 pm
I think I read the same page as you did, based on the query you posted. It indicates that the problem is that the amount of memory available for locks...
February 15, 2022 at 7:50 pm
It sounds like you only want to use the guid to join to new contacts in the on-prem table. Is there anything in the on-prem table that tells you it...
February 2, 2022 at 7:29 pm
If you only care about users' first subscriptions, can you assign a number of days until first subscription to every user?
Then assign each user an offset code (D1, D30, D90,...
January 27, 2022 at 7:02 pm
You could probably use TRIGGER_NESTLEVEL to do that.
I tend to use session context values instead, set via sys.sp_set_session_context and SESSION_CONTEXT(N'<key_name>'). If you want more info on this method, let...
January 26, 2022 at 4:16 pm
I don't think you need a function to split the table. I think you need to work with your data to create two tables, shifts and events, containing start and...
January 24, 2022 at 7:22 pm
Does this behavior occur only with upgraded packages? Or does it affect all connections made using the new oracle source? even in a new project created in SSDT 2019?
January 21, 2022 at 1:46 am
The alias indeed, but after the penultimate closing bracket 🙂
Cheers fellas
Yes! I forgot that the query was inside brackets.
January 21, 2022 at 12:41 am
Viewing 15 posts - 301 through 315 (of 417 total)