Question : SQL 2005 Certificates

I'm working on a procedure to build a dynamic certiface for a digital signing application.

I'm trying to pass a variable into the certificate name and unfortunatly it isn't working.  has anyone done any kind of work with create certificates that are created dynamically?

Thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
declare @CertName varchar(1000)
set @CertName = cast('DavidCert' as varchar) + cast(suser_sname() as varchar)

Create certificate @CertName
with subject = 'David Test Cert'
GO
Create Symmetric Key SignedColumn
With Algorithm = DES 
Encryption by certificate @CertName

Answer : SQL 2005 Certificates

while in design form you want to choose publish form
Random Solutions  
 
programming4us programming4us