Viewing 15 posts - 901 through 915 (of 2,356 total)
Thanks Michael.
With SQL AlwaysOn AG Clustering, some have mentioned to use 64K unit allocation sizes for the SQL Data and SQL Logs, is this still necessary, or will it...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 15, 2020 at 1:41 pm
It doesn't matter then. The Equalogics are basically one big drive.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 10, 2020 at 6:58 pm
Where is tempdb going to be located? That is probably most critical in a VM environment.
Also, there are multiple types of SCSI adaptors in VM Ware. The default is an...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 10, 2020 at 5:27 pm
Thanks guys.
Unfortunately, testing before and after changes would prove troublesome. I don't have the Dynamics CRM skill, or a clone of the environment to do the testing myself -...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 8, 2020 at 2:37 pm
Hi there,
if you want to detach a database you would right click on the DB->Tasks->Detach
What are the motivations behind doing this? I suspect if you want to make edits...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 8, 2020 at 1:09 pm
The employment and unemployment situation is fouled up. Go figure.
My daughter in law is actually taking home more money now than when she works because of the 600.00 in extra...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
June 2, 2020 at 2:28 pm
It's great to see this article! I'm going to sit this pie fight out though. Two items I would toss in fwiw:
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 21, 2020 at 2:21 pm
Good handy reference. I NEVER use identities in my designs or code, but they exist and you have to deal with them.
Curiously, why would you NEVER use an identity?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 21, 2020 at 1:23 pm
Good job!
There is one things that could probably be added to this. An identity is incremented when an attempt to insert is performed. Even if the insert fails, the identity is...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 21, 2020 at 12:28 pm
If this code was run many times a day, it may be worth spending more time on it. It is executed once a month.
But, it's not the code that can...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 13, 2020 at 2:36 pm
I feel like I'm missing something. An inner join is necessarily an existence check, why not:
SELECT u.UserId
FROM UserTable u
JOIN TableA a ON...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2020 at 11:54 pm
I think the most obvious way to rewrite that query would be:
SELECT u.UserId
FROM UserTable u
WHERE EXISTS(SELECT *
...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2020 at 11:47 pm
What percentage of the rows of each table are less than 12 months ago?
All of them. The system is only 9 months old.
Lynn, there are a lot of index...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2020 at 6:51 pm
Here's the query. There's not any understanding on how the the language works, index usage (or lack of usage), and what these things do.
It works in...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2020 at 6:18 pm
Obviously, it's time for you to move this all to the cloud where you can easily add a bazillion CPU's to scale out for this horribly complex problem. After...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2020 at 1:49 pm
Viewing 15 posts - 901 through 915 (of 2,356 total)