About 70,800 results
Open links in new tab
  1. Securely generate a UNIQUEIDENTIFIER in SQL Server

    Apr 4, 2013 · sql-server sql-server-2012 security uniqueidentifier cryptography See similar questions with these tags.

  2. sql server - Is it Ok to use GUID as the Foreign Key? - Database ...

    Jun 24, 2016 · Unfortunately, it is the GUID data type. And after reading a number of articles, it seems that using GUID as the Foreign Key may be disadvantageous - more storage or slower. I would like …

  3. SQL Server UniqueIdentifier / GUID internal representation

    SQL Server UniqueIdentifier / GUID internal representation Ask Question Asked 10 years ago Modified 8 years, 7 months ago

  4. sql server - What is the purpose of a Row_GUID column? - Database ...

    Jun 7, 2016 · 26 I've been digging around in the AdventureWorks2012 database and see Row_GUID used in several tables. There are 2 parts to my question: When should I include a Row_GUID …

  5. Converting between binary hex and GUID (uniqueidentifier)

    Nov 8, 2018 · I get this: 0x34333336373833302D343433372D3335, which is nonsensical. Bottom line: does ANYONE have a reliable way to translate between binary and GUID (uniqueidentifier) formats?

  6. performance - Guid vs INT - Which is better as a primary key ...

    The generated GUIDs should be partially sequential for best performance (eg, newsequentialid() on SQL Server 2005+) and to enable use of clustered indexes If you are certain about performance and you …

  7. sql server - GUID stored in a varchar field - Database Administrators ...

    Fields are true GUID some where created by myID = 'xxx'+convert (varchar (40),newID ()) In general its a bit of a mess What are the performance implications for this design and is it worth re-working the …

  8. sql server - Performance Concerns with UniqueIdentifiers (GUIDs ...

    Aug 20, 2021 · However, since SQL server has the NEWID and particular NEWSEQUENTIALID methods to generate a GUID I would hope this is already optimized (sequential and stored in a …

  9. sql server - Int for identity/primary key and Guid for public ...

    Jul 21, 2019 · Is it worth having both int and guid in the table or should I just drop the int entirely? Yes, from the perspective that you can have the identity column be a unique clustered index to take …

  10. sql server - Return the uniqueidentifier generated by a default on ...

    Jan 7, 2016 · Goal Retrieve the latest guid value in real time after you have inserted the value in the table Problem Don't know how to do it Info The code should only specify new values for address and …