Viewing 15 posts - 3,286 through 3,300 (of 7,614 total)
July 6, 2018 at 9:27 am
July 5, 2018 at 2:58 pm
select *
from items
where isnull(@items, '') = '' OR
exists(select 1 from DBO.Splitstrings_moden(@items, ',') where Item = item_no)
July 5, 2018 at 1:26 pm
July 5, 2018 at 9:23 am
Before loading the #Paid table, cluster it on all the GROUP BY columns:
Yr
,YrMnth
,Market
,AType
,Groups
,Code
July 5, 2018 at 8:30 am
To answer the original q, yes, there is a very easy way to "tell" the trigger not to do the INSERTs into table B.
Use specific byte(s) of CONTEXT_INFO...
July 5, 2018 at 8:24 am
Once you've sent a 9-digit number to them, and they've validated it, you shouldn't need to send them that exact same number again. That is, keep a cache of the...
July 3, 2018 at 11:07 am
Do you actually have NULL employee ids? That's rather bizarre.
If you do, use Thom's code. If not, all you need to write is:
where employee.cgId = @employeeid
If...
July 3, 2018 at 7:49 am
July 2, 2018 at 4:11 pm
Viewing 15 posts - 3,286 through 3,300 (of 7,614 total)