Posts
Sort by recent activity
Graph displaying different peaks depending on chosen timeline
If I am looking at for instance the log space used % graph, it seems to show totally different peaks depending on the time range I use. Currently I have a database that shows a peak of 42% if I hav...
Maximum and minimum memory settings
Hi
Is there any plan to include the maximum and minimum memory settings of an SQL Instance to the generated documentation in SQL Doc? That would be nice in order to see if any changes has been made...
Intellisence not working in VS 2017 SSDT
I am trying out the database project in VS2017 SSDT. It seems that the intellisence there is not working very well. I have SQLPrompt also in VS, so I am not sure if the problem is with VS or SQLPro...
How to view info about fixes
Hi
When a new version is released, there is often a list of things that has been fixed, with a task number (i.e. SRP-11103).
Are these tasks documented more anywhere? (For instance, is SRP-11103 de...
Max degree of parallellism - MAXDOP
Hi
Is there a reason that MAXDOP setting for the server is not part of the documentation?
The "Parallelism cost threshold" is documentet, but not the MAXDOP-setting.
WHERE-clause alignments
Hi.
Is there a way to have SQL Prompt align each element after WHERE on the same column as WHERE? Like this:
SELECT *
FROM dbo.Anlegg
WHERE AnleggsId = 1
AND StartDate <= getdate()
AND StopDate IS ...