skip to Main Content

azure postgresql database with azure entra id

I am going through below documentation which shows various ways to authenticate Azure PostgreSQL database with Azure Entra ID https://learn.microsoft.com/en-us/azure/postgresql/single-server/how-to-configure-sign-in-azure-ad-authentication#creating-microsoft-entra-users-in-azure-database-for-postgresql In section named "Creating Microsoft Entra users in Azure Database for PostgreSQL" it suggest to run below command but I…

VIEW QUESTION

Min dates from group by postgresql

I have table with data: create table measure_app_scalemeasurement ( store_code text, certificate_id text, audit_ending date); insert into measure_app_scalemeasurement values ('K010','vwv', '10.12.2023'), ('K010','cert1','12.12.2023'), ('K054','vwv', '14.12.2023'), ('K054','cert1','20.01.2024'); I want to select min audit_ending date for each market store_code, also getting its corresponding…

VIEW QUESTION

PostgreSQL connection in Apache-Drill

I am trying to get Apache Drill to connect to a PostgreSQL database using the following configuration # storage-plugins-override.conf "postgresql": { "type": "jdbc", "driver": "org.postgresql.Driver", "url": "${POSTGRES_URL}", "username": "${POSTGRES_USER}", "password": "${POSTGRES_PASSWORD}", "enabled": true, "sourceParameters": { "minimumIdle": 0, "autoCommit": true, "connectionTestQuery":…

VIEW QUESTION
Back To Top
Search