Edhy Rijo
|
|
Group: StrataFrame Users
Posts: 2.4K,
Visits: 23K
|
Today I started to implement GUID PK for a new SF project, and this thread showed to be an invaluable resource of information. The code posted by Paul and Trent lead me to create my first Business Object base class and after creating 3 forms, you'll notice how useful is to have of a base BO class to handle things for you . So I just want to say THANKS! to everybody who participated in this thread, (including me ) because it is worthy.
Edhy Rijo
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Too many times the replication has to be dropped, the upgrade applied and then replication turned back on again. This in itself is not necessarily the problem but we could be dealing with 50G+ databases which are then pushed out to the subscribers. The really nice thing that has been added in the 1.6.6 beta are pre and post deployment scripts. This allows you to turn this off if you need to....while still using the DDT. This has become a very handy implementation that we have started using ourselves (pre and post deployment scripts that is )
|
|
|
Aaron Young
|
|
Group: StrataFrame Users
Posts: 277,
Visits: 1.1K
|
Hi Paul & Trent, So the DDT can handle replicated databases? That is brilliant! SQL Server 2005 does allows some minor upgrades to a replicated database but it is not enough and on some occasions it has even rolled back a new field addition 24 hours after it was applied. Too many times the replication has to be dropped, the upgrade applied and then replication turned back on again. This in itself is not necessarily the problem but we could be dealing with 50G+ databases which are then pushed out to the subscribers. While it is true most PCs will have an NIC, we are faced with the situation when a single site PC with no interface has been creating transactions for years which then has to be merged with another of our systems. Basically, in our application, we really need a globally unique ID and I can't see beyond the ugly Guid(). In our case the sequential ID isn't guaranteed to be globally unique and wouldn't be any different to the integer mechanism we currently use - which still has conflicts from time to time. Aaron
|
|
|
Paul Chase
|
|
Group: Forum Members
Posts: 414,
Visits: 2.8K
|
Aaron, If you have an application that is going to replicate it would need a Nic to be able to do so , but I suppose it is possible that it could be an external type nic that is unplugged whilst the user is adding records. I went back and forth on the what method to use as well, below is some code that uses datetime ticks to sequence a guid. As far as updating schema, with sql 2005 at least you can make some minor schema changes directly to the publisher. http://msdn2.microsoft.com/en-us/library/ms151870.aspx . However it is easy to get A.F.U when doing anything major. I have not had to change much except a few alter table's to add a column or 2, but in my next major release I will probably be hating replication due to the number of schema changes I will be making, most likely I'll end up having to drop and re-add subsciptions. In my case however I can restrict my users from using the software until the database and application has been updated. I create software for internal use only so I have more flexibilty than some when it comes to things like that. ''' <summary>''' Creates A Seqeuntial Guid based on Date time values''' </summary>''' <returns>Sequential Guid</returns>''' <remarks>converted from c# code found at ''' http://www.informit.com/discussion/index.aspx?postid=a8275a70-0698-46f0-8c8f-bf687464628c''' I changed it slightly to use utc time due to Pensacola and Ft Walton being Central Time''' so there would not be a time zone problem </remarks>Public Shared Function NewSequentialGuid() As GuidDim laGuid() As Byte = Guid.NewGuid.ToByteArrayDim ldBaseDate As DateTime = New DateTime(1899, 1, 1)Dim ldNow As DateTime = DateTime.UtcNow' Get the days and milliseconds which will be used to build the byte string Dim lsdays As TimeSpan = New TimeSpan((ldNow.Ticks - ldBaseDate.Ticks))Dim lsmsecs As TimeSpan = New TimeSpan((ldNow.Ticks _- ( New DateTime(ldNow.Year, ldNow.Month, ldNow.Day).Ticks)))' Convert to a byte array Dim laDays() As Byte = BitConverter.GetBytes(lsdays.Days)'SQL Server is accurate to 0.003 part of a second'.NET DateTime ticks are in milliseconds'so we divide .NET ticks by 3.333333 and should be ok Dim laSecs() As Byte = BitConverter.GetBytes(CType((lsmsecs.TotalMilliseconds / 3.333333), Long))'Reverse the bytes to match SQL Servers ordering Array.Reverse(laDays) Array.Reverse(laSecs) ' Copy the bytes into the guid Array.Copy(laDays, (laDays.Length - 2), laGuid, (laGuid.Length - 6), 2) Array.Copy(laSecs, (laSecs.Length - 4), laGuid, (laGuid.Length - 4), 4) 'Send it backReturn New System.Guid(laGuid)End Function
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
While we are on the subject, does the Database Deployment Toolkit support upgrading of replicated databases? I have been sick over the weekend and my wife is trying to keep me in bed so I don't get worse...but she had to go to the store so I thought I would do a little catching up on the forum. To answer your question, yes, the DDT will most definitely update a database structure for a SQL Server that uses replication. When doing this, however, it is best to update the structures when there will be the least amount of activity on the databases (none if possible). but in any case, you can actually write a program to deploy your structures using the DatbaseMigrator class. There is a sample that comes with the framework that shows how to do this. You can create a program that updates all servers on separate threads at the same time...reducing deployment time and making the process more streamlined. It is the same thing that you would do otherwise, just updating multiple servers on different threads at the same time. On a separate note here, there has been a lot of discussion on GUIDs and sequential GUIDs. There is one problem wth sequential GUIDs that exists when you will not be talking to a server and you need to come back in and merge the data. It is the same problem that exists when using integers. If you come up with a mechanism to create sequential GUIDs, and you take a laptop, let's say, offsite and it creates records, and there are other laptops doing the same thing, then you can definitly have sync issues. So this then turns into the situation where each laptop has its own pre-set range to work within, with ends up having the same issues as using a PK. I recommend doing a little test. I am of the mind that it is easier to deal with the one outlier that may (though it is extremely unlikely) produce a duplicate GUID. If you create a program that creates new records non-stop using the System.Guid.NewGuid() for 24-48 hours (this will prouce some SERIOUS records!) I believe that you will find that there will more than likely never be a duplicate. If you del with disconnected data (pre-merge or replication) in thi maanner and perform a "pre-merge" query to ensure that there are no duplicates, then you don't get into the syncing issue of sequential GUIDs. This is just some food for thought.
|
|
|
Edhy Rijo
|
|
Group: StrataFrame Users
Posts: 2.4K,
Visits: 23K
|
Aaron Young (04/26/2008) While I like the idea of sequential GUIDs the problem with UuidCreateSequential is it still uses the mac address and it may only guarantee uniqueness on the local PC if the PC doesn't have a network adapter.Hummm, not NIC, not program to run
Edhy Rijo
|
|
|
Aaron Young
|
|
Group: StrataFrame Users
Posts: 277,
Visits: 1.1K
|
I may be wrong but I believe Microsoft switched to version 4 GUIDs from Windows 2000 onwards. This version doesn't use the mac address as it was deemed a security risk given that it allowed the GUID to be traced back to a PC. Version 4 GUIDs uses random parts for all sections. While I like the idea of sequential GUIDs the problem with UuidCreateSequential is it still uses the mac address and it may only guarantee uniqueness on the local PC if the PC doesn't have a network adapter.
|
|
|
Peter Jones
|
|
Group: Forum Members
Posts: 386,
Visits: 2.1K
|
Hi Aaron, As I understand it is the presence of the network card's mac address (on the machine creating the GUID) in the GUID algorithm assures uniqueness. Peter
|
|
|
Aaron Young
|
|
Group: StrataFrame Users
Posts: 277,
Visits: 1.1K
|
One consequence of using any form of replication is future changes to the database schema. Most database schema comparison/updating tools have problems upgrading a database currently in use for replication. In an ideal world you would be able to change your database schema which would then be replicated across to other databases. SQL Server 2005 is better at allowing some updating but most upgrading tools will fail on a replicated database which could force you to remove replication, upgrade and then setup replication again. While we are on the subject, does the Database Deployment Toolkit support upgrading of replicated databases? I like the idea of sequential GUIDs but does this still guarantee they will be globally unique?
|
|
|
Paul Chase
|
|
Group: Forum Members
Posts: 414,
Visits: 2.8K
|
Like Trent said there are a ton of articles explaining the different types of replication written by people that know it and can explain it way better than I could. Just like the decision to use integer or guid primary keys it really depends' on your business requirements as to what replication scenario would work best for you. Also do not forget that StrataFrame has the Enterprise Server which may be a better option again depending on what your requirements are. Paul
|
|
|