Click here to Skip to main content
15,905,963 members

Comments by Alex345098 (Top 6 by date)

Alex345098 15-Jul-15 11:14am View    
cast that column alone with xml data type to nvarchar after fetching the entire columns of the tables in DB
Alex345098 14-Jul-15 8:57am View    
ServiceController service = new ServiceController(serviceName, machineName);
With the above code I am able to start the service in another machine. But it's not working while hosting in IIS.
I am getting issue that cannot start service on Remote Machine. This requires privileges.
Alex345098 10-Jul-15 1:07am View    
i UPDATED THE BELOW SQL SCRIPT AS FOLLOWS:

'INSERT INTO '+ @ARCHIVEDB +'.dbo.'+ @TableName +'('+ @ColumnList + ')
SELECT * FROM OPENQUERY('''+ @LinkedServerName +''' ,SELECT '+ @ColumnList + ' FROM '+ @LIVEDB +'.dbo.'+@TableName + '
WHERE '+ @DateField + '
< CONVERT(DATETIME,'''+@ArchiveAgeDate+''',103)+ 1)AS A'
Alex345098 16-Jun-15 23:50pm View    
I want to include signer's issuername,date/time stamp while signing the data.
I want to do these using Rebex or through any other option in c#
Alex345098 15-Jun-15 2:00am View    
Digital Signature has been done in Java using the methods cmsSignedDataGenearor,cmsSignedData,cmsTypedData,jcaDigest CalculatorProviderBuilder etc. Will these methods work out in c# for digital signature and its verification??