Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8899177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:47:48+00:00 2026-06-15T00:47:48+00:00

I need to do some math with SQL Server GUIDs in a trigger and

  • 0

I need to do some math with SQL Server GUIDs in a trigger and I’m having difficulty figuring out how to convert a uniqueidentifier to a numeric(38,0).

One potential problem: my understand is that both of these datatypes are 16-byte “integers”. If I’m wrong here, please correct me.

Otherwise, how would I go about this conversion? I’ve tried CAST and CONVERT and keep getting Explicit conversion from data type uniqueidentifier to numeric is not allowed. as an error message whenever I try. I’d really like to not have to parse each character and do hex math in a UDF to do this.

Is this possible?

Here’s my script to repro this real quick:

DECLARE @guid uniqueidentifier
SET @guid = NEWID()
DECLARE @a numeric(38,0)
SET @a = 2
PRINT CAST(@guid AS numeric(38,0)) -- fails
PRINT @guid / @a -- also fails
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:47:49+00:00Added an answer on June 15, 2026 at 12:47 am

    Unfortunately, I haven’t stumbled on a conversion from a hexadecimal value in a VARCHAR to a NUMERIC short of looping through one digit at a time.

    declare @GUID as UniqueIdentifier = NewId()
    declare @Binary as VarBinary(64) = @GUID
    declare @String as VarChar(64) = Convert( VarChar(64), @Binary, 2 )
    
    select @GUID as 'GUID', @Binary as 'Binary', @String as 'String'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need some guidance figuring out what went wrong. I've been using mysql, phpmyadmin for
I am using SQL Server 2008. I am trying to do some basic math
I'm in the situation where i need to do some math related stuff in
Need some help, please. I have a line of horizontal thumbnails loaded as ONE
My project requires users to create some basic math functions, I need to store
Okay i need to turn a string to a float do some math then
I have a radio group where I need to do some math calculations based
I need to do some integer math in csh (and no, other shells are
I'm developing a report in Crystal Reports and need to render some math formulas
I need some help optimizing a section of math heavy code. I've done the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.