Viewing 15 posts - 121 through 135 (of 49,571 total)
Then
OPEN SYMMETRIC KEY MyKey
DECRYPTION BY CERTIFICATE MyCert;
GO
SELECT
PlainTextData
,TextData_encrypted AS EncryptedTextData
,CONVERT(VARCHAR(15), DECRYPTBYKEY(TextData_encrypted)) AS...
July 31, 2018 at 1:18 pm
What was the data type of the data you encrypted?
July 31, 2018 at 12:32 pm
July 31, 2018 at 11:03 am
July 31, 2018 at 7:47 am
July 31, 2018 at 7:45 am
If the correct certificates are installed into master, then the restore is identical to a non-encrypted backup afaik.
July 31, 2018 at 5:57 am
If the staging tables are a decent size (over a million rows), consider creating them with a clustered columnstore index.
July 31, 2018 at 5:38 am
July 31, 2018 at 5:36 am
There's no 'for each table' construct
You can write some complicated dynamic SQL to generate the ALTER TABLE statements automatically, check them all to make sure they're correct and...
July 31, 2018 at 5:33 am
July 26, 2018 at 4:14 pm
The second SQL has to go and create the files, which takes time.
July 26, 2018 at 8:16 am
From the numbers, I'm going to guess you have external memory pressure. Something outside of SQL is consuming memory, and so SQL cannot increase its memory usage. That would be...
July 26, 2018 at 8:15 am
RPC is remote procedure call. It's the call from the application.
So, if app calls proc 1, which calls proc 2, proc 3 and proc 4, you would have got...
July 26, 2018 at 8:10 am
There's no way to 'thread' within a stored procedure. You can have multiple procedures that each work on a subset of the data, run them from jobs or different connections.
July 26, 2018 at 7:14 am
Viewing 15 posts - 121 through 135 (of 49,571 total)