I have code which replaces the dash with empty strings in a GUID.
Replace(System.Guid.NewGuid.ToString, "-", "")
Would that remove the uniqueness of the guid?
Also can someone confirm this too?
We are storing GUIDs in our database as char(32). Is that okay? Because we have international users in different timezone, we're concerned that the character length could go over 32. Thanks.