Viewing 15 posts - 1,486 through 1,500 (of 2,912 total)
A nice easy one for a Monday morning! BUT a very important one to know about when working with AG's.
November 16, 2020 at 2:19 pm
My method of experimenting is to get a database that has some sample data I can play with and just go at it.
We had a long blocking query a few...
November 13, 2020 at 9:57 pm
My first step - check the logs. Not JUST for the error you reported here, but the lines before and after that. I suspect that there is a bunch of...
November 12, 2020 at 8:44 pm
If you have a short list of languages and don't mind a bunch of SUM and CASE statements, you could get by using those
Such as:
DECLARE @tmpTbl TABLE
(
[USERname]...
November 12, 2020 at 8:11 pm
Since this sounds like interview or homework (as others indicated), I think you are likely not to get 100% help. You are asking a lot and giving very little.
Starting with...
November 12, 2020 at 7:37 pm
Looking at that chunk of powershell, I don't see where it is looking for the name "Sheet1". BUT if you did want to check for that, I would possibly have...
November 9, 2020 at 7:20 pm
If you want to throw the query into a variable, you need to double up all of your quotes. So all ' characters become ''. All '' become ''''. and...
November 6, 2020 at 9:06 pm
You can force the parameters to have default values or you can hide some of them or you can adjust the number of rows and columns. You could have 10...
November 5, 2020 at 9:40 pm
Those are kind of my go-to's.
One thing that could be an interesting check would be how much data is being transmitted across that connection at the time the query is...
November 5, 2020 at 9:23 pm
Execution plans would be my starting point. make sure that the queries are all doing the same thing.
Also make sure all queries are getting the same results.
Then I'd check wait...
November 5, 2020 at 8:24 pm
I could be mistaken, but I am 99% sure that the problem is that a QUEUE is not the same thing as a TABLE.
I just checked that queue on my...
November 2, 2020 at 5:26 pm
I am not sure what the question is. Are you wondering if I think SQL Server will work better or if SQL Server will need the same indexes as MySQL...
October 28, 2020 at 9:31 pm
As a thought - if you can translate the symbols to numeric values, you could do it with some messy WHERE clause. What I mean is something like:
October 27, 2020 at 10:09 pm
I imagine this depends on your CMS.
But it sounds like a use case for SSIS to me. With SSIS you can have it fire queries against multiple databases simultaneously or...
October 27, 2020 at 4:23 pm
My opinion - you get what you pay for.
The authors of the books need to make money, so they write books on what they know.
If free training is what you...
October 26, 2020 at 5:16 pm
Viewing 15 posts - 1,486 through 1,500 (of 2,912 total)