Viewing 5 posts - 1 through 5 (of 5 total)
Another way to deal with the conversion issue is to exclude it since decimal values are not allowed in the solution. By using Modulo and excluding the invalid decimals the...
July 14, 2015 at 7:08 am
GP will not automatically switch to the backup server, it's not supported in the software. The technology used in GP doesn't have the intelligence to perform that function, the base...
November 25, 2008 at 4:32 pm
Ahhh, the joy's of GP. :crying: This is NOT a normal SQL Server situation due to the way the application was written, it's extremely application specific.
Unless something drastic has...
November 25, 2008 at 8:57 am
I've had this happen before, when SQL was stopped to delete the log file you got as much of a commit as it possible, usually the log file has committed...
July 14, 2008 at 8:08 am
There is an undocumented function that will help
DECLARE @HashThis varchar(255);
SELECT @HashThis = 'Hello world!'
SELECT HashBytes('MD5', @HashThis)
SELECT SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5', @HashThis)), 3, 32)
February 24, 2008 at 8:55 am
Viewing 5 posts - 1 through 5 (of 5 total)