In SQL Server, I might do something like this to create IDs for dimensions.
select convert(bigint, convert(binary( 8 ), hashbytes('md5', 'foo')))
Result:
-5999611798422882212
How would I do the same in GridSQL?
Thanks.
Don
This message was edited 1 time. Last update was at 04/12/2008 13:25:30
|