Viewing 15 posts - 1 through 15 (of 26 total)
Hi everyone,
I just wanted to let you know that a developer has now resolved this who has returned from leave. He knew the data better than me and used the...
March 18, 2021 at 2:32 pm
Hi all,
Thanks for the replies so far. I am pretty new to the data as I have recently started in the role.
I think the code is derived from elsewhere, but...
March 16, 2021 at 2:30 pm
Hi as1981.
Thank you for your response. I have tried that and that is good for that part of the query.
I shall try and work on the rest of it.
Thanks again.
George
September 3, 2019 at 9:52 am
Hi Nova,
Thanks for the script and your advice.
Much appreciated.
Kind regards,
George
September 2, 2019 at 10:07 am
I have now solved this issue.
select ticketid, statusnumber, statusdesc
from
(
SELECT
ticketid, statusnumber, statusdesc
row_number() over (partition by ticketid order by statusnumber desc) as Seq
FROM
)t
Where Seq = 1
AND statusdesc IN...
August 30, 2019 at 10:48 am
My above query got formatted differently to what I expected.
There are only two Ticket IDs (1 and 2)
The first ticket ID has 3 statuses (1 - Open, 2 - Awaiting...
August 30, 2019 at 9:25 am
The following script seems to return what I require.
SELECT DB_NAME(bd.database_id) AS [Database Name],
rg.name as ResourcePool,
--COUNT_BIG(*) [Pages in Buffer],
--COUNT_BIG(*)/128 [Buffer Size in MB]
COUNT(*) * 8/1024.0...
March 25, 2019 at 6:11 am
Hi Jeff,
Thanks for your reply.
The DMV 'sys.dm_resource_governor_resource_pools' gives me some of the...
March 25, 2019 at 3:08 am
Hi Perry,
I just wanted to say thanks for the information you sent me. I have incorporated the scripts into my plan.
Kind regards,
George
March 31, 2015 at 2:31 am
Thanks Perry/Gail for the additional feedback.
Perry - I understand what you are saying. The databases that are being upgraded are all 2008r2, which means I should not need to run...
March 27, 2015 at 10:17 am
Thanks Gail.
Your reply provides me with the best supporting evidence I can give to my manager.
Many thanks.
George
March 27, 2015 at 3:57 am
Hi Grant,
Thank you very much for your reply. We are considering virtualization too, so that sounds like a good idea.
We do have affinity set for the processors, but I have...
February 24, 2015 at 4:46 am
Thanks Rich,
I will look at this article now.
Cheers,
George
October 4, 2012 at 7:14 am
Thanks for all your replies. There's some really good jobs here that I had overlooked.
I am just going through all of my servers and just want a number of...
October 4, 2012 at 6:36 am
Thanks for all your replies. They all make sense.
I will be making my recommendations tomorrow.
George
September 5, 2012 at 2:23 pm
Viewing 15 posts - 1 through 15 (of 26 total)