always-encrypted Questions

2

Solved

I've used Always encrypted for a database table column on a DB on Azure. I've gone through this article - https://learn.microsoft.com/en-us/azure/sql-database/sql-database-always-encrypted-azure-ke...
Rosenbaum asked 31/8, 2019 at 4:56

4

We have a SQL Server 2016 database that employs Always Encrypted. Our recently published ASP.net web site attempts to pull data from this database, and when it does we get this error: Error: Fail...
Remonstrance asked 19/7, 2016 at 15:11

5

I am performing Always encryption in my web application, Which insert data by a WCF service which is hosted by a window service. I am getting following error while insertion of data into encrypted ...
Dordrecht asked 27/10, 2017 at 12:37

4

Solved

I'm trying to use the Always Encrypted feature of SQL Server 2016 with .NET Core and seems like it can not be used (yet). Trying to import the Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKe...
Alkalimeter asked 7/12, 2016 at 21:46

0

I have checked the implementation of the pgcrypto extension. It doesn't automatically encrypt and decrypt data, using EF Core and requires separate functions. Whereas, the "Always Encrypted&qu...

1

Using Visual Studio database projects (SSDT) I added a new column to an existing table. I am using Always Encrypted to encrypt individual columns. When I add the column and try to publish, I get a ...

5

Solved

I am trying to use the "Always Encrypted" feature in SQL Server 2016 to encrypt some columns. I used this post as a guide to set the columns as encrypted in SSDT. That part goes fine, it's when I ...

2

Solved

As of EF Core 2.1, Always Encrypted SQL Server feature is not yet supported. I am using both SQL Server 2016 and Azure SQL and all clients are Windows-based. Can we use ADO.NET to achieve this w...
Arnoldarnoldo asked 11/6, 2018 at 23:2

1

I am having issues getting always encrypt to play nice with Entity Framework. I am targetting .Net 4.6.1, have enabled Column Encryption Setting=Enabled in my connection string and i can successfu...
Revetment asked 23/5, 2017 at 9:16

1

I have a mvc application that uses sql express 2016. I have follow all the necessary steps to configure always encrypted to one of my columns in the table. And install Certificate to my machine f...
Vamoose asked 13/3, 2019 at 13:56

1

Typically, one would do this to return a data set that matches a list: string[] ssn = { "123456789", "987654321" }; var result_set = db.employee.Where(w => ssn.Contains(w.SSN)).ToList(); How...
Benzol asked 23/5, 2019 at 17:32

1

It is possible to generate ENCRYPTED_VALUE in different way than by SSMS? I like to enable "Always encrypted" feature for chosen columns but I am wondering about encrypting data by unknown key. I...

2

I'm trying to enable access to team leaders of salary information through PowerBI, but encrypt this data from other users and the DBAs. Users denied access to this column data should still be able ...

2

Solved

I was doing some demo in SQL Server 2016 for topic Always encrypted. Got few doubts. Below are the steps followed: In Database server (hosted in Microsoft Azure VM): In table MyTable, Created th...
Seventh asked 10/2, 2017 at 11:5
1

© 2022 - 2025 — McMap. All rights reserved.