active questions tagged uniqueidentifier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:54:10Z http://stackoverflow.com/feeds/tag/uniqueidentifier http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930917/how-do-i-identify-a-blank-uniqueidentifier-in-sql-server-2005 3 How do I identify a blank uniqueidentifier in SQL Server 2005? codingguy3000 2009-12-18T22:01:32Z 2009-12-19T01:51:39Z <p>Hello </p> <p>I'm getting a uniqueidentifier into a Stored Procedure that looks like this "00000000-0000-0000-0000-000000000000".</p> <p>This seems like a simple thing, but how can identify that this is a blank uniqueidentifier? </p> <p>If I get a value like this "DDB72E0C-FC43-4C34-A924-741445153021" I want to do X</p> <p>If I get a value like this "00000000-0000-0000-0000-000000000000" I do Y</p> <p>Is there a more elegant way then counting up the zeros? </p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1842537/is-it-possible-to-create-a-unique-id-in-an-sql-server-view-that-will-remain-the-s 0 Is it possible to create a Unique ID in an SQL Server View that will remain the same each time the view is called? Brendo 2009-12-03T20:05:12Z 2009-12-04T10:37:22Z <p>I've got 10 tables that I'm joining together to create a view. I'm only selecting the ID from each table, but in the view, each ID can show more than once, however the combination of all ID's will always be unique. Is there a way to create another column in this view that will be a unique ID?</p> <p>I'd like to be able to store the unique ID and use it to query against the view in order to get all the other ID's.</p> http://stackoverflow.com/questions/1745048/is-there-a-simple-way-to-create-a-unique-integer-key-from-a-two-integer-composite 2 Is there a simple way to create a unique integer key from a two-integer composite key? abeger 2009-11-16T21:43:33Z 2009-11-19T16:51:59Z <p>For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those two numbers. My initial thought was to just concatenate them, but I ran into a problem quickly when I realized that a composite key of (51,1) would result in the same unique key as (5,11), namely, 511. </p> <p>Does anyone have a clever way to generate an integer out of two integers such that the generated integer is unique to the pair of start integers?</p> <p><strong>Edit:</strong> After being confronted with an impressive amount of math, I'm realizing that one detail I should have included is the sizes of the keys in question. In the originating pair, the first key is currently 6 digits and will probably stay in 7 digits for the life of the system; the second key has yet to get larger than 20. Given these constraints, it looks like the problem is much less daunting.</p> http://stackoverflow.com/questions/1720645/is-it-good-to-have-primary-keys-as-identity-field 1 is it good to have primary keys as Identity field Punit 2009-11-12T08:04:09Z 2009-11-12T18:47:06Z <p>Hi , I have read a lot of articles about whether we should have primary keys that are identity columns, but I'm still confused.</p> <p>There are advantages of making columns are identity as it would give better performance in joins and provides data consistency. But there is a major drawback associated with identity ,i.e.When INSERT statement fails, still the IDENTITY value increases If a transaction is rolled back, the new IDENTITY column value isn't rolled back, so we end up with gaps in sequencing. I can use GUIDs (by using NEWSEQUENTIALID) but it reduces performance.</p> http://stackoverflow.com/questions/1717299/using-uniqueidentifier-as-primary-key-and-inserting-it-from-the-client-applicatio 1 Using uniqueidentifier as Primary Key and inserting it from the client application using parameterized queries. zoran 2009-11-11T18:51:38Z 2009-11-11T20:02:51Z <p>I have created a database where I use uniqueidentifier as the primary key. I'm trying to run a parametrized query that in the end looks like this. (insert into someTable (uniqueID) Values('76c14693-5475-4224-ba94-7d30c919ac59') (uniqueID is my PK). This insert statement executes without issues when I run it in SQL Server Management Studio, however, it fails when I try to run it from my code. </p> <p>Error: Cannot insert explicit value for identity column in table 'someTable' when IDENTITY_INSERT is set to OFF. </p> <p>I have looked this up and there are a lot of suggestions on turning ON the IDENTITY_INSERT but they all use stored procedures. I need to be able to do this using a parametrized query. Or I need a way to get the newly created guid in the database. This seems like something everyone would need at some point. Are there any simple solutions?</p> <p>PS. I need the ID because I need to add records to other tables using that ID.</p> <p><strong>EDIT:</strong></p> <p>Here is the Structure of the table in question</p> <pre><code>CREATE TABLE [dbo].[someTable] ( [NewsID] [uniqueidentifier] NOT NULL CONSTRAINT [DF_someTable_NewsID] DEFAULT (newid()), [ShortTitle] [nvarchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [DateCreated] [datetime] NULL CONSTRAINT [DF_someTable_DateCreated] DEFAULT (getdate()), CONSTRAINT [PK_cmc_News_1] PRIMARY KEY CLUSTERED ( [NewsID] ASC )WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF ) ON [PRIMARY] ) ON [PRIMARY] </code></pre> <p>Thanks in advance!</p> <p><strong>Thanks to you guys my issue is now resolved. I was connecting to the wrong database that unfortunately had the same table name but used an INT Identity field. So, that is why I was getting that error. Sorry everyone. I just wasted your time here, but I would not have figured this out if it wasn't for some of the posts. If it helps you feel any better I just wasted my whole morning on this stupid issue. Thanks again!</strong></p> http://stackoverflow.com/questions/1707148/core-data-generate-unique-id-number 0 Core Data: Generate Unique ID Number Michael 2009-11-10T11:01:42Z 2009-11-10T19:07:15Z <p>Hi all,</p> <p>I have a window that looks like so: <img src="http://i37.tinypic.com/28kmpvm.png" alt="UI"></p> <p>Everytime a record is added, I want the repair ID to be set to a unique number that hasn't been used in the table yet. e.g. if there is ID numbers 1,2,3, then when I press +, the ID field should be set to '4'. Also, if one of the records in the table is deleted, so that the ID numbers are: 1,2,4, then when I press +, the number in the Record ID should be set to 3.</p> <p>At the moment, I have a custom ManagedObject class, where I declare: </p> <pre><code>-(void)awakeFromInsert { [self setValue:[NSDate date] forKey:@"date"]; } </code></pre> <p>In order to set the date to today's date.</p> <p>How would I go about implementing this unique record ID?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1676673/why-does-aspnetusers-use-guid-for-id-rather-than-incrementing-int-bonus-points 3 Why does aspnet_users use guid for id rather than incrementing int? bonus points for help on extending user fields optician 2009-11-04T21:14:18Z 2009-11-05T02:10:19Z <p>Why does aspnet_users use guid for id rather than incrementing int?</p> <p>Also is there any reason no to use this in other tables as the primary key? It feels a bit odd as I know most apps I've worked with in the past just use the normal int system.</p> <p>I'm also about to start using this id to match against an extended details table for extra user prefs etc. I was also considering using a link table with a guid and an int in it, but decided that as I don't think I actually need to have user id as a public int. </p> <p>Although I would like to have the int (feels easier to do a user lookup etc stackoverflow.com/users/12345/user-name ) , as I am just going to have the username, I don't think I need to carry this item around, and incure the extra complexity of lookups when I need to find a users int.</p> <p>Thanks for any help with any of this.</p> http://stackoverflow.com/questions/1657151/sql-server-2005-uniqueidentifier-and-c-data-type 2 SQL Server 2005 UniqueIdentifier and C# Data Type. Davy 2009-11-01T13:16:30Z 2009-11-01T13:19:34Z <p>Hi </p> <p>What is the best data type to choose in C# for representing a SQL Serer UniqueIdentifier type? I'm was going to use a GUID but I've seen people using varChars.</p> <p>Thanks</p> http://stackoverflow.com/questions/1643878/c-random-code-field-generator-for-object 2 C# Random Code Field Generator for Object abmv 2009-10-29T13:47:47Z 2009-10-30T14:00:38Z <p>I have an object with the following properties</p> <p><br>GID <br>ID <br>Code <br>Name</p> <p>Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is different so I'm like screwed...</p> <p>my plan was to put ####-#### totally random values in code how can I generate something like that say a windows 7 serial generator type stuff but would that not have an overhead what would you do in this case.</p> http://stackoverflow.com/questions/1509947/sql-server-scopeidentity-for-guids 3 SQL Server - SCOPE_IDENTITY() for GUIDs? bplus 2009-10-02T14:42:57Z 2009-10-27T17:57:17Z <p>Can anyone tell me if there is an equivalent of SCOPE_IDENTITY() when using GUIDs as a primary key in SQL Server?</p> <p>I don't want to create the GUID first and save as a variable as we're using sequential GUIDs as our primary keys.</p> <p>Any idea on what the best way to retrieve the last inserted GUID primary key.</p> <p>Thanks in advance! </p> http://stackoverflow.com/questions/822211/increment-a-uniqueidentifier-in-tsql 0 Increment a uniqueidentifier in TSQL a_hardin 2009-05-04T21:42:03Z 2009-10-19T09:00:01Z <p>I am looking for a way to increment a uniqueidentifier by 1 in TSQL. For example, if the id is A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9E, I'd like to be able to select A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9F.</p> <p>@rein It's for a data import. We have an intermediate table with IDs that we're generating records from, and we join on those IDs later in the import. Unfortunately, now some of those records generate a couple of records in the next table, so we need a new id that is reproducible.</p> http://stackoverflow.com/questions/1567377/how-to-determine-mac-address-of-the-actual-physical-network-card-not-virtual-n 1 How to determine MAC Address of the actual physical network card -- not virtual network interfaces created by VPN's (.NET C#) blak3r 2009-10-14T16:13:03Z 2009-10-14T22:31:39Z <h2>Background</h2> <p>I'm trying to get obtain a unique identifier out of a computer and want to be able to reliably return the same MAC address each time. Trust me I have my reasons for using MAC address and have read many posts about alternate unique id methods (and yes i've considered if they don't have any network cards). </p> <h2>Problem</h2> <p>The problem is in .NET i don't see anyway to tell whether a specific NetworkInterface is a physical hardware network card from something like a "Nortel IPSECSHM Adapter - Packet Scheduler Miniport" which get added when you connect to certain VPNs or WiFi networks.</p> <p>I know how to get the Mac Addresses by using code similar to this:</p> <pre><code> foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces()) { log.Debug("NIC " + nic.OperationalStatus + " " + nic.NetworkInterfaceType + " " + nic.Speed + " " + nic.GetPhysicalAddress() + " " + nic.Description); } </code></pre> <p>Understandably there is no 100% way to make sure i'd be getting an internal network card but <strong>i'd like to pick the MAC address to return which for a given machine which is least likely to change</strong>. Independent of factors such as -- whether it's connected to wifi... gets connected via some type of tether connection... or they install some new vpn software which adds a new interface.</p> <h2>Strategies Considered</h2> <p>1) Choose the first interface that is "Up". This fails on my laptop because the "Packet Miniport" is always up. Additionally, if I tether my phone to my laptop this also shows up as the first card.</p> <p>2) Choose the most appropriate type... This fails b/c basically everything shows up as "Ethernet" including WiFi Adapters and my iPHone tethering internet connection.</p> <p>3) Pick the NIC which has an IP address. Fails for several reasons: 1) Network card might not be connected to LAN 2) There are multiple nics which might have IP Addresses.</p> <p>4) Just send all MAC addresses... Problem is the list would change based on installed software and it'll be difficult to compare.</p> <p><strong>5) Pick the mac address with the fastest speed. I think this is probably my best bet. I think it's safe to say that the fastest interface is usually going to be the most permanent.</strong> </p> <p>Alternatively, there may be some other way to detect physical cards in .NET or I'd consider invoking other API calls if you could recommend one that will provide different information.</p> <p><strong>Any other ideas?</strong></p> <p>To demonstrate here is the output of my sample code above when I have my iphone tethered:</p> <pre><code>DEBUG - NIC Down Ethernet 500000 0021E98BFBEF Apple Mobile Device Ethernet - Packet Scheduler Miniport DEBUG - NIC Up Ethernet 10000000 444553544200 Nortel IPSECSHM Adapter - Packet Scheduler Miniport DEBUG - NIC Down Ethernet 54000000 00166FAC94C7 Intel(R) PRO/Wireless 2200BG Network Connection - Packet Scheduler Miniport DEBUG - NIC Down Ethernet 1000000000 0016D326E957 Broadcom NetXtreme Gigabit Ethernet - Packet Scheduler Miniport DEBUG - NIC Up Loopback 10000000 MS TCP Loopback interface </code></pre> <p>Without Iphone Connected:</p> <pre><code>DEBUG - NIC Up Ethernet 10000000 444553544200 Nortel IPSECSHM Adapter - Packet Scheduler Miniport DEBUG - NIC Down Ethernet 54000000 00166FAC94C7 Intel(R) PRO/Wireless 2200BG Network Connection - Packet Scheduler Miniport DEBUG - NIC Down Ethernet 1000000000 0016D326E957 Broadcom NetXtreme Gigabit Ethernet - Packet Scheduler Miniport DEBUG - NIC Up Loopback 10000000 MS TCP Loopback interface </code></pre> http://stackoverflow.com/questions/1563542/do-custom-event-type-identifiers-in-as3-need-to-be-unique 1 Do custom Event type identifiers in as3 need to be unique? Reuben 2009-10-13T23:40:38Z 2009-10-14T05:07:18Z <p>Say I have two classes which extend <code>Event</code>:</p> <pre><code>public class CustomEventOne extends Event { public static const EVENT_TYPE_ONE:String = "click"; //... rest of custom event </code></pre> <p>and</p> <pre><code>public class CustomEventTwo extends Event { public static const EVENT_TYPE_TWO:String = "click"; //... rest of custom event </code></pre> <p>Is it ok that they both declare an event type using the same string <code>"click"</code>? </p> <p>Or do event type identifiers need to be unique throughout the application? </p> http://stackoverflow.com/questions/821108/clustered-non-clustered-index-on-unique-identifier-column-in-sql-server 1 Clustered/non-clustered index on unique identifier column in SQL Server Rob Decker 2009-05-04T17:41:03Z 2009-10-12T21:57:26Z <p>I have read the various questions/answers here that basically indicate that having a clustered index on a uniqueidentifier column is a poor choice for performance reasons. Regardless, I need to use a uniqueidentifier as my primary key, and I do NOT want to use newsequentialid() because the generated values are too similar to one another (I need more random IDs so users can't [reasonably] 'guess' another ID).</p> <p>So, what is the best way to index this PK? Even though a clustered index on this column is not ideal, is it better than a "unique, non-clustered" index?</p> <p>I'm using SQL Server 2005.</p> http://stackoverflow.com/questions/1521491/formula-pattern-to-provide-a-unique-32-bit-int-that-represents-a-512-character-fi 0 Formula/pattern to provide a unique 32 bit int that represents a 512 character file path? Dr. Zim 2009-10-05T17:59:37Z 2009-10-05T18:46:55Z <p><strong>Is there a common formula that could provide a unique value for a 512 character file path, assuming one 32 bit byte per character, and possibly limiting the characters used in the names?</strong></p> <p>I know that if you just used uppercase letters alone the combination would be grossly more than a 32-bit int, but what about using an identity field with some library so that the numbers once assigned are <em>always</em> the same given that file path? That's an idea, but I am looking for some standard formula out there, or at least that someone had success implementing it in the real world.</p> <p>BTW, I am using C#, but any language would work as an example, or link to a website.</p> <p>Thanks</p> http://stackoverflow.com/questions/307486/short-unique-id-in-php 1 Short unique id in php Antti 2008-11-21T01:05:57Z 2009-10-04T13:49:14Z <p>I want to create a unique id but uniqid() is giving something like '492607b0ee414'. What i would like is something similar to what tinyurl gives: '64k8ra'. The shorter, the better. The only requirements are that it should not have an obvious order and that it should look prettier than a seemingly random sequence of numbers. Letters are preferred over numbers and ideally it would not be mixed case. As the number of entries will not be that many (up to 10000 or so) the risk of collision isn't a huge factor.</p> <p>Any suggestions appreciated.</p> http://stackoverflow.com/questions/1483740/setting-uniqueidentifier-from-guid-in-linq-null-reference-exception 0 setting UniqueIdentifier from Guid in LINQ, Null Reference exception dean nolan 2009-09-27T14:59:03Z 2009-09-27T15:07:54Z <p>I am trying to set a unique identifier in my customer table from the unique identifer from my membership table (asp.net membership). </p> <p>However I am getting a null reference exception when doing so. This is the code.</p> <pre><code> Customer customer = db.Customers.SingleOrDefault(c =&gt; c.Id == Convert.ToInt32(formValues["CustomerId"])); Guid userId = new Guid(user.ProviderUserKey.ToString()); customer.UserId = userId; </code></pre> <p>It crashes on the last line.</p> <p>I have tried different settings in my Customer table on the database and in the LINQ to SQL model but I keep getting this.</p> <p>Anyone know why?</p> <p>Thanks</p> http://stackoverflow.com/questions/1469674/using-guids-in-primary-keys-clusted-indexes 5 Using GUIDs in Primary Keys / Clusted Indexes NTDLS 2009-09-24T03:46:53Z 2009-09-25T15:46:31Z <p>I'm fairly well versed in SQL server performace but I constanly have to argue down the idea that GUIDs should be used as the default type for Clusterd Primary Keys.</p> <p>Assuming that the table has a fairly low amount of inserts per day (5000 +/- rows / day), what kind of performace issues could we run into? How will page splits affect our seek performance? How often should I reindex (or should I defrag)? What should I set the fill factors to (100, 90, 80, ect)?</p> <p>What if I were inserting 1,000,000 rows per day?</p> <p>I apologize beforhand for all of the questions, but i'm looking to get some backup for not using GUIDs as our default for PKs. I am however completely open to having my mind changed by the overwehlming knowledge from the StackOverflow user base.</p> http://stackoverflow.com/questions/1472056/unique-id-is-a-unique-username-currentmilliseconds-good-enough-for-a-unique-i 0 unique Id: is a unique username + currentMilliseconds good enough for a unique Id Daxon 2009-09-24T14:27:28Z 2009-09-24T14:55:55Z <p>I need to store posts from users.</p> <p>Their usernames are unique and I'm sure they can't make posts at the same millisecond.</p> <p>Then the URL of their post would contain <em>/Username/12345678890/title-of-the-post</em></p> <p>I can't use the Auto_Inc number as I don't <strike>know it in the DB.</strike> want them to know the number or be able to guess.</p> <p>Is this sufficient enough to be unique enough for storage in the DB</p> <p><hr /></p> <p>If this is the case would the best way to store the unique id in the DB (MySQL)</p> <p>The PK wouldn't be relative for the URL. </p> <p>E.g.</p> <pre><code>AUTO_INCREMENT PK Username createDate (BIGINT) ----------------- -------- ------------------- 23456 Daxon 12345678922 </code></pre> <p>Should I be indexing a column?</p> <p>-- <strong>Edit</strong> --</p> <p>I forgot to mention that I don't what the user to know how many posts there are or be able to guess a number for them.</p> <p>So I thought that currentTime in milliseconds would be unguessable.</p> <p>Mabye now this value should be encrypted but still URL-SAFE </p> http://stackoverflow.com/questions/1432837/sharepoint-document-unique-identifier-while-crawling-using-sitedata-webservice 0 Sharepoint Document Unique Identifier while crawling using SiteData Webservice deepa.s 2009-09-16T13:04:30Z 2009-09-16T15:25:24Z <p>Hi there, I am using the SiteData webservice in MOSS 2007 for crawling sharepoint sites. The webservice returns an "ows_UniqueId" property. </p> <p>Does anybody know how i can map this property to a managed property? This property in not visible when i try to create a new managed property using Metadata property mappings link in shared services administration.</p> <p>Any suggestion will be greatly appreciated.</p> http://stackoverflow.com/questions/904405/sql-server-uniqueidentifier-plus-integer-compound-pk-what-type-of-index-to-u 2 Sql Server: uniqueidentifier plus integer compound PK ... what type of index to use? frankadelic 2009-05-24T18:41:55Z 2009-09-15T09:51:31Z <p>I have a junction table in my SQL Server 2005 database that consist of two columns:</p> <ul> <li><p>object_id (uniqueidentifier)</p></li> <li><p>property_id (integer)</p></li> </ul> <p>These values together make a compound primary key.</p> <p><strong>What's the best way to create this PK index for SELECT performance?</strong></p> <p>If the columns were two integers, I would just use a compound clustered index (the default). However, I've heard bad things about clustered indexes when uniqueidentifiers are involved.</p> <p>Anyone have experience with this situation?</p> http://stackoverflow.com/questions/1410749/how-to-generate-a-unique-id-for-different-visitors-with-php -1 How to generate a unique id for different visitors with PHP? Shore 2009-09-11T13:06:35Z 2009-09-11T13:18:58Z <p>The value will be used as:</p> <pre><code>from INTEGER UNSIGNED NOT NULL </code></pre> <p>which defines different visitors that haven't login.</p> <p>How to properly generate that number with PHP?</p> <p><strong>EDIT</strong>:</p> <p>If using database as follows:</p> <pre><code>create table user_visits( id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, primary key(id) ); </code></pre> <p>How to insert a new record into it?</p> http://stackoverflow.com/questions/1409642/seo-friendly-urls-with-unique-id-as-a-directory-count-as-duplicate-content 1 Seo friendly urls with unique id as a directory count as duplicate content ? solomongaby 2009-09-11T08:13:23Z 2009-09-11T08:31:53Z <p>Hello,</p> <p>I am looking to implement a similar url as stackoverflow to an eshop:</p> <pre><code>http://wwww.shop.com/products/123123/product-name </code></pre> <p>But i have a few concerns: 1. does google consider it duplicate content as the page:</p> <pre><code>http://wwww.shop.com/products/123123/ </code></pre> <ol> <li>I knew that google alwasy goes down the url, does it not consider the numbers as an unnecessary level, wich would make your page have less importance </li> </ol> <p>thanks a lot :)</p> http://stackoverflow.com/questions/1408023/find-guid-in-database 0 Find GUID in database Stuart Thompson 2009-09-10T22:18:33Z 2009-09-10T22:28:34Z <p>I am currently working on a project where some (significant) data corruption has occurred. Specifically the database is using GUIDs as primary keys on most tables, however it is not enforcing data integrity between those tables (due to a long-winded "this was bought from another company and integrated with our stuff" discussion). There is an effort underway to introduce referential integrity, however the data has to be cleaned up before that is possible.</p> <p>Part of this data corruption is that different entity keys have been switched or inserted into incorrect columns. For example a valid "ProductId" value exists in a "CustomerId" field due to the software inserting the wrong key in the wrong column. This was happening for months in the database before the issue was finally caught (during a data aggregation job) and now the cleanup effort is rather large.</p> <p>What I'm wondering is if there is a way of finding a GUID in a database. Rather, if I have a GUID that I think is a primary key in some table, is there a way in T-SQL of asking for matches to any known uniqueidentifier key column?</p> <p>I know the GUID I have isn't a CustomerId, but it might be another primary key id from some other table. Up to now the team have been searching the other tables manually for matches to the rogue GUIDs to see if they can find out the "type" of the key. They've even gone as far as to create scripts with lots of "select * from [table] where [tableId] = @rogueGUID" statements that search the known entity tables for a match. However, this approach isn't very efficient.</p> <p>I'm looking for this script not only for this project but also because I think a "Does this GUID exist as a primary key value anywhere in this database?" type of query would be a useful asset in a development toolbox. Any help is appreciated.</p> http://stackoverflow.com/questions/1390109/convert-varchar-to-uniqueidentifier-in-sql-server 1 Convert varchar to uniqueidentifier in SQL Server grenade 2009-09-07T16:30:28Z 2009-09-07T16:43:39Z <p>A table I have no control of the schema for, contains a column defined as varchar(50) which stores uniqueidentifiers in the format 'a89b1acd95016ae6b9c8aabb07da2010' (no hyphens)</p> <p>I want to convert these to uniqueidentifiers in SQL for passing to a .Net Guid. However, the following query lines don't work for me:</p> <pre><code>select cast('a89b1acd95016ae6b9c8aabb07da2010' as uniqueidentifier) select convert(uniqueidentifier, 'a89b1acd95016ae6b9c8aabb07da2010') </code></pre> <p>and result in:</p> <pre>Msg 8169, Level 16, State 2, Line 1 Conversion failed when converting from a character string to uniqueidentifier.</pre> <p>The same queries using a hyphenated uniqueidentifier work fine but the data is not stored in that format.</p> <p>Is there another (efficient) way to convert these strings to uniqueidentifiers in SQL. -- I don't want to do it in the .Net code.</p> http://stackoverflow.com/questions/1389736/how-do-i-create-a-unique-id-in-java 3 How do I create a unique ID in Java? Supertux 2009-09-07T14:48:31Z 2009-09-07T15:38:08Z <p>Hi,</p> <p>I'm looking for the best way to create a unique ID as a String in Java.</p> <p>Any guidance appreciated, thanks.</p> <p>I should mention I'm using Java 5.</p> http://stackoverflow.com/questions/787419/unique-identifier-for-user-profiles-in-windows 1 Unique identifier for user profiles in Windows Sebastian 2009-04-24T20:17:07Z 2009-09-05T09:23:17Z <p>For a client/server application I need to centrally store parts of the configuration information that usually goes into the users profile directory.</p> <p>The client application would on first use write a file or registry entry with a GUID into the current profile. This GUID would subsequently be used as a key in the configuration database on the server.</p> <p>Now I'm wondering if Windows user profiles already have unique identifiers I could use instead of generating my own GUIDs. </p> <p>The username won't work because users might have multiple profiles. Combining it with the computer name won't work because there might be roaming profiles.</p> <p><br> <strong>Update:</strong></p> <p>I just looked at the SIDs in <code>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList</code> on two computers in the same domain. Roaming is not enabled, so my user account has a separate profile on each machine. Both profiles are listed with the same SID. This means I have to keep generating my own GUIDs. </p> http://stackoverflow.com/questions/1365988/switchable-unique-identifier-in-c 1 Switchable Unique Identifier in C# Damian Lanningham 2009-09-02T05:38:34Z 2009-09-02T09:56:43Z <p>I'm implementing a system to send Messages between different parts of a program I'm writing. There are some generic message types as well as some specific to each part of the program. I would like to avoid the hierarchy rot inherent in deriving from a base message class for each type, So i'm encapsulating this type in an int or ushort. Then, I centralize the different types with a "Messages" namespace, and a static class with a bunch of constants. However, I ran into the issue of having to maintain a list of unique numbers for each different section:</p> <pre><code>namespace Messages { public static class Generic { public const Int32 Unknown = 0; public const Int32 Initialize = 1; ... public const Int32 Destroy = 10; } } </code></pre> <p>Then elsewhere</p> <pre><code>namespace Messages { public static class Graphics { public const Int32 Unknown = 0; public const Int32 AddGraphic = 11; // &lt;-- ? } } </code></pre> <p>Having that arbitrary 11 seems difficult, especially if I have several of these, maintaining and updating to make sure there are no collisions seems to be a pain. Is there an easy solution in order to make sure each reference to this is unique? I tried using static readonly, initializing them off of a Unique.ID() function in a static constructor, but if I do that I am unable to switch() over the passed Message type, as it says "A constant type is expected" for each case.</p> http://stackoverflow.com/questions/1234780/turn-off-identityinsert-for-dataset-insert 0 Turn off IDENTITY_INSERT for Dataset insert Nathan Koop 2009-08-05T18:02:01Z 2009-09-01T18:59:28Z <p>I am using a dataset to insert data being converted from an older database. The requirement is to maintain the current Order_ID numbers.</p> <p>I've tried using:</p> <pre><code>SET IDENTITY_INSERT orders ON; </code></pre> <p>This works when I'm in SqlServer Management Studio, I am able to successfully</p> <pre><code>INSERT INTO orders (order_Id, ...) VALUES ( 1, ...); </code></pre> <p>However, it does not allow me to do it via the dataset insert that I'm using in my conversion script. Which looks basically like this:</p> <pre><code>dsOrders.Insert(oldorderId, ...); </code></pre> <p>I've run the SQL (SET IDENTITY_INSERT orders ON) during the process too. I know that I can only do this against one table at a time and I am.</p> <p>I keep getting this exception:</p> <blockquote> <p>Exception when attempting to insert a value into the orders table System.Data.SqlClient.SqlException: Cannot insert explicit value for identity column in table 'orders' when IDENTITY_INSERT is set to OFF.</p> </blockquote> <p>Any ideas?</p> <p><strong>Update</strong> </p> <p>AlexS &amp; AlexKuznetsov have mentioned that Set Identity_Insert is a connection level setting, however, when I look at the SQL in SqlProfiler, I notice several commands.</p> <ul> <li>First - <code>SET IDENTITY_INSERT DEAL ON</code></li> <li>Second - <code>exec sp_reset_connection</code></li> <li>Third to n - my various sql commands including select &amp; insert's</li> </ul> <p>There is always an <code>exec sp_reset_connection</code> between the commands though, I believe that this is responsible for the loss of value on the Identity_Insert setting.</p> <p>Is there a way to stop my dataset from doing the connection reset?</p> http://stackoverflow.com/questions/1354404/c-automatic-find-a-children-class-by-a-unique-id 0 C# Automatic find a Children Class by a Unique ID Gustavo Cardoso 2009-08-30T17:32:57Z 2009-08-30T17:50:09Z <p>Hello!</p> <p>I have about 20 classes for different messages and this number are growing. Each class has a unique ID, so I can transform the class on a byte[] with my own method of serialization and then transform a byte[] again on my class with this uniqueID. All my messages are children of a BaseMessage class that already implements the uniqueID generation correctly.</p> <p>What I want to do is direct find the class of a respective ID without using a Enum to compare. My problem with the Enum is that Enums are not auto updated with my new IDs every time I create a new message class.</p> <p>There a way to combine Attributes and Assembly to do this, Like discovering all children of BaseClass and then call for a CustomAtributte?</p> <p>Thank you!</p>