I would like to convert/cast some int or bigint to varchar (in tsql).
But I would like it to be in English regardless of database language, collation, etc. (I need to parse it back on the client side)
Basically I am looking for tsql equivalent of this C# code 1234.ToString(CultureInfo.InvariantCulture)
What should I do? Is this language independent? convert(varchar, 1234)