Viewing 4 posts - 1 through 4 (of 4 total)
I've solved the issue of exporting/importing RSA key container SCRYPTO from one machine to another.
The issue was revolving around the machine vs. current user key containers.
Original C# code provided by...
April 12, 2008 at 8:54 am
Hi Mike,
I've used your original SQL Encryption toolkit and now replacing it with the DBA Toolkit.
I appreciate what you have done for the SQL community by releasing this toolkit.
I've implemented...
March 14, 2008 at 9:48 am
Here is a stored procedure to ftp files using SQL Server stored procedure:
Create proc up_FTPPushFile
@file_to_push varchar(255),
@ftp_to_server varchar(255),
@ftp_login varchar(255),
@ftp_pwd varchar(255)
as
Set Nocount On
--STEP 0
--Ensure we can find the file...
December 9, 2002 at 3:34 pm
It is possible to store the connection string into the Windows registry.
To extract the value from the registry using VBScript:
Dim strConn, ShellObject
Set ShellObject = WScript.CreateObject("WScript.Shell")
strConn = ShellObject.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\Setup\SQLPath")
Set ShellObject =...
November 22, 2002 at 10:20 am
Viewing 4 posts - 1 through 4 (of 4 total)