Damo

Results 2 comments of Damo

I fixed this issue by giving the INFORMATION_SCHEMA.CHECK_CONSTRAINTS part of the query an alias Updated code below: WITH SysObjectCheckConstraints AS ( SELECT OBJECT_NAME(OBJECT_ID) AS ConstraintName ,SCHEMA_NAME(schema_id) AS SchemaName ,OBJECT_NAME(parent_object_id) AS...

I fixed this issue by setting the User and Group the container was running as In Docker-Compose file influxdb: container_name: dsig-influx user: "${UID}:${GID}" And add these to the .env file...