Viewing 15 posts - 106 through 120 (of 708 total)
I dug around for a bit, but couldn't find any docs for Vormetric.
What I did find is that there are a couple different Vormetric encryption products for SQL Server, and...
March 30, 2020 at 3:26 pm
Invest in your career, and consider a PluralSight subscription. They have monthly subscription options and a free trial offer, so you can start cheaply and see if it's right for...
March 24, 2020 at 5:48 pm
Here's a couple queries you can use to inspect things. Note the relationship between, master.sys.asymmetric_keys, sys.server_principals, sys.server_principal_credentials, sys.credentials, and sys.
March 24, 2020 at 5:36 pm
The Credential object holds the login information for SQL Server to use when communicating with the KMS. "Identity" is the user name on the KMS, and "SECRET" is the password....
March 24, 2020 at 2:58 pm
You need to use the same certificate in both the master database and the user database, not just a certificate with the same name.
Here are the steps, with the...
March 20, 2020 at 7:19 pm
Rewriting the requirement: Generate a random positive integer value between 10000000 and 99999999
Solution: Create a random positive integer value between 0 and 89999999, and add 10000000 to it.
March 19, 2020 at 5:07 pm
Looks like a lot of work to build an 8-digit string that means 'yesterday', one date part at a time.
First, it determines what year was yesterday.
The part that sets the...
March 9, 2020 at 7:11 pm
Embed your search argument in a variable, and use that in the function:
-- sample data
CREATE TABLE #Testr(id int not null primary key, MyField varchar(128))
GO
INSERT #Testr(id, MyField)
SELECT...
February 29, 2020 at 10:45 pm
TL;DR: just get the encryption Certificate loaded on every AG instance before encrypting, and it will just work.
TDE encryption is performed as normal transactions against a database. When you perform...
February 21, 2020 at 5:10 pm
In order to protect against DST settings, just run the job 5 minutes past every hour. At the start of the job, check to see if it's the 'correct' time...
February 20, 2020 at 7:50 pm
To format the SQL on-the-fly, search for 'syntax highlighter'. One I've used is the open-source GeSHi tool (https://en.wikipedia.org/wiki/GeSHi), although its T-SQL coloring was last publicly updated a while ago. You can...
January 23, 2020 at 3:33 pm
See SET LANGUAGE for setting the language SQL Server uses for the connection for system messages and month/day names:
Instructions for installing an English-language SSMS on a non-English OS are available...
December 26, 2019 at 2:13 am
Also, be very protective of that Certificate. You will need it to restore backups of databases encrypted with it. The database backup will not have the Certificate; you must separately...
December 20, 2019 at 7:08 pm
"What happens if the DB is already part of AG and I enable TDE on the DB on primary? How does TDE work in that situation?"
SQL Server encrypts the database...
December 20, 2019 at 7:03 pm
Viewing 15 posts - 106 through 120 (of 708 total)