Tagged Questions
The bigint tag has no wiki summary.
18
votes
2answers
1k views
Integer division algorithm
I was thinking about an algorithm in division of large numbers: dividing with remainder bigint C by bigint D, where we know the representation of C in base b, and D is of form b^k-1. It's probably the ...
12
votes
2answers
316 views
Efficient 128-bit addition using carry flag
I'm using a 128 bit integer counter in the very inner loops of my C++ code. (Irrelevant background: The actual application is evaluating finite difference equations on a regular grid, which involves ...
10
votes
5answers
6k views
What is the alternative of bigint in c#
what I am suppose to use when handling a value in c#, which is bigint SQLSERVER DB ?
Thanks
9
votes
6answers
6k views
How to use long id in Rails applications?
How can I change the (default) type for ActiveRecord's IDs? int is not long enough, I would prefer long. I was surprised that there is no :long for the migrations - does one just use some decimal?
6
votes
2answers
437 views
Large integer radix/base conversion from 10^x to 2^x
Preface
I'm learning about computer math by writing and refining my own BigInt library. So far my first incarnation stores every digit of a base 10 number in successive elements of a vector. It can ...
6
votes
4answers
906 views
What is the simplest way of implementing bigint in C?
I am trying to calculate 100!
I am looking for the simplest way to accomplish this using C. I have read around but have not found a concrete answer.
If you must know, I program in Xcode in Mac os ...
5
votes
2answers
764 views
Can T-SQL store ulong's?
I want to store a C#.NET ulong into a T-SQL database. I don't see any provisions for doing this, as the SQL bigint has the same Min/Max values as a normal long.
Is there any way I can do this? Or is ...
4
votes
2answers
167 views
Is there a generally accepted alternative to GMP for arbitrary precision?
In my quest for looking for a BigInt library, I came across this post:
C or C++ BigInt library on Microsoft Windows
The accepted answer mentions the GMP library, but one of the commenters claim that ...
4
votes
3answers
576 views
Approach for altering Primary Key from GUID to BigInt in SQL Server related tables
I have two tables with 10-20 million rows that have GUID primary keys and at leat 12 tables related via foreign key. The base tables have 10-20 indexes each.
We are moving from GUID to BigInt ...
4
votes
2answers
1k views
Java/Scala BigInteger Pasting
I have a problem with the Java BigInteger class: I can't paste a large value into BigInteger. For example, let's say I want to assign a BigInteger to this number:
26525285981219105863630848482795
I ...
4
votes
6answers
1k views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to convert this number into ...
3
votes
2answers
105 views
why does pg_size_pretty return negative value?
I was playing with pg_size_pretty() and I've discovered that when I pass it a great value it starts to return negative value.
This is my test:
select pg_size_pretty(9223370000000000000); -- "8388606 ...
3
votes
2answers
622 views
C++ 128/256-bit fixed size integer types
I was wondering if any fellow SO's could recommend a good light-weight fixed size integer type (128-bit or even 256-bit, possibly even template parametrized) library.
I've had a look at GMP and co, ...
3
votes
2answers
203 views
mySQL 5.0.45 LAST_INSERT_ID() and values larger than a signed int
I'm attempting to use LAST_INSERT_ID on an auto incremented index that has moved past the signed int value 2147483647. This column is an unsigned int. However, LAST_INSERT_ID() is returning an invalid ...
3
votes
1answer
256 views
How do you write a bigint library / how does libgmp work?
I'm aware of a number of BigInt libraries for C on various platforms and how to use them but I'm intrigued: how do they work? How would I go about building my own library (I'm not going to try, no ...
3
votes
1answer
6k views
Arithmetic overflow error when summing an INT, how do I cast it as a BIGINT?
When I try to get the sum of a column from a table I get the error Arithmetic overflow error converting expression to data type int because the resulting number is to big for an INT. So I tried to ...
2
votes
3answers
37 views
javascript ints evaluating incorrectly
So I am writing a javascript application, and basically if one number is greater than another I want to swap their values:
if(price1 > price2)
{
var temp = price1;
price1 = price2;
price2 = ...
2
votes
1answer
86 views
SQL Server varbinary bigint with BitConverter.ToInt64 values are different
I save my long value in a SQL Server table as varbinary(max):
var savedValue = BitConverter.GetBytes(longValue);
Now I need to work with that value in T-SQL query, but when I trying to get value:
...
2
votes
4answers
97 views
What to do when you need integers larger than 20 digits on mysql?
Seems like BIGINT is the biggest integer available on MySql, right?
What to do when you need to store a BIGINT(80) for example?
Why in some cases, like in somewhere in the Twitter API docs, they ...
2
votes
2answers
380 views
Calculating big float number fast like 0.4 ^ 100000000 ,, any ideas?
Ehm ... I got a problem
I've a certain calculation that result is over 10^-308 (the biggest value in double .net ) any way I solved this problem through a library called BIGFLOAT ...
2
votes
1answer
507 views
How can i format bigint field into a date?
I have a table with a field of type bigint. This field store a timestamp.
I want to date format the field like this :
to_char( bigint_field,'DD/MM/YYYY HH24:MI:SS')
I get the following error :
...
2
votes
4answers
830 views
C++ BigInt multiplication conceptual problem
I'm building a small BigInt library in C++ for use in my programming language.
The structure is like the following:
short digits[ 1000 ];
int len;
I have a function that converts a string into a ...
2
votes
3answers
1k views
Convert float to bigint (aka portable way to get binary exponent & mantissa)
In C++, I have a bigint class that can hold an integer of arbitrary size.
I'd like to convert large float or double numbers to bigint.
I have a working method, but it's a bit of a hack. I used IEEE ...
2
votes
3answers
260 views
Numeric String (arbitrary size) -> Multiple Integers
I'm running into a problem because my database has BIGINT data (64-bit integers) but the version of PHP I'm running is only 32-bit.
So when I pull out value from a table I end up with a numeric ...
2
votes
2answers
3k views
Convert binary string to bigint in MySQL?
I am attempting to hash a string to a 64-bit value (bigint) in MySQL. I am aware of the MD5() function, which returns a 128-bit hash as a binary string. I'd be happy to just take the bottom or top 64 ...
1
vote
2answers
47 views
mysql alter int column to bigint with foreign keys
I want to change the datatype of some primary-key colymns in my database from INT to BIGINT. The following definition is a toy-example to illustrate the problem.
CREATE TABLE IF NOT EXISTS `owner` (
...
1
vote
1answer
171 views
including c++ libraries in ios programming
I'm developing an ios app that's very basic and uses objective almost all of the time. However my app needs to deal with big integer numbers (eg: 2^200) and add and multiply them. To achieve that I ...
1
vote
1answer
135 views
Java multiplying two BigInt objects
Theres a BigInt class and two objects num1 and num2. I have a lab assignment and i have to multiply num1 and num2. they can be an integer up to 50 digits. the class has a size and a digit.size is the ...
1
vote
2answers
72 views
bigint type with & usage
I am seeing this first time using '&' symbol in sql stored procedures.
declare @b bigint
set @b=15
select @b&2
result is 2
Can some one explain me how the result was 2??
FYI: its on SQL ...
1
vote
1answer
202 views
BIGINT shifting in MySQL
Hey all, I think this might be a bug, but it's killing me. I am using MySQL 5.1.41 on an Ubuntu Linux server. I'm trying to write a function to create a random signed BIGINT value. Because the ...
1
vote
1answer
928 views
rails3 bigint primary key
I would like to create a bigint (or string or whatever that is not int) typed primary key field under Rails 3.
I have a given structure of data, for example:
things
------
id bigint primary_key
name ...
1
vote
1answer
931 views
Convert nvarchar to bigint in Sql server 2008
I want insert all rows of a table into another table, and I also want convert a nvarchar field into bigint, but when I use convert(bigint, col1) SQL Server shows an error:
Error converting data ...
1
vote
1answer
226 views
Does converting a float column to a bigint column result in a whole table copy in SQL Server?
we want to convert in a huge (100 Mio. rows) SQL Server table one column from FLOAT(8) to BIGINT. We do not care about the floating points and losing precision.
Since I do not own a SQL Server but ...
1
vote
2answers
841 views
Bigint on PostgreSQL 8.3
I have a users table with a primary key uid of data type bigint.
I don't understand why I get the error : "Minteger out of range" when trying to add a user with uid = 100000349053153.
This should ...
1
vote
4answers
484 views
how to cast bigint to prevent sql injection in php?
i am using php and running sql queries on a mysql server.
in order to prevent sql injections, i am using mysql_real_escape_string.
i am also using (int) for numbers casting, in the following manner:
...
1
vote
2answers
356 views
Why do my Perl bigints have a decimal place?
If I do use a big integer in substr:
use BigInt;
$acct_hash = substr(('99999999999912345' + $data[1]),0,15);
why is the result still 9.9999999999912?
I was expecting 999999999999912. Is there ...
1
vote
1answer
192 views
Why do I get a decimal point in my BigInt numbers?
Adding 15 digit numbers like 999999999999990 in Perl produces results with a period
such as 1.9999999999999e+. When using substr it still produces 1.99999999999, and when using BigInt the result still ...
0
votes
3answers
82 views
Operator== overload
I'm doing a project for school and where I need to create a bigint class and it has 4 requirements thus far.
1.) Write a method to write a bigint that prints at most 80 digits per line.
2.) Write a ...
0
votes
1answer
16 views
How to change bigint to int in mysql, with table having foreign keys
I recently noticed that there are several bigint type fields in one of my databases that could be replaced with type "int". The problem is that the database is already online and in use and also that ...
0
votes
0answers
50 views
Coding BigInt Division [closed]
Question: A good and efficient algorithm for BigInt division?
Attempted: Polynomial long division, division with ints (overflow remainder), binary long division (any good? Not sure, that's what I ...
0
votes
1answer
109 views
Which is a good C++ BigInteger class for programming contests?
I was just wondering which will the best BigInteger class in C++ for programming contests which do not allow external libraries?
Mainly I was looking for a class which could be used in my code( I ...
0
votes
1answer
61 views
Using bigint datetimes to select records older than X days
I have dates stored as bigint in my table, and I'm trying to select records older than 30 days. I have seen a ton of questions on SO and Google related to this question, but I'm not finding what I ...
0
votes
2answers
111 views
PostgreSQL ERROR: there is no built-in function named " (SQL state 42883)
I'm trying to add to my PostgreSQL a very simple function, to convert IP addresses from an integer to a text format.
This is the code of the function:
CREATE FUNCTION custom_int_to_ip(ip BIGINT)
...
0
votes
1answer
80 views
T-SQL LEFT JOIN on bigint id return only ids lower than 101 on right table
I have two tables on a Sql Server 2008.
ownership with 3 fields and case with another 3 fields I need to join both on the ID field (bigint).
For testing purposes I'm only using one field from each ...
0
votes
0answers
263 views
Rails Migration: Bigint on PostgreSQL seems to be failing?
Trying to create a table with a bigint column creates a standard integer column instead. What could be going wrong? I don't know where to start looking.
I'm using this in the migration:
create_table ...
0
votes
4answers
149 views
JAVA, SQL exception while retrieving a value
I am using Netbeans 6.9.1, and glassfish 3.1, the DB is MySql.
There is a table in the database called HotelNames, i need to write a SQL and pass the Hotel name to get its hotel ID. I get an ...
0
votes
2answers
134 views
First Version of db2 to include bigInt data type
What is the first version of db2 to include the BigInt data type?
I thought it was version 8, but I'm looking for an official IBM source. I wasn't having much luck with google.
0
votes
3answers
187 views
mysql, what if I need a very very big autoincrement ID?
hi
according to mysql website.
the signed bigint can go up to 18446744073709551615
What if I need a number bigger than that for the auto-incrementing primary key?
0
votes
1answer
134 views
pointer to instance class containing vector<int> issue
I have a class like this:
class largeInt{
vector<int> myVector;
largeInt operator* (const largeInt &arg);
}
in my main i can't avoid copies while working with pointers:
void ...
0
votes
2answers
510 views
How to make Rails generate 'schema.rb' with bigint support for MySQL?
I am using Rails 3.0.5. I am using MySQL as a database storage. I have a model in which one of the columns needs to be BIGINT. I am using the following in my create migration file:
t.column ...