Glossary entry (derived from question below)
English term or phrase:
flips the bits of the values
Russian translation:
инвертирует (переворачивает) двоичные разряды (биты) значений
Added to glossary by
TWNat
Apr 12, 2013 16:01
11 yrs ago
English term
flips the bits of the values
English to Russian
Tech/Engineering
IT (Information Technology)
Microsoft SQL Server
You can generate GUIDs not just in SQL Server using the NEWID function, but anywhere, using APIs. Otherwise, you could come up with a custom solution that generates smaller random keys. The solution can even be a mix of a built-in tool and some tweaking on top. For example, you can find a creative solution where the author uses the SQL Server sequence object, but flips the bits of the values so that the insertion is distributed across the index leaf.
Proposed translations
(Russian)
3 +1 | инвертирует (переворачивает) двоичные разряды (биты) значений | mk_lab |
4 | инвертирует биты значений | Nadiia and Vatslav Yehurnovy |
Proposed translations
+1
58 mins
Selected
инвертирует (переворачивает) двоичные разряды (биты) значений
Т.е., в каком-то бите (или во всех) 1 заменяется на 0, а 0 - на 1.
4 KudoZ points awarded for this answer.
Comment: "Thanks!"
1 hr
инвертирует биты значений
Например, сначала было:
11010
стало:
00101
Цель этих всех манипуляций — обеспечить уникальный ключ для индексирования всего, что записывается в базу.
11010
стало:
00101
Цель этих всех манипуляций — обеспечить уникальный ключ для индексирования всего, что записывается в базу.
Something went wrong...