Viewing 15 posts - 2,011 through 2,025 (of 6,679 total)
@ Jeffrey
thanks, i hope someone from Microsoft reads this and fixes the bug in the Activity monitor.
I think i have a special non standard configuration on my servers, the...
February 6, 2020 at 9:38 pm
I haven't reviewed them yet, but did wonder if, perhaps, the order in which the data engine is running the joins is different when I run the SQL and...
February 6, 2020 at 7:06 pm
Sue, thanks for the reply. I'll take a look at that article.
Chris, thanks for the info. Just to clarify, I'm fairly certain the log file always seems to grow...
February 5, 2020 at 10:40 pm
That would be my guess - in fact, having a DB in an availability group that is offline could actually prevent an automatic fail over from occurring because the secondary...
February 5, 2020 at 8:43 pm
next update:
if i watch the CPU in taskmanager, after i openend processes in activity monitor, the vCPUs goes from 10 % to 30%. So it seems that the...
February 5, 2020 at 8:28 pm
If the log drive goes offline - or the data drive for that matter - then yes, the database will go offline and will not come back online automatically.
When and...
February 5, 2020 at 8:08 pm
I did not see anyone mention compressing the table - have you looked at those options to see if either row or page compression reduces the size of the table(s)...
February 5, 2020 at 8:04 pm
ISNUMERIC() doesn't do what you think it does. I think you'd be surprised by what all SQL Server considers "numeric".
SELECT
cv.char_val,
is_numeric = ISNUMERIC(cv.char_val),
is_int = TRY_CONVERT(INT, cv.char_val),
is_decimal...
February 4, 2020 at 11:09 pm
The OP wants to setup a read-only secondary for 'reporting' and extracts. I would not recommend allowing any external users access to a production system to perform data extracts.
In this...
February 4, 2020 at 9:07 pm
Hi Jeffrey,
i noticed the same with SSMS 18.4 and MSSQL 2014.
But the funny thing is, if you execute the query "WITH profiled_sessions as (SELECT DISTINCT session_id profiled_session_id from sys.dm_exec_query_profiles...
February 4, 2020 at 8:32 pm
Can you try putting in TOP (1) to insure you only get a single value? Also, can you provide the execution plans for both ASC and DESC versions - it...
February 4, 2020 at 8:26 pm
First - you really need to identify the process that is causing the problem and fix that process so you don't get these invalid entries. Second - some of these...
January 30, 2020 at 8:00 pm
How you address this issue will depend on how that database is accessed. If there are a lot of queries that join to tables in the other database - then...
January 30, 2020 at 6:37 pm
How is this other DB not a part of the upgrade? Does it reside on a separate system now - and if so, how does the application access that database...
January 29, 2020 at 9:23 pm
Viewing 15 posts - 2,011 through 2,025 (of 6,679 total)