Note that there are some explanatory texts on larger screens.

plurals
  1. USJordan
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COYou can make string sInput = "Hello World, This is a great World. I love this great World"; string sInput = "Hello World, This is a great World. I love this great World".ToLower(); to make it case insensitive. Personally I like case sensitivity there as it can tell you proper nouns and the start of a sentence even without punctuation, so nothing is lost. On the downside World and world aren't equal.
      singulars
    2. COWell a primary key would add a clustered index to the table. Perhaps you had no index before? I suppose that some row locking might cause a divergent row count. Having an index would allow it to access the row count regardless of the table level locks. I know a pending transaction can give incorrect row counts depending, so I'd imagine it's possible. If you're familiar with ACID the I is Isolation so perhaps the server is not dealing with that row while it is actually being updated. Now that i think about it an update has an implicit transaction that would probably block the reader.
      singulars
    3. COYeah I realize that sorry, just had to take the opportunity to make the suggestion. There must be something else causing it. Do you have an index on the table? Perhaps the constant updates are causing the index to return some slightly divergent value. I would suspect there is NOT an extra row being created. If you really believe there is an extra row I suppose you could copy the table to another one with all the data and run a query to pull out ones that exist on the processing table vs the static backup copy. This would be very slow and I don't think it would show anything.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload