Viewing 15 posts - 91 through 105 (of 1,988 total)
I'm learning xml. I'm getting the hang of the nitty gritty, tags, elements, etc. I haven't come across the WHY except that it's "good for sharing across platforms."...
June 7, 2022 at 3:00 pm
Well what do you get when you comment out the Row_Num2 check in the where clause and include it in the output?
Also keep in mind in your CTE the count...
June 3, 2022 at 6:47 pm
It looks like you would want this count(d.dx_class_id) over (partition by d.dx_class_id order by d.dx_class_id) Row_Num2
Partitioned by pat_id not dx_class_id
June 3, 2022 at 4:54 pm
Understand the problem better. KILL commands are a very blunt approach indeed to problems in the system.
In all fairness if the commands are coming from SSMS it's...
June 2, 2022 at 7:30 pm
Understand the problem better. KILL commands are a very blunt approach indeed to problems in the system.
In all fairness if the commands are coming from SSMS it's not problems...
June 2, 2022 at 5:48 pm
I was able to fix the source that creates the jobs.txt and remove the space at the beginning of some of the records. Now The Code supplied by Jeff...
June 1, 2022 at 1:23 pm
Try taking a look at theses 2 management views. Change the ORDER BY in your queries to get highest use per I/O, CPU, Memry
May 24, 2022 at 1:34 pm
Mostly it's just about proper branding when you're applying for a job if you have 12+ years experience working with data bases. For example do you ever write queries? Congratulations...
May 23, 2022 at 4:19 pm
Memory used is not a particularly useful metric in SQL Server. It grabs as memory and never releases it so that it can keep as much as possible in memory.
May 23, 2022 at 1:47 pm
Well what unit of time do you want to see?
May 19, 2022 at 2:29 pm
SSIS is a good tool for that, but save yourself some trouble and export it as a csv unless someone complains.
May 13, 2022 at 1:36 pm
How are you calculating the monthly totals now?
May 12, 2022 at 3:42 pm
It's also missing a handful of features like SQL agent, so no scheduling stuff directly in SQL Server and no database mail so no easy reporting and notifications from SQL...
May 10, 2022 at 6:53 pm
Well what value does this return?
(SELECT MAX(BusinessEntityId) AS BusinessEntityId FROM Person.Person)
May 10, 2022 at 3:41 pm
The code provided is creating an array with all the key/value pairs in the file in it. You can either filter at the point of the array creation or only...
May 5, 2022 at 5:07 pm
Viewing 15 posts - 91 through 105 (of 1,988 total)