代码搜索:MCDBA
找到约 20 项符合「MCDBA」的源代码
代码结果 20
www.eeworm.com/read/318092/13488673
jpg mcdba-rgb.jpg
www.eeworm.com/read/265284/11271090
jpg mcdba-rgb.jpg
www.eeworm.com/read/409443/11323461
jpg mcdba-rgb.jpg
www.eeworm.com/read/222244/14699821
cpp proc.cpp
// xp_generatekey
//
// Michael Coles, MCDBA
//
// This XP generates a random encryption key with the specified number of bits
//
// Ver. 0.9.0.0: Modified to fix potential memory fragmentation
www.eeworm.com/read/222244/14699746
cpp proc.cpp
// xp_blowfishencrypt
//
// Michael Coles, MCDBA
//
// Ver. 0.9.0.0: Updated 1/19/2006 to fix memory fragmentation problems that show up
// when run on very large datasets
//
#inc
www.eeworm.com/read/222244/14699771
txt readme.txt
Encryption and Encoding
Sample Extended Stored Procedures
for SQL Server 2000
Michael Coles, MCDBA 7/2005
// Updated to version 0.9.0.0 on 1/19/2006. The updates across the board were
// a
www.eeworm.com/read/222244/14699856
cpp proc.cpp
// proc.cpp
// Implementation of xp_rot13 extended stored procedure.
// Michael Coles, MCDBA, 7/2005
//
// Ver. 0.9.0.0: Modified to fix potential memory fragmentation for very large
//
www.eeworm.com/read/222244/14699760
sql add_xp.sql
-- ADD_XP.SQL sample script to install extended stored procedures
--
-- Michael Coles, MCDBA
-- 7/2005
--
-- Updated 1/19/2006 - AES UDFs modified to use VARBINARY instead of VARCHAR
--
USE mas
www.eeworm.com/read/222244/14699717
sql genkey.sql
-- GENKEY.SQL sample script demonstrating xp_generatekey
--
-- Michael Coles, MCDBA
-- 7/2005
--
DECLARE @key VARCHAR(255)
EXEC master..xp_generatekey 128, @key OUTPUT
PRINT 'Your Key is: ' + @
www.eeworm.com/read/222244/14699719
sql bf_xptest.sql
-- BF_XPTEST.SQL
-- xp_blowfishencrypt/xp_blowfishdecrypt Test Script
-- This set of tests demonstrates calling the xp's directly
-- from within your code.
--
-- Michael Coles, MCDBA, 7/2005
--