I have an idea whereby I intend to build a cloud native application for algorithmic trading, ideally by consuming all PaaS and SaaS (no IaaS), and I'd like to get some feedback on how I intend to build it. The concept is pretty straight-forward in…
I'm hoping someone here might have an idea what's causing this. I've got an AKS cluster with a number of microservices accessing resources in an Azure Postgres database server. I have firewall rules defined for the Postgres server for both the POD…
I am trying to connect the Thingworx 7.1 to Azure Postgresql database.
I have successfully able to point the the Thingworx Things to azure database without any error.
But when I am trying to set the database url inside the platform-settings file to…
When i run the below code to import data from csv file stored in azure storage account i get following error:
syntax error at or near "CREDENTIALS"
COPY ccsm.vital_signs FROM
'https://abc.blob.core.windows.net/dta/abc.csv'
CREDENTIALS…
psql code:
CREATE TABLE ref_lab_cohort_level
AS
SELECT cohort,initcap (TRIM (result_flag)) AS result_flag,
TRIM (cohort_level) AS cohort_level
FROM temp_labs_levels;
In above code, trim is function of PostgreSQL for trimming but it gives…
I am new to SQL. I am getting this error and I'm not sure where is the problem:
syntax error at or near "("
This is my SQL query for postgres:
DROP TABLE IF EXISTS posts;
CREATE TABLE posts (
title VARCHAR(10000) NOT NULL,
url…