Tagged Questions

1
vote
1answer
928 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 ...
0
votes
1answer
970 views

Convert Sqlite BigInt to Date

I have a Sqlite database that I am using as an ado.net job store for my Quartz.net scheduler jobs. In one table, a column called START_TIME is of type big int. Is there a way to cast or convert a ...