BACKUP CERTIFICATE

Export a certificate to a file.

Syntax:
      BACKUP CERTIFICATE certname TO FILE = 'pathname'
        [ WITH PRIVATE KEY 
           ( 
            FILE = 'path_to_private_key_file' ,
            ENCRYPTION BY PASSWORD = 'encryption_password'
            [ , DECRYPTION BY PASSWORD = 'decryption_password' ] 
            ) 
         ]

If the private key is encrypted with a password in the database, then that decryption password must be specified.
When you back up the private key to a file, encryption is required.

Examples

  BACKUP CERTIFICATE MyCert TO FILE = 'c:\certs\MyCert'
    WITH PRIVATE KEY ( FILE = 'c:\keys\Mykey' , 
    ENCRYPTION BY PASSWORD = 'thisisa1ongpassw0rd' );
  GO

"Simultaneously press the Control key, the Command key, the Return key and the Power On key" ~ how to warm boot a Mac II

Related commands

CREATE CERTIFICATE
ALTER CERTIFICATE
DROP CERTIFICATE

Equivalent Oracle commands:

Oracle Wallet:
ALTER SYSTEM SET ENCRYPTION KEY..
ALTER SYSTEM SET WALLET..


 
Copyright © 1999-2024 SS64.com
Some rights reserved