Viewing 15 posts - 1,726 through 1,740 (of 2,860 total)
I think you are mixing some things up and getting confused. A LOGIN FAILED message in the log means that a login was attempted but was not successful. The CLIENT...
June 30, 2020 at 2:51 pm
That bit of code looks fine to me. What I'd recommend is posting an execution plan. That will likely be the best bet to figure out why it is slow.
How...
June 30, 2020 at 2:43 pm
Another reason for SQL Server Agent issues is if you are running SQL Express. SQL Express doesn't support SQL Agent.
But, as John Mitchell suggests, check the logs. Also, check the...
June 30, 2020 at 2:29 pm
the users in a database are contained in the single database. There is no way (that I know of) to get all of the users in a database without using...
June 30, 2020 at 2:23 pm
I think that won't work unfortunately. SQL is being helpful and pulling the data out of master when you query against sys.sql_logins. You can verify this by switching to any...
June 29, 2020 at 9:40 pm
Could you post the exact error message?
I have links all over the place with different SQL versions (ranging from 2008 R2 to 2016) and everything seems to work without much...
June 29, 2020 at 9:16 pm
I went a slightly different route... I used Jeff Moden's DelimitedSplit8K function to do this... (some of the bits are just intermediary calculations)
SELECT ft.RawValue
, ca.ItemNumber
,...
June 29, 2020 at 7:54 pm
Glad you tackled one problem. Too bad it created a new one.
If memory serves, SOS_SCHEDULER_YIELD is related to CPU utilization and may be safe to ignore. A good writeup on...
June 29, 2020 at 7:30 pm
How to contact them for support depends on your support contract with your license (I believe).
I would reach out to the license vendor first, and failing that this link has...
June 29, 2020 at 7:13 pm
Ok, was reading through this blog:
https://www.mssqltips.com/sqlservertip/5858/how-to-remove-filestream-from-a-sql-server-database/
and my understanding of filestream was off. But came up with a thought - Do you get any results when you run this query:
June 29, 2020 at 7:09 pm
Yeah, I'm a bit curious as well.
The error about version mismatches makes me think that the SQL instance was patched, but that the ISDBUpgradeWizard was not. Are there outstanding SQL...
June 29, 2020 at 5:42 pm
My only question with this is a pretty easy one - should your calculation to calculate the Forecast/RR for future months be per-customer, per Cost_Centre, or only look at the...
June 29, 2020 at 5:22 pm
This may be a silly question but did you install the 2019 SSIS along with the 2019 SQL Instance?
Next, does the following path exist:
D:\Program Files\Microsoft SQL Server\150\DTS\Binn\ISDBUpgradeWizard,
Those would be the...
June 29, 2020 at 4:18 pm
I just wanted to confirm an assumption I had prior to working on this - the TextUnit value will never change in a "Value", correct? Plus, is the "TextUnit" value...
June 29, 2020 at 3:49 pm
Do you use FILESTREAM at all? If not, it may be safe to just turn the option off at the instance level or configure it to be "blank" at the...
June 29, 2020 at 3:38 pm
Viewing 15 posts - 1,726 through 1,740 (of 2,860 total)