• If you want datetime info, your best choice is a column of the datetime data type !

    You'll get a bunch of datetime functions to surve you !

    Rule number 3: use the correct data type !

    You can use:

    Declare @mybigint bigint

    set @mybigint =

    convert(bigint,replace(replace(replace(replace(convert(char(23), getdate(), 121),'-',''),':',''),'.',''),' ',''))

    print @mybigint

    Timezone ? You'll need another convert function to substring and reformat it.

    btw: SQL2008 will have implicit timezone features with a new datetime data type.

    (datetimeoffset)

    Keep in mind, you'll end up with converting it back to datetime stuff, so have a second thought about it !

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me