Link to home
Start Free TrialLog in
Avatar of hidrau
hidrauFlag for Brazil

asked on

Where can I get the difference among fields type in mssql versions?

Hello,

I need to use the big int and I am not sure what version of mssql has the kind of field.

I use the mssql 2008 but I am not sure if in mssql 2005 there is this field bigInt.

Could you help me on this?

Thanks
Avatar of Pawan Kumar
Pawan Kumar
Flag of India image

ASKER CERTIFIED SOLUTION
Avatar of Pawan Kumar
Pawan Kumar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hidrau

ASKER

Hi Pawan

If I have to convert a field from integer to bigint, I can have any kind of problem?
you can do that ..

col1 is of type INT.

CAST( col1 AS BIGINT )
Avatar of hidrau

ASKER

When I told you  " convert " I mean to change the extruture of my field from int to bigint, the table
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hidrau

ASKER

Thanks a lot Pawan for your help