Viewing 15 posts - 1,231 through 1,245 (of 1,396 total)
Identity() is a piece of automation that solves a set of tricky problems for you. Choosing not to use it is tantamount to saying you can do it better. Well,...
November 30, 2019 at 3:38 pm
How would I approach checking the OrderNumbers for validity within the steps so an item in "AU" and locked cannot appear at a different site as next record, same...
November 29, 2019 at 6:30 pm
The S in SCD is "slowly" so I don't see much benefit either. Also, afaik this feature is not available in SQL DW.
November 28, 2019 at 3:25 pm
Unless you are required to do this by law, it's more trouble than it's worth. If you absolutely have to do it, I would use a SEQUENCE and run...
November 27, 2019 at 9:38 pm
Either by querying your own table or by storing the maximum sequence per day somewhere. Fyi, this is really not a good way to handle keys and is not recommended. ...
November 27, 2019 at 8:10 pm
I don't see where you used a GUID either in the original post nor here as a part of the formula. To be sure, what you did with the...
November 27, 2019 at 6:46 pm
With 550 columns it's not possible to test every combination of 2 or more columns to see if they are unique. It's a combinatorial problem with a search space...
November 27, 2019 at 3:36 pm
I'm pretty sure that the system times captured by temporal tables are in the DATETIME2(7) level of precision. What else would you need?
Yea right, it's super precise so it's...
November 26, 2019 at 9:30 pm
If the number of candidate columns is small you could exhaustively test the possible combinations using a cursor and dynamic sql.
November 26, 2019 at 8:45 pm
It seems like you're talking about two things here. Not sure what temporal tables have to do with the tokens. Usually you are hashing somehow to create this token...
November 26, 2019 at 7:43 pm
one code should not be shared to other user. while they try to get the code simultaneously, code should not be shared.
Suppose you have 3 people and each has...
November 25, 2019 at 4:59 pm
What Jeff wrote is enough to scare me away from even trying this approach. Using internal locking could enable end-users to do things which produce unpredictable performance. You wrote "users...
November 22, 2019 at 1:22 pm
When there no uncommitted transactions do the EMpbasetable and EmpIncTable have the same number of rows?
November 21, 2019 at 2:21 pm
Here's a similar way that's maybe simpler.
with x_cte as (
select
*,
row_number() over (partition by recid order by docdate desc) row_num
from
#tmptbl
where
...
November 20, 2019 at 11:39 pm
Here is another option:
With groupedDates
As (
Select t.recid
, t.docdate
...
November 20, 2019 at 10:16 pm
Viewing 15 posts - 1,231 through 1,245 (of 1,396 total)