Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: SQL for 8-year-old Math…But Be Careful of Implicit Type Conversion

    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...

  • RE: GP & Database Mirroring

    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...

  • RE: GP & Database Mirroring

    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...

  • RE: A Story of the Deleted Transaction Log

    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...

  • RE: HashBytes Function - Change varbinary output

    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)

Viewing 5 posts - 1 through 5 (of 5 total)