Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

143
votes
2answers
18k views

What's the Hi/Lo algorithm?

What's the Hi/Lo algorithm? I've found this in the NHibernate documentation (it's one method to generate unique keys, section 5.1.4.2), but I haven't found any good explanation of how does it work. ...
9
votes
4answers
356 views

HiLO for the Entity Framework

Has anyone implemented a HiLO key generator for the Entity Framework. Read more about HiLo here: I recommend that you read ...
9
votes
2answers
716 views

Is there a practical way of migrating from identity columns to hilo keys?

I work with a database that depends heavily on identity columns. However as we have now moved all applications over to NHibernate I wanted to look into using HiLo as seems to be recommended with ...
8
votes
2answers
3k views

NHibernate HiLo - new column per entity and HiLo catches

Im currently using the hilo id generator for my classes but have just been using the minimal of settings eg <class name="ClassA"> <id name="Id" column="id" unsaved-value="0"> ...
7
votes
2answers
424 views

What are all the NHibernate HiLo generator params?

I've seen some docs by Fabio Maulo that shows the following params: <id name="Id" type="Int64" column="cat_id"> <generator class="hilo"> <param ...
6
votes
1answer
307 views

What's a good MaxLo value for the HiLo algorithm?

In my current design, I have HiLo setup to have a MaxLo of 1000. Is this being excessive? Could I reduce this number to something like 100 and still be ok? public class HiLoConvention : IIdConvention ...
6
votes
1answer
960 views

NHibernate and hilo generator: how to design key-tables?

I'm about to switch some of my entities from identity to hilo id-generator. I'm don't have a clue how the tables holding the next-high values should be designed. should I use a single table for all ...
5
votes
1answer
2k views

Error with hilo in NHibernate - “could not read a hi value - you need to populate the table”

I've genereated a schema for my (SQL 2005) db using SchemaExport, and it's created a table CREATE TABLE [dbo].[hibernate_unique_key]( [next_hi] [int] NULL ) ON [PRIMARY] When I try to add an ...
4
votes
2answers
566 views

Once a HiLo is in use, what happens if you change the capacity (maximum Lo)?

If I start using a HiLo generator to assign ID's for a table, and then decide to increase or decrease the capacity (i.e. the maximum 'lo' value), will this cause collisions with the already-assigned ...
3
votes
1answer
542 views

NHibernate Hi-Lo

Yo Quick q: are Nhibernate HiLo ids unique accross the DB? The reason I ask is that we have multiple entities which have an image associated with them. On the client - I am simply storing these ...
2
votes
2answers
152 views

NHibernate HiLo doesn't generate ID on objects in collections

I'm using NHibernate and HiLo strategy and my problem is that IDs of objects in collections are not generated on Session.Save() (only on Transaction.Commit()). For example: ImageGallery ...
2
votes
1answer
311 views

Switch from nHibernate HiLo to GUID

Is it possible to switch from HiLo to GUID.comb? As far as I can tell, the latter combines the advantage of HiLo, namely managing Ids client-side instead of needing a call to the DB for getting a new ...
2
votes
3answers
206 views

Running out of NHibernate HiLo-ids resulting in negative numbers

We're running an ASP.NET database application which uses HiLo to generate ids for entities. On top of this application, we have several websites using the same database. What we're seeing is that we ...
2
votes
3answers
779 views

NHibernate HiLo generation and SQL 2005/8 Schemas

I have an issue on my hands that I've spent several days searching for an answer to no avail... We're using HiLo Id generation, and everything seems to be working fine, as long as the entity table is ...
2
votes
2answers
602 views

Nhibernate id’s with sequential one step incremented id’s (alternatives to HiLo)

How do I instruct Nhibernate to generate sequential one step primary keys, like the sql generated ones? The current HiLo algorithm generates keys like 4001 then 5010, 6089 etc. I understand that ...
2
votes
1answer
226 views

What datatype should be used for the Id primary key columns using a hilo generator and sql server?

If I am using a hilo generator with nhibernate, what should the datatype for my id column be? int or bigint?
2
votes
1answer
1k views

Fluent NHibernate — specify table/column names when using HiLo generator

Yes, nit-picky is a good way to describe this... ;) Does anyone know if you can specify the table and/or column names to use HiLo using Fluent NHibernate? Currently the schema export creates ...
2
votes
1answer
1k views

NHibernate HiLo ID generator is performing a round-trip to the database per-row inserted

When I configure my application to use HiLo Id generation, I see one round-trip per row inserted in the database. All the documentation I've read has indicated that I should see far fewer ...
2
votes
2answers
1k views

HiLo or identity?

