Viewing 15 posts - 211 through 225 (of 2,051 total)
That's bad. The script seanachim script posted is viable.
From SQL Server Configuration manager:
The server is up and running?
TCP is enabled? (might be disabled)
January 18, 2023 at 2:20 pm
I agree with Jeff, the applications seems to use a single connection sequentially.
Also, there seem to be a lot of databases on the C-drive which is usually reserved for OS....
January 18, 2023 at 8:55 am
Strange that you would need to modify the clients firewall for outgoing traffic
Does the SQL Server use TCP fixed ports or dynamic?
January 17, 2023 at 4:46 pm
About limited to 12%. Looks like single-core processing. SQL Server is pretty good at detecting available cores.
MaxDop accidentally set to 1 at server/database/query level ?
VM limited to 12% : are...
January 16, 2023 at 10:13 am
Is it possible to provide an easy digestable test-case?
Table definition
Inserts for testcase
Wanted results
January 12, 2023 at 9:06 am
COALESCE vs ISNULL https://www.mssqltips.com/sqlservertip/2689/deciding-between-coalesce-and-isnull-in-sql-server/
I prefer COALESCE because it is known by other SQL-dialects and it doesn't truncate.
In where-clauses I would use: where X is NULL or X=1
instead of COALESCE (unless...
January 10, 2023 at 1:21 pm
COALESCE(TABLE1.COL2,1) ? equals if COL2 is null, treat it as value "1"
January 10, 2023 at 1:18 pm
Better apply the latest version (after testing)
SQL 2022 is now supported https://github.com/olahallengren/sql-server-maintenance-solution/blob/master/README.md
January 10, 2023 at 1:15 pm
If you want to alter the database to enable query store you need ALTER permission on the database.
Can be through the dbowner or grant a specific user alter database rights
January 5, 2023 at 10:25 am
Who created the database "Logger_Groups_CI"? Who is the owner
dbmanager
Can create and delete databases. A member of the dbmanager role that creates a database, becomes the owner of that database,...
January 4, 2023 at 4:03 pm
An alternative for STRING_AGG is SELECT ... FOR XML_PATH
https://www.itprotoday.com/sql-server/ordered-set-functions-whats-new-and-missing-sql-server-vnext
January 4, 2023 at 1:08 pm
Thanks for the extensive list. Haven't really followed up the data world. We had some ransomware breaches in Belgiums cities.
AI makes some serious leaps with art and chat
Those events are...
December 30, 2022 at 9:13 am
Also convert '12/31/9999' to a proper date-type for comparison
In Belgium this would read as the 12th of month 31 in the year 9999
December 30, 2022 at 9:03 am
Got it open
Full Recovery Model w/o Log Backups
The ... log file has not been backed up in the last week: Is there a transaction backup in place or change the...
December 29, 2022 at 10:41 am
Haven't opened the attachment yet.
One of the result columns of sp_Blitz is URL which has more details what the check is about
Like "Active Tables Without Clustered Indexes" -> https://BrentOzar.com/go/heaps
December 29, 2022 at 9:28 am
Viewing 15 posts - 211 through 225 (of 2,051 total)