Viewing 15 posts - 1,876 through 1,890 (of 2,883 total)
I am not sure on that one but the error is saying (based on google translate):
OSError WinError 10013 Access to a socket was not allowed due to the access rights...
May 22, 2020 at 9:53 pm
Pretty sure putting the logins in the datareader role should handle this.
alternately, you could generate the script it with something like:
SELECT N'GRANT SELECT ON ' + name...
May 22, 2020 at 9:40 pm
As a guess on your data, it isn't returning multiple rows in the first select subquery.
I am guessing that in the table HumanResources.Employee, the BusinessEntityID column is unique. So p.BusinessEntityID...
May 22, 2020 at 9:32 pm
My understanding (experts correct me if I am wrong) is that if the conversion is potentially possible, but the conversion is invalid, then you get NULL. If the conversion is...
May 22, 2020 at 8:57 pm
If it was me, I would look at encrypting by certificate OR by passphrase.
To see some TSQL on it:
Use those examples but instead of displaying to screen, store it in...
May 21, 2020 at 7:54 pm
To answer question number 2 about the folders, those are version numbers. 110 is 2012, 140 is 2017, 150 is 2019.
If you installed SSMS 18, it does not come with...
May 21, 2020 at 5:49 pm
I think you need to change your query a little bit to something more like this:
CREATE FUNCTION [dbo].[LastBuyer1]
(@SC1 varchar(30))
RETURNS VARCHAR(3)
AS
BEGIN
DECLARE @LB VARCHAR(3);
WITH CTE AS
(SELECT TOP 1 Buyer,...
May 21, 2020 at 5:42 pm
I was following this thread because I was curious about this too. Thanks Anthony for the answer to it.
It also bring up the question, why would you want to restrict...
May 21, 2020 at 3:20 pm
If you subnet mask is 255.255.255.0, then 1.2.3.x cannot see or talk to 1.2.4.x. with a subnet mask of 255.255.255.0 you can only communicate with 1.2.3.0 through 1.2.3.255.
I'd recommend reading...
May 21, 2020 at 1:19 pm
Thanks for posting back especially including the solution.
Good luck with the disasters. Hopefully you do not have too many.
May 20, 2020 at 10:00 pm
MAY have a solution to that:
https://bindujanga.blogspot.com/2016/03/sql-server-connectivity-issue.html
It isn't specific to SQL 2017, but may be something to look into.
To quote the article:
Windows server Event Log has many SChannel errors as below:
The...
May 20, 2020 at 8:10 pm
I am thinking you are using the -o parameter and not the -i one (or possibly both), right? -i is for an input file, -o is for output file. Well,...
May 20, 2020 at 8:04 pm
When you say multi-subnet, I am thinking that is a multi-VLAN setup, correct?
Communication across VLANs may require additional configuration to allow the communication.
If it is really multi-subnet, I am assuming...
May 20, 2020 at 5:59 pm
My advice - try it and find out.
Having the site not secure when accessing it locally is likely because you are connecting to "https://localhost/reports_ssrs", right? Connecting by server name should...
May 20, 2020 at 5:51 pm
You can use a SSL certificate and HTTPS (ie port 443) with SSRS no problem. SSC actually has a good tutorial on this:
https://www.sqlservercentral.com/articles/configure-ssrs-with-an-ssl-certificate
In that tutorial it explains how to use...
May 20, 2020 at 2:43 pm
Viewing 15 posts - 1,876 through 1,890 (of 2,883 total)