Viewing 15 posts - 46 through 60 (of 180 total)
PiMané - Wednesday, April 11, 2018 3:58 AMmaster has over 56% of database usage...
Hi,
Which method have you used to get this information?
Have...
April 11, 2018 at 7:12 pm
Hi,
If you have many tables with identity primary key that may cause pagelatch_up, pagelatch_ex, pagelatch_ex going up. You may consider using GUID primary keys if the concurrent insert rate...
April 9, 2018 at 9:49 pm
That is not yet available for PaaS. If you use IaaS the automatic failover won't be available for you.
April 8, 2018 at 8:10 pm
Why don't you use case statement and subqueries in the set part instead?
April 8, 2018 at 7:36 pm
Hi,
1. You should monitor operating system counters: CPU usage, memory, etc. This way you can tell if it was more resource pressure on that server or not.
2....
April 5, 2018 at 8:32 pm
That is possible that plans are different. What would I do in this case is create a plan guide on the primary replica and check how it works on the...
March 28, 2018 at 3:21 pm
March 26, 2018 at 3:15 pm
You can use the CREATE CERTIFICATE command in order to import a certificate with the private key, check this out - https://docs.microsoft.com/en-us/sql/t-sql/statements/create-certificate-transact-sql
March 13, 2018 at 6:02 pm
Hi,
There are some limitations and restrictions on the algorithms and key length you can use - https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/choose-an-encryption-algorithm
March 11, 2018 at 5:14 pm
otherwise your secondaries will be in...
March 8, 2018 at 12:43 pm
[FirstName] [varchar](max) NULL
Looks like some guy has very long 4 Gb first name and another looser don't have a name at all. 😛
How you can insert Chinese...
March 5, 2018 at 2:39 pm
TDE
Data Encryption (using T-SQL functions)
Always Encrypted
Transport Encryption
Check this article - https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/sql-server-encryption
March 1, 2018 at 4:09 pm
Have you restored the initial full backup on the second server with MOVE option? https://docs.microsoft.com/en-us/sql/t-sql/statements/restore-statements-transact-sql
MOVE 'FileStream' to 'D:\Filestream'
February 27, 2018 at 6:57 pm
Yes, it should be audited. https://docs.microsoft.com/en-us/sql/relational-databases/security/auditing/sql-server-audit-action-groups-and-actions
February 26, 2018 at 2:58 pm
https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-table-transact-sql
Something like this:
ALTER TABLE Customers ADD
PromotionCode nvarchar(100)
ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK,
ENCRYPTION_TYPE = RANDOMIZED,
February 25, 2018 at 1:28 pm
Viewing 15 posts - 46 through 60 (of 180 total)