Hi all,
When I try to connect to a SQL Database through the setup wizard, i get the follow error:
chown: changing ownership of `/usr/local/horizon/conf/flags': Operation not permitted chmod: changing permissions of `/usr/local/horizon/conf/flags': Operation not permitted ERROR: Failed to verify connection: Login failed for user 'saas'. ClientConnectionId:089f3db9-b5b3-4097-a8fc-64f6b5ec97c4
To create the Database i used the script from the Documentation, but unfortunately it did not work for me. So i rewritten the script as follow:
CREATE DATABASE saas
COLLATE Latin1_General_CS_AS;
ALTER DATABASE saas SET READ_COMMITTED_SNAPSHOT ON;
GO
CREATE LOGIN horizon WITH PASSWORD = 'password';
USE saas;
CREATE USER horizon FOR LOGIN horizon with default_schema = saas;
I'm still unable to connect to the Database. I use a SQL 2014 Standard Server.
Hope someone can help me...
Thanks,