Viewing 15 posts - 1,726 through 1,740 (of 22,202 total)
I'd use NOT EXISTS probably
SELECT e.EmployeeNo
FROM dbo.Employees AS e
WHERE NOT EXISTS(
SELECT sl.SalaryLevelID
FROM dbo.SalaryLevel AS sl
WHERE sl.SalaryLevelID = e.SalaryLevelID);
There are other ways as well. An outer join & filter on NULL...
June 25, 2020 at 11:40 am
Thanks for taking on all the good comments everyone. I was away for a bit.
June 24, 2020 at 1:54 pm
Phil suggested DevOps, which I heartily, vociferously, and vigorously agree with.
For some reason it was marked as Spam. I unmarked it.
I'll add PowerShell. Automate all the things.
Also, you said tuning,...
June 24, 2020 at 10:32 am
The Blocked Process Report is an event within SQL Server. That's what you're setting the threshold for. You can read about it here. And yes, some monitoring tools use...
June 24, 2020 at 10:29 am
Without seeing the query? Nope. Sorry. Sounds like you don't have the parameter in the WHERE clause maybe? I don't know because I can't see your code.
June 24, 2020 at 10:24 am
From your response Grant it sounds as though PASS and C&C actually figured out quite quickly what Covid was all about, especially with the Summit being in November, which...
June 23, 2020 at 6:41 pm
PASS is a not-for profit organization, not a non-profit organization. About three years ago we investigated going full non-profit and it would actually have hurt our tax position, so the...
June 23, 2020 at 6:32 pm
Hi,
A table contains approximately 6 billion rows. Now, if I ran a command like 'select count(*) from table;' to get the actual count. Will it slow down my system?...
June 23, 2020 at 1:22 pm
Just to reinforce what @mr.briangale has already said, there is no magic number of indexes. If the indexes are being used and their maintenance is not causing you pain, whatever...
June 23, 2020 at 1:16 pm
Regarding "the big party". I assume you all mean the Thursday party that for many years was a fixture of Summit?
That event was always hosted by Microsoft. It was never...
June 23, 2020 at 11:31 am
Just so people know, we have contracts with convention centers and hotels. These contracts get negotiated starting 3-5 years away from the event. This is in order to keep the...
June 23, 2020 at 11:20 am
It could be that there's a proc that you need to execute. Maybe a table that logs the login. It's hard to know. You could monitor using Extended Events to...
June 19, 2020 at 9:17 pm
Sadly, at the moment, all I can say is the details are coming. I want them out yesterday. However, it looks like sometime next week.
June 19, 2020 at 3:51 pm
In order to run a 330,000 member organization that does all the stuff we do, we have to have a management company. About 12 years ago we were with one...
June 19, 2020 at 3:18 pm
Hey all!
In all likelihood, this will get me kicked from the board, however, I'd like to share something about my passion for this community and why PASS as an organization...
June 19, 2020 at 11:20 am
Viewing 15 posts - 1,726 through 1,740 (of 22,202 total)