User Goran - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:22:29Z http://stackoverflow.com/feeds/user/23164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1915347/c-associative-array/1915479#1915479 2 Answer by Goran for C# associative array Goran 2009-12-16T15:43:35Z 2009-12-16T15:43:35Z <p>I think <a href="http://www.wintellect.com/PowerCollections.aspx" rel="nofollow">PowerCollections</a> has classes that fit your need (look for OrderedSet or OrderedDictionary.</p> http://stackoverflow.com/questions/1913068/encryption-in-java-flex/1913326#1913326 0 Answer by Goran for Encryption in Java & Flex Goran 2009-12-16T09:11:34Z 2009-12-16T09:11:34Z <p>"Simple" encryption mode (simple-aes-cbc) uses random initialization vector which is different each time you use it even if your secret key is the same. </p> <p>If you wish to guarantee the same results when using the same key you should use "aes-cbc". Additionally you have to manually set the IV on the Cipher:</p> <pre><code>var ivmode:IVMode = mode as IVMode; ivmode.IV = "some string guaranteed to be constant" </code></pre> <p>The IV can be made dependent on something like userId, which makes encryption repeatable for the same user.</p> <p>You should consider how this affects your security scheme.</p> http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o/1913290#1913290 1 Answer by Goran for Can/should I use WeakReference in my complex object structure with db4o? Goran 2009-12-16T09:00:57Z 2009-12-16T09:00:57Z <p>Hi!</p> <p>Turning off WeakReferences is mostly used for performance <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Tuning/Performance%5FHints/Turning%5FOff%5FWeak%5FReferences" rel="nofollow">tuning</a>. The downsides to this approach are not negligible - so be careful. I would not recommend it.</p> <p>Controlling memory usage should be done using <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Object%5FLifecycle/Activation" rel="nofollow">activation</a> features. Activation can help you keep only part of you model in memory and weakreferences will help you GC objects no longer used. I think that's the way to go.</p> <p>Also - you can post your questions to db4o forums to get help from the db4o community.</p> <p>Goran</p> http://stackoverflow.com/questions/1895952/an-application-design-question/1895971#1895971 1 Answer by Goran for An application design question. Goran 2009-12-13T09:08:45Z 2009-12-13T09:08:45Z <p>Let's simplify:</p> <ul> <li>Library1 contains data structs</li> <li>Library2 contains some controls that use some data structs in Library1</li> </ul> <p>There are two options:</p> <p>a) Extract an interface. </p> <p>Some controls in Library2 use Library1 directly. You can modify those controls to use an interface and not the Library1 implementation of that interface. Put the interface in Library3. Now you have:</p> <ul> <li>Library3 contains interface to data (no references)</li> <li>Library2 contains some controls that use data that conforms to interface from Library3 (references Library3, does not know about Library1)</li> <li>Library1 contains data structs that conforms to interface from Library3 (references Library3, does not know about Library2)</li> <li>Application is the only component that holds references to all 3 libraries and provides controls from Library2 with data structs from Library1.</li> </ul> <p>b) Extract common implementation</p> <p>Some controls in Library2 use Library1 directly. You can extract those data structs from Library1 into Library3. Now you have a situation similar to above.</p> http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service/1894747#1894747 1 Answer by Goran for Implementing an async WCF service Goran 2009-12-12T21:24:38Z 2009-12-12T21:24:38Z <p>Implementing async operations on server side is quite simple. Make sure you method names match and are prefixed with Begin and End. GetImageAsyncResult is a custom IAsyncResult implementation (lots of examples on web).</p> <pre><code> public class MapProvider : IMapProvider //implementation - belongs to server { public IAsyncResult BeginGetImage(int level, int x, int y, string[] layers, AsyncCallback callback, object state) { GetImageAsyncResult asyncResult = new GetImageAsyncResult(level, x, y, layers, callback, state); ThreadPool.QueueUserWorkItem(Callback, asyncResult); return asyncResult; } private void Callback(object state) { GetImageAsyncResult asyncResult = state as GetImageAsyncResult; asyncResult.Image = TileProvider.GetImage(asyncResult.Level, asyncResult.X, asyncResult.Y, asyncResult.Layers); asyncResult.Complete(); } public System.Drawing.Bitmap EndGetImage(IAsyncResult result) { using (GetImageAsyncResult asyncResult = result as GetImageAsyncResult) { asyncResult.AsyncWait.WaitOne(); return asyncResult.Image; } } } public class MapProviderProxy : ClientBase&lt;IMapProvider&gt;, IMapProvider, IDisposable { public IAsyncResult BeginGetImage(int level, int x, int y, string[] layers, AsyncCallback callback, object state) { return Channel.BeginGetImage(level, x, y, layers, callback, state); } public System.Drawing.Bitmap EndGetImage(IAsyncResult result) { return Channel.EndGetImage(result); } public void Dispose() { if (State == CommunicationState.Faulted) { Abort(); } else { try { Close(); } catch { Abort(); } } } } </code></pre> http://stackoverflow.com/questions/1894239/choosing-dvcs-criteria 0 Choosing DVCS - criteria Goran 2009-12-12T18:08:43Z 2009-12-12T18:38:52Z <p>There are similar questions on SO but I'd like some clearer answers here.</p> <ol> <li>How important is DVCS not littering your working folder with files? (Alternately is single file repository a big plus to you?)</li> <li>How important is cherry-picking functionality (choosing arbitrary changes instead of lineage of changes)?</li> <li>How important is the speed of DVCS?</li> <li>How important is the size of repository?</li> <li>How important are GUI, IDE plugins, etc.?</li> <li>How important is the blame tracking functionality?</li> <li>Any other features you consider important?</li> </ol> http://stackoverflow.com/questions/1576810/pros-and-cons-of-unit-testing-with-t 1 Pros and Cons of unit testing with t# Goran 2009-10-16T08:27:47Z 2009-12-12T17:00:03Z <p>I've recently stumbled upon <a href="http://en.www.prettyobjects.com/tsharp.aspx" rel="nofollow">t#</a>. It seems a nice concept but I'm wondering if it's worth switching from nunit to this? I love the pros but hate the cons so I'm still undecided</p> <p>Pros:</p> <ul> <li>specialized language for unit testing (keywords)</li> <li>relative assertions</li> <li>compile time warnings)</li> <li>focus on test intentions</li> </ul> <p>Cons:</p> <ul> <li>lack of (integrated) tool support</li> <li>it's still beta?</li> <li>not used by many</li> </ul> <p>(Don't forget to update the list)</p> http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#1887709 1 Answer by Goran for Application structure using WCF Goran 2009-12-11T12:18:29Z 2009-12-11T12:18:29Z <p>The usual structure I use is:</p> <p>Common - contains interfaces, data-contracts, service contracts, abstract classes etc; Client - references Common, contains server proxy class; Server - references Common, contains actual implementation classes;</p> http://stackoverflow.com/questions/1636165/image-drawn-on-panel-does-not-cover-the-whole-panel-c-winforms 0 Image drawn on panel does not cover the whole panel (c# - winforms) Goran 2009-10-28T09:47:06Z 2009-12-08T20:00:02Z <p>I'm drawing images on panel controls. Changing zoom factor changes the size of panel control (which should stretch the image accordingly). With zoom factors greater then 1 (ie, 2,4,8) a small part of panel begins to show (testing shows that it is the background color of the panel) and grows along with the zoom factor.</p> <ul> <li>Panel control borders are set to none. </li> <li>Panel size is always the power of 2 (ie 64,256...). </li> <li>Original image size is always the power of 2 (ie 64,256...).</li> <li>Destination rectangle of the draw method is set to panel width and height.</li> </ul> <p>Any thoughts?</p> http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha 31 What is your (least) favorite syntax gotcha? Goran 2008-10-02T15:30:33Z 2009-12-06T12:04:05Z <p>You know the ones that make you go WTH and are easily spotted by a coworker just passing by? </p> <p>Please keep it one gotcha per answer to simplify voting.</p> http://stackoverflow.com/questions/1852253/net-object-persistence/1852364#1852364 2 Answer by Goran for .net object persistence Goran 2009-12-05T14:39:45Z 2009-12-05T14:39:45Z <p>Try db4o at <a href="http://www.db4o.com" rel="nofollow">www.db4o.com</a>. It was recently acquired by Versant.</p> <p>Some pro's: It's open source with code available in java and c#. The framework is dead easy to use. The community is quite nice and you can get answers quickly on the forums.</p> http://stackoverflow.com/questions/1825761/wcf-containers-in-datacontract/1825901#1825901 2 Answer by Goran for WCF, containers in DataContract Goran 2009-12-01T12:28:26Z 2009-12-01T12:28:26Z <p>It's ok but the resulting type will be an array and not a list. I'm partial to using array in the contract just to make sure I don't try to use it as list someplace else.</p> http://stackoverflow.com/questions/1825598/a-sql-story-in-2-parts-are-sql-views-always-good-and-how-can-i-solve-this-examp/1825691#1825691 1 Answer by Goran for A SQL story in 2 parts - Are SQL views always good and how can I solve this example? Goran 2009-12-01T11:51:39Z 2009-12-01T11:51:39Z <p>Views are used by query optimizer so they often help in querying for information more efficiently. </p> <p>Indexed or materialized views however create a table with the required information which can make quite a difference. Think of it as denormalization of you db scheme without changing existing scheme. You get best of both worlds.</p> <ol> <li>Some views are never used so they represent needles compexity -which is bad.</li> <li>Indexed views cannot reference other views (mssql) so there's hardly a point in creating such view.</li> </ol> http://stackoverflow.com/questions/1825018/directory-contents-diff 0 Directory contents diff Goran 2009-12-01T09:29:01Z 2009-12-01T09:37:46Z <p>I'm looking for existing ideas / solutions to the problem of finding differences between two directories. Specifically how to identify files that might have been changed, renamed and moved.</p> <p>A short list of things I've considered:</p> <ul> <li>try to pair up files missing in dir A with new files in dir b by using some heuristic such as 75% match in content. This just doesn't seem robust enough (problem cases include: significant changes in content, compression or encryption, possible multiple matches)</li> <li>use alternative data streams to add an id to each file. This would work only on NTFS.</li> <li>add a header/footer to each file containing and id. There's no way to guarantee header/footer will not corrupt the file.</li> <li>ask for user input for each change to determine if file is indeed deleted or simply moved. This is too hard on user.</li> <li>require user to rename/move files only by using special commands which will keep track of such changes. This is too hard on user.</li> <li>setting up a file system watcher to catch changes on the fly. Several issues (watcher must run at all times, is platform specific...)</li> </ul> <p>Any ideas welcome...</p> http://stackoverflow.com/questions/1813286/xslt-select-distinct-but-slightly-different-to-other-examples/1813426#1813426 0 Answer by Goran for XSLT: select distinct but slightly different to other examples Goran 2009-11-28T19:03:22Z 2009-11-28T19:03:22Z <p>Hi!</p> <p>You can use Muenchian method:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:key name="groupIndex" match="*" use="name()" /&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="a/b"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="b"&gt; &lt;xsl:apply-templates select="*[1][generate-id(.) = generate-id(key('groupIndex', name())[1])]" mode="group" /&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*" mode="group"&gt; &lt;xsl:value-of select="name()"/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/161942/how-slow-are-net-exceptions 31 How slow are .NET exceptions? Goran 2008-10-02T12:09:10Z 2009-11-26T23:03:23Z <p>I don't want a discussion about when to and not to throw exceptions. I wish to resolve a simple issue. 99% of the time the argument for not throwing exceptions revolves around them being slow while the other side claims (with benchmark test) that the speed is not the issue. I've read numerous blogs, articles, and posts pertaining one side or the other. So which is it?</p> <p>Some links from the answers: <a href="http://yoda.arachsys.com/csharp/exceptions2.html" rel="nofollow">Skeet</a>, <a href="http://blogs.msdn.com/ricom/archive/2006/09/25/771142.aspx" rel="nofollow">Mariani</a>, <a href="http://blogs.msdn.com/cbrumme/archive/2003/10/01/51524.aspx" rel="nofollow">Brumme</a>.</p> http://stackoverflow.com/questions/1740706/object-oriented-programming-class-design-confusion/1740768#1740768 3 Answer by Goran for Object oriented programming - class design confusion Goran 2009-11-16T08:10:48Z 2009-11-16T08:10:48Z <p>Simply mirroring real-world objects is rarely a good idea. To borrow from a classic example - software that controls a coffeemaker is not about coffee beans and hot water - it's about making coffee.</p> <p>You need to find the underlying abstraction to your real-world problem, not just copy nouns into object hierarchies. </p> <p>If your apple derives from fruit, does it add any interesting behavior? Is the hierarchy really needed? Inheritance adds a level of complexity to your software and anything increasing complexity is bad. Your software is just a bit harder to follow and understand, there's just a bit more to cover in your test and the likelihood of a bug is just a tiny bit larger.</p> <p>I find OOP is more about the whitespace - what you are leaving out is more important. </p> http://stackoverflow.com/questions/1716320/how-to-insert-duplicate-rows-in-sqlite-with-a-unique-id/1716496#1716496 0 Answer by Goran for How to insert duplicate rows in SQLite with a unique ID? Goran 2009-11-11T16:44:11Z 2009-11-11T16:44:11Z <p>Absolutely no way to do this. Primary Key declaration implies this field is unique. You can't have a non unique PK. There is no way to create a row with existing PK in the same table.</p> http://stackoverflow.com/questions/1716378/hashtable-how-to-get-string-value-without-tostring/1716481#1716481 0 Answer by Goran for Hashtable how to get string value without toString(). Goran 2009-11-11T16:42:30Z 2009-11-11T16:42:30Z <p>Hi!</p> <p>You could use System.Collections.Generic.HashSet. Alternately use composition instead of inheritance ie. have hashtable be your private field and write your own indexer that does ToString(). </p> <pre><code>public class myHashT { public myHashT () { } ... private Hashtable _ht; public string this[object key] { get { return _ht[key].ToString(); } set { _ht[key] = value; } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1636093/wcf-performance-localhost-vs-domain-address 0 WCF Performance localhost vs domain address Goran 2009-10-28T09:30:41Z 2009-10-28T14:36:58Z <p>I have a WCF service serving image per request. Accessing the service via localhost is fast but accessing through ip or domain address (as other clients will) is very slow. Images are approximately 1MB in size.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/239788/why-do-i-get-web-exception-when-creating-an-xpathdocument 0 Why do I get web exception when creating an XPathDocument? Goran 2008-10-27T12:57:51Z 2009-10-27T21:00:02Z <p>Creating an XPathDocument with referenced DTD sometimes throws a web exception. Why?</p> http://stackoverflow.com/questions/980250/the-underlying-connection-was-closed/1620362#1620362 0 Answer by Goran for The underlying connection was closed Goran 2009-10-25T08:31:20Z 2009-10-25T08:31:20Z <p>This is a generic error that can be caused by just about anything (In my case some tiff images were causing gdi+ error in a wcf service).</p> <p>Start by checking:</p> <ol> <li>IIS log files </li> <li>Application log files (ie. enable service logging if you use services) </li> <li>Permissions and security</li> </ol> http://stackoverflow.com/questions/1052858/actionscript-3-asynctoken-implementation 1 ActionScript 3 AsyncToken implementation Goran 2009-06-27T13:48:17Z 2009-10-21T17:41:10Z <p>Looking for an example or documentation links as to how to implement a method returning AsyncToken.</p> <p>Note this is not about using/consuming a method returning AsyncToken! I wish to write such methods myself.</p> http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects/1559558#1559558 0 Answer by Goran for db4o to preserve identity of objects. Goran 2009-10-13T11:07:33Z 2009-10-13T11:07:33Z <p>Hi!</p> <p>Db4o does use <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/IDs%5Fand%5FUUIDs" rel="nofollow">IDs and UUIDs</a> internally and you can access those if needed. Also worth reading is <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Basic%5FConcepts/Object%5FIdentity/Unique%5FIdentity%5FConcept" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1329860/db4o-with-silverlight-ria-services/1559546#1559546 0 Answer by Goran for DB4O with Silverlight RIA Services Goran 2009-10-13T11:05:49Z 2009-10-13T11:05:49Z <p>Hi!</p> <p>Db4o does use <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/IDs%5Fand%5FUUIDs" rel="nofollow">IDs and UUIDs</a> internally and it is possible to use those. Also worth reading is <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Basic%5FConcepts/Object%5FIdentity/Unique%5FIdentity%5FConcept" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/928597/trouble-with-db4o-objects-arent-returned-after-an-iis-reset-container-is-out-o/1559526#1559526 0 Answer by Goran for Trouble with db4o...objects aren't returned after an IIS reset/container is out of scope. Goran 2009-10-13T10:59:33Z 2009-10-13T10:59:33Z <p>Hi!</p> <p>I think you are missing the commit statement in your Save method.</p> <p>Goran</p> http://stackoverflow.com/questions/1363590/improve-db4o-linq-query/1559483#1559483 0 Answer by Goran for Improve db4o linq query Goran 2009-10-13T10:50:59Z 2009-10-13T10:50:59Z <p>Hi!</p> <p>Please check if your NQ is indeed optimized (<a href="http://developer.db4o.com/Resources/view.aspx/Reference/Tuning/Diagnostics/NativeQueryNotOptimized" rel="nofollow">see here</a>). If not then your best bet is to translate this into SODA query yourself.</p> <p>Goran</p> http://stackoverflow.com/questions/1475975/analytical-approach-to-optimizing-spatial-indices-in-mssql2008 0 Analytical approach to optimizing spatial indices in MsSql2008 Goran 2009-09-25T07:53:35Z 2009-09-25T08:40:51Z <p>What would be the best approach to optimizing spatial index on geometry data? Specifically:</p> <ol> <li>How to choose values for grid hierarchy? </li> <li>How to choose value for Max cells per object rule?</li> </ol> <p>These are very much data related so I'm looking for a sensible approach to analyzing the data and then testing out the values.</p> http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/545857#545857 24 Answer by Goran for Biggest performance improvement you've had with the smallest change? Goran 2009-02-13T13:11:33Z 2009-09-02T22:16:24Z <p>Truncate table BigTable.</p> <p>Queries returned no records but it was faaaaaast!</p> http://stackoverflow.com/questions/1024285/cloning-webservice 0 Cloning WebService Goran 2009-06-21T16:41:26Z 2009-06-22T11:37:25Z <p>Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error.</p> <p>If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of wsdl can be omitted?</p> http://stackoverflow.com/questions/1913068/encryption-in-java-flex/1913326#1913326 Comment by Goran on Encryption in Java & Flex Goran 2009-12-16T09:58:04Z 2009-12-16T09:58:04Z I've dealt with this problem as stated above. You can checkout the hurlan library source at <a href="http://crypto.hurlant.com/demo/srcview/index.html" rel="nofollow">crypto.hurlant.com/demo/srcview/index.html</a>. They've implemented the same method. http://stackoverflow.com/questions/1913376/is-there-difference-in-speed-between-dictionary-containskey-value-and-a-foreach-l/1913395#1913395 Comment by Goran on is there difference in speed between Dictionary.ContainsKey/Value and a foreach loop that checks for a certain key/value Goran 2009-12-16T09:42:32Z 2009-12-16T09:42:32Z So it is! I thought it was implemented as a binary search in the background... http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service/1894747#1894747 Comment by Goran on Implementing an async WCF service Goran 2009-12-14T11:50:45Z 2009-12-14T11:50:45Z Correct - I found a base AsyncResult class on the web. GetImageAsyncResult derives from that. http://stackoverflow.com/questions/1894239/choosing-dvcs-criteria Comment by Goran on Choosing DVCS - criteria Goran 2009-12-12T18:35:55Z 2009-12-12T18:35:55Z I'd like to hear from users with more experience then me. http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#1887709 Comment by Goran on Application structure using WCF Goran 2009-12-11T21:57:36Z 2009-12-11T21:57:36Z You can implement async services. Just create beginX and endX methods (in interface, implementation and proxy). http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1888168#1888168 Comment by Goran on Application structure using WCF Goran 2009-12-11T17:27:19Z 2009-12-11T17:27:19Z Regarding testing - you can add reference to Service implementation and use implementation class instead of proxies. Once everything works remove reference to Service implementation and go back to using proxies. http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#1887709 Comment by Goran on Application structure using WCF Goran 2009-12-11T17:25:08Z 2009-12-11T17:25:08Z I derive the proxy class from ClientBase&lt;T&gt; and implement interface to forward calls to Channel. http://stackoverflow.com/questions/1825018/directory-contents-diff/1825063#1825063 Comment by Goran on Directory contents diff Goran 2009-12-11T10:41:45Z 2009-12-11T10:41:45Z Got me going in the right direction, thanks :) http://stackoverflow.com/questions/1603876/working-with-xslt-in-visual-studio/1869891#1869891 Comment by Goran on Working with XSLT in Visual Studio Goran 2009-12-11T10:37:56Z 2009-12-11T10:37:56Z I like the separate project solution. It plays along with VSs limitation and keeps things neat. http://stackoverflow.com/questions/1880562/how-to-get-node-types-in-a-tree-using-c Comment by Goran on How to get Node Types in a tree using C# Goran 2009-12-10T12:16:25Z 2009-12-10T12:16:25Z Type? The object type is TreeNode. Can you elaborate on your request? http://stackoverflow.com/questions/1838807/winforms-treeview-how-to-manually-highlight-node-like-it-was-clicked/1838897#1838897 Comment by Goran on WinForms TreeView - how to manually "highlight" node (like it was clicked) Goran 2009-12-09T20:09:53Z 2009-12-09T20:09:53Z Also the property HideSelection can be used. If set to false the highlight will be shown regardless of focus. http://stackoverflow.com/questions/1852253/net-object-persistence/1852364#1852364 Comment by Goran on .net object persistence Goran 2009-12-09T13:07:13Z 2009-12-09T13:07:13Z I'd say db4o is more mature but then again MS knows how to play catch-up. Db4o to me is easier to use as there's no need to build a persistence model and it knows how to deal with missing assemblies. I haven't seen any performance benchmarks that include both so hard to say which is faster. As a db4o MVP i favor db4o :) http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist/1854759#1854759 Comment by Goran on Goto: Why does it still exist? Goran 2009-12-06T09:03:18Z 2009-12-06T09:03:18Z Ahm... c# has goto? http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1854801#1854801 Comment by Goran on simple proof that GUID is not unique Goran 2009-12-06T08:58:11Z 2009-12-06T08:58:11Z Thats actually doable when using virtualization. You can and you do get duplicate guids. http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1845144#1845144 Comment by Goran on Can someone copyright a SQL query? Goran 2009-12-04T19:34:31Z 2009-12-04T19:34:31Z Copyright deals with a lot more then copying...