Dattell report reveals most popular technologies for data engineers

Discover some of the most popular tools and technologies desired by employers looking to fill data engineering jobs, according to Dattell.
The post Dattell report reveals most popular technologies for data engineers appeared first on TechRepublic.
Continue reading Dattell report reveals most popular technologies for data engineers

Storing strings in a Database that are only visible to their owner who stored them when they were logged in

In my application, logged-in users create some strings, and those strings are stored in the Postgres database.
But, because they are in plaintext, their values are visible to me, as I have access to the database.
Is there a way to do some … Continue reading Storing strings in a Database that are only visible to their owner who stored them when they were logged in

Is there much practical security value in using passwords/usernames for postgres instances used on development machines?

So say you are developing multiple different projects for different clients and want your developers to use postgres on their development machine (i.e. localhost connection in the development environment). Does one add much/anything, from … Continue reading Is there much practical security value in using passwords/usernames for postgres instances used on development machines?

How to configure openjdk for FIPS and simple postgres connection example [migrated]

I have a simple Java application running in an openjdk Docker container that is executing on a FIPS enabled host system (on a Kubernetes cluster where all nodes have FIPS enabled).
I am running a kubectl apply -f simple-java-deployment.yam… Continue reading How to configure openjdk for FIPS and simple postgres connection example [migrated]

Does "row-level security" actually serve a security purpose?

Row-level security is often an industry requirement in secure environments, such as those dealing with payment cards.
It’s supported by most major relational databases, including PostgreSQL, Microsoft SQL Server and Oracle. It works by int… Continue reading Does "row-level security" actually serve a security purpose?