Viewing 15 posts - 91 through 105 (of 359 total)
what makes a condition = true?
looking at your query 6 records from the 01/03/2018 are true (1), and from 02/03/2018 2 are true (1)
so your results...
May 28, 2018 at 3:29 am
Give this a twirl
with cte
as (
select a.memberid,b.ProgramID,c.ProgramName
from Member a
join MemberProgram b on...
May 26, 2018 at 11:05 am
are there any windows out of focus? try hitting alt + tab to see if there are any warnings hidden
May 26, 2018 at 10:41 am
it would be easier to help if we knew what the data looked like, can you provide DDL to create representative data?
May 26, 2018 at 7:51 am
Try patindex
where PATINDEX('%[^A-Z]%',LEFT(PAN_NO,5))=0
May 26, 2018 at 4:00 am
Hi Lynn
Runnable task count is 0 and active workers are less that current workers.
What does come up with High CPU is a select statement getting info...
May 25, 2018 at 5:23 am
bung your query into a CTE and use Row_number() over partition
With CTE
as (
select HdrID , TabName, rown_number() over (partiton by HdrID , TabName order by HdrID) as RN
from...
May 24, 2018 at 2:17 pm
Hi Phil
its hosted on a VM and there are various processes running on poor performing server however, the majority are sleeping only a handful are background tasks
May 24, 2018 at 1:41 pm
Thanks lowell
the trigger fires after insert or update and is as basic as; insert x from inserted or deleted. I have select, update, insert and delete permissions on both...
April 30, 2017 at 2:58 am
When i disable the trigger i can insert or update both tables no problems when the trigger is on i get this error the The user does not have...
April 28, 2017 at 8:23 am
Cheers Lowell, my insert works perfect now data loaded
cheers for your help
April 6, 2017 at 1:30 pm
Viewing 15 posts - 91 through 105 (of 359 total)