Viewing 15 posts - 4,081 through 4,095 (of 9,253 total)
IMHO backup jobs should be running on the mirror, they should at least be intelligent enough to skip databases that are not online.
The mirror may not always be a dedicated...
June 11, 2013 at 8:49 am
what operating mode are you using for your mirror session?
do you have a witness server?
June 11, 2013 at 6:49 am
why cant you create a windows account and use that?
June 11, 2013 at 5:06 am
Manie Verster (6/10/2013)
You have chosen to link a rather ancient article that covers SQL Server 7.0, 2000, 2005 which is no longer relevant. Under SQL Server 2000 you had to...
June 11, 2013 at 4:50 am
Jai-SQL DBA (6/11/2013)
Yes its a regular activity to change DMK and password for CertCan you help me with the steps to change the DMK and password for Cert??
As i pointed...
June 11, 2013 at 4:35 am
June 10, 2013 at 4:46 pm
Jai-SQL DBA (6/10/2013)
------ --------------
masterEncrypted by SMK
namepvt_key_encryption_type_descissuer_namesubject
---- ---------------------------- ----------- ...
June 10, 2013 at 4:40 pm
Ok so have a stab, what can you learn from the results?
June 10, 2013 at 10:07 am
What do the following queries return?
selectname
, CASE is_master_key_encrypted_by_server
WHEN 0 THEN 'Encrypted by password only'
WHEN 1 THEN 'Encrypted by SMK'
END AS KeyEncBySrvr
from sys.databases
where name = 'master'
selectname
, pvt_key_encryption_type_desc
, issuer_name
, [subject]
from...
June 10, 2013 at 9:06 am
A typical create master key command
USE master
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'password'
A typical create certificate command
USE master
CREATE CERTIFICATE MyServerCert WITH SUBJECT = 'My DEK Certificate'
A typical create database...
June 10, 2013 at 7:47 am
The database master key is independant of the certificate. The master DMk is merely used to protect the private key while the cert is stored on the SQL server.
The...
June 10, 2013 at 6:58 am
Vlad-207446 (6/10/2013)
I don't get it.
Read my article it will expalin in more detail.
Vlad-207446 (6/10/2013)
stop...
June 10, 2013 at 6:24 am
in asynchronous mode the only way to perform a failover between partners is to use the following
ALTER DATABASE [somedb] SET PARTNER FORCE_SERVICE_ALLOW_DATA_LOSS
As Lynn says, data could be lost so a...
June 10, 2013 at 4:49 am
detailed here
June 10, 2013 at 4:43 am
Viewing 15 posts - 4,081 through 4,095 (of 9,253 total)