Just wanted to get some opinions on primary keys - would it be better to use identity/sequence numbers or use a HiLo strategy (query for the high value and increment the low value on the app itself)?
1
vote
1answer
31 views

nhibernate hilo Id generator generates weird Id number

I am using nhibernate 3.2 mapping by convention. here's my code. in my hilo table, NextHi is 1. I delete all records in User table, then insert a new User there. Instead getting a really small ...
1
vote
1answer
50 views

NHibernate, HiLo and many-to-many association

I have two entities, Role and Permission, each with its table in the database and properly set-up ID generation with a HiLo algorithm. This works fine. However, there is one more table in the ...
1
vote
1answer
123 views

NHibernate: Recreate Database with SchemaExport

I have a question about correctly handling a recreation of a database. In my dev environment I often recreate the database by using _schemaExport.Drop(true, true); _schemaExport.Create(createResult, ...
1
vote
2answers
162 views

NHibernate Hi/Lo - gaps in ids

Scenario: Hi/Lo is initialized for MyEntity with Lo 100 The table is empty. Two sessions with different connections have both inserted three items. TableIds 1 2 3 100 101 102 If a third one ...
1
vote
2answers
667 views

How do I set a hibernate sequence manually in mysql?

I'm doing some data migration after some data model refactoring and I'm taking a couple tables with composite primary keys and combining them into a larger table and giving it its own unique primary ...
1
vote
1answer
322 views

NHibernate Insert Error

I have just setup a Sql Server db using the same mappings and source data that have been working with SQLite, and getting the error below when I try to save a batch of test data. I suspect it is a ...
1
vote
1answer
635 views

Implementing hilo (or seqhilo) in NHibernate and Oracle

I have a database (which I can not modify) with 6 tables in Oracle 11g. All tables have a OID artificial column for ID, and its type is RAW(16). The DBA answered me that they are in raw and not in ...
1
vote
1answer
842 views

GPRS Modem based data communication for Embedded Remote Client and Server

For SAGEM HiLo GPRS based data communication, it has TCP/IP stack and there are two ways to get connected: (1) Using basic GPRS commands and then ppp dialing to brings the modem to public ...
1
vote
2answers
489 views

When using a HiLo ID generation strategy, what types should be used to hold Ids?

I'm asking this from a c#/NHibnernate perspective, but it's generally applicable. The concern is that the HiLo strategy goes though id's pretty quickly, and for example a low record-count table (Such ...
1
vote
2answers
1k views

HiLo vs Identity?

This is the same question as: http://stackoverflow.com/questions/803872/hilo-or-identity Let's take the database of this site as an example. Lets say that the site has the following tables: ...
1
vote
1answer
190 views

HiLo: how to control Low values

I'm using the HiLo generator in my S#rpArchitecture/NHibernate project and I'm performing a large import batch. I've read somewhere about the possibility to predict the Low values of any new records ...
1
vote
1answer
353 views

Are there any gotchas when using HiLo if you need to use replication later?

Currently we only use one database server, and that should be all we need for quite some time. However if I was to convert the database to use HiLo for a POID strategy is there anything I can do now ...
0
votes
0answers
7 views

How to seed in FNH Hi/Lo generator for Uint 64 type which its init number will be a raffled number of Uint64 ranges

We need to implement in FNH a Uint64 generator. The initialize value of this generator should be a raffle number (between 0 to 2^64-1 - it can also be to 2^63-1). The first number is raffled since we ...
0
votes
2answers
94 views

HiLo NHibernate id generator implementation

I would like to use "hilo" generator but there is no any complete example how to create "specific" table as NH documentation says, and which values pass to it. The following code fragments taken from ...
0
votes
0answers
209 views

Saving child objects from union-subclass when shared generator is hilo

I have two classes in a hibernate mapping like this: <hibernate-mapping> <class name="ForecastMethod" table="ForecastMethod"> <id name="code" type="java.lang.Long"> ...
0
votes
1answer
284 views

NHibernate HiLo as long

I will have a table with more than 7 billion rows so I need long for primary key. How to specify the HiLo to use In64 instead of int? Thanks
0
votes
1answer
375 views

Improvement on Hi-Lo Id generator

I have a hi-lo Id generator which I use in a multi-threaded environment. The generator can be called up to 100k times per second per thread I have a reasonably good (and safe) implementation which ...
0
votes
1answer
284 views

generator classes NHibernate

I have been using the generator class assigned to assign my primary key values. I have read several blogs which state that hilo is better. Is there a benefit to assigned over hilo?
0
votes
2answers
1k views

Fluent NHibernate — class/entity specific next_hi seeds when using HiLo generator

Basically I'm trying to do the same thing as this question but with Fluent NHibernate. Here is my id generation convention: public class IdGenerationConvention : IIdConvention { ...