Viewing 15 posts - 1 through 15 (of 1,987 total)
Hello Brandy,
MS Updating statitics
MS When to update:
Normally the default autoupdate will do unless in very specific cases ( you can find non-ms articles about this)
Even then you would...
November 21, 2024 at 4:39 pm
Can you give some sample data and expected layout
You may want to use a datetable in your dataset so that every day of the months is in your dataset on...
November 19, 2024 at 4:50 pm
Some reasons for avoiding nested views is:
It makes it harder to the optimizer to calculate a good execution plan (work strategy) because there are more possible combinations.
It may hide non-sargable...
November 19, 2024 at 4:38 pm
Oracle isn't the easiest database to learn sql on but they do have an online course Oracle Database 19c: SQL Fundamentals https://learn.oracle.com/ols/home/sql-and-plsql-fundamentals/88387
October 28, 2024 at 4:48 pm
A poor man's solution: logon-triggers https://www.sqlshack.com/prevent-sql-server-login-authentication-scope-using-logon-trigger/
October 28, 2024 at 4:45 pm
can't really help you further
you may want to check out https://techcommunity.microsoft.com/t5/core-infrastructure-and-security/tls-and-sql-server-reporting-services-an-interesting-interaction/ba-p/2477049 regarding TLS 1.0
or find another clue in the reportserver logs
October 23, 2024 at 4:02 pm
There are different levels of timeouts
Connection timeout
Command timeout
Remote query timeout
Can you provide some background?
October 23, 2024 at 10:26 am
"Could not establish trust relationship for the SSL/TLS secure channel"
If you browse / upload to SSRS. Is that using https or http. Is the SSRS certificate or...
October 22, 2024 at 3:52 pm
Depends on the access pattern. Usually one clustered index per table is preferred to prevent ghost-records.
I suggest watching https://www.brentozar.com/training/think-like-sql-server-engine/ for an introduction how sql server works and when sql...
October 15, 2024 at 9:12 am
I've found this https://learn.microsoft.com/en-us/answers/questions/1848448/unable-to-process-the-existing-user-settings-and-w
Mentions repairing .NET installation and moving the current user settings xml to generate a fresh set
October 8, 2024 at 9:32 am
Hello Goodtimecharlie,
Can't tell you about a busy AG system or clusters.
We're using Veeam for a SQL Server standalone. I/O freezes about 4 seconds on our busier systems. So far transactionslog...
September 20, 2024 at 1:48 pm
Is there a way to commit the transaction log after a proc executes, so the log doesn't fill up and kill the job:
Smaller transactions: as long the transaction is running...
September 16, 2024 at 3:44 pm
Thanks for this topic. Looking forward to the next one
September 11, 2024 at 8:02 am
Also, MS has a specific client https://www.oracle.com/database/technologies/appdev/ocmt.html that eases installation for powerbi.... may be worth a try
September 5, 2024 at 9:43 am
if it is nvarchar it should be WHERE param=N'p1' instead of WHERE param='p1'
August 29, 2024 at 9:55 am
Viewing 15 posts - 1 through 15 (of 1,987 total)