Viewing 15 posts - 1,096 through 1,110 (of 2,858 total)
I would check the source tables (scans and seeks) as the starting point for tuning. Check the estimates vs actuals at the table level as that is where statistics updates...
June 8, 2021 at 5:46 pm
When I set up a wildcard cert for my SQL Server 2016 instance, I didn't actually follow that tutorial at all. My approach was to test it on the test...
June 8, 2021 at 5:18 pm
Do the Access Database Engine drivers work on Windows Server 2012?
What I am thinking is we know of a bug in the Advantage driver in Windows Server 2019, so lets...
June 7, 2021 at 8:41 pm
READPAST is what you would use to read only the "unlocked" (ie rows without a lock) on them as you did.
Where your problem MAY reside is in the isolation level...
June 7, 2021 at 7:50 pm
I don't have an Azure instance, but I just did a test on my SQL 2016 instance and was not able to reproduce what you were seeing. My test:
June 7, 2021 at 5:31 pm
Another approach would be the CASE statement, so something like:
CASE WHEN Person.Termination_Date IS NOT NULL THEN 'N' ELSE 'Y' END
I prefer CASE statements over IIF's, but you...
June 7, 2021 at 3:37 pm
As a thought, are you ALWAYS having that format? What I mean is an open bracket, a single character, a closing bracking a space, the name, a space a -...
June 7, 2021 at 3:30 pm
Not a problem. I imagine there are other solutions as well. If you KNOW you are wanting NVARCHAR for sure, you could also do a REPLACE on the utf-8 to...
June 7, 2021 at 2:57 pm
I would start by checking the logs (windows and SSRS) to see what is happening.
Next, I'd load up the browser debugger to see if any errors are showing up in...
June 4, 2021 at 8:56 pm
If the columns are MOSTLY 'N/A', to me that sounds like a very poor key. Now, if you are going to overwrite that value with a SEQUENCE or IDENTITY value...
June 4, 2021 at 8:42 pm
Any luck running SSMS as administrator?
I am just reading the error that the object has no columns (possible, but unlikely as it works on the old system) or the current...
June 4, 2021 at 8:00 pm
Was doing a little bit of random testing on this and I think the problem is that utf-8 is going to be VARCHAR. utf-16 would be NVARCHAR.
This is easy to...
June 4, 2021 at 5:55 pm
I have a thought (may be WAY out to lunch, but just want to suggest it anyway) - what happens if you run SSMS as an administrator and then run...
June 4, 2021 at 2:51 pm
My guess then is that you may just need to wait for SAP to provide you with a driver that works with SQL Server 2019.
I am guessing that the DBF...
June 3, 2021 at 3:52 pm
Do you have the same issue if you use the ACE.OLEDB driver or is it a different error?
Or failing that, what about the Visual Fox ODBC driver? It looks like...
June 2, 2021 at 2:42 pm
Viewing 15 posts - 1,096 through 1,110 (of 2,858 total)