Tagged Questions
0
votes
1answer
90 views
how do I select to collations for sql server database?
I am working with a number of sql server 2012 databases that contain data from different languages. I have been reading up on such and have found getting the collations for the sql server databases ...
0
votes
3answers
320 views
Sql Server: culture changed once i moved to another server. c# .NET
Recently I decided to move to another server. Now my application runs on different servers with different culture (IT and EN).
Everything worked fine but now i am facing many problems with date and ...
0
votes
0answers
106 views
CultureInfo in SQL Server data access
I've a WCF service which works like a charm, but after adding a custom 3rd party httphandler (ELMAH) all my SQL statements which include dates fail.
The dates are in danish format (dd-mm-yyyy) and ...
2
votes
2answers
425 views
SQL Server: how to set return format?
Question: The new SQL Server 2008 database returns me values formatted English (date/float).
Is there a way I can set the return format ?
For example temporarely switching the database language?
Or ...
2
votes
2answers
3k views
How can I query the database culture (SQL Server 2005)?
How can I query the database culture (SQL Server 2005) ?
I have problems inserting and getting dates, because the client's servers don't run on the same culture as my developer server.
I can adjust ...
1
vote
4answers
890 views
Windows Invariant Culture Puzzle
I have a question about the windows invariant culture.
Succinctly, my question is:
does there exist any pair of characters c1, and c2 such that:
lower(c1, invariant) =latin-general lower(c2, ...
1
vote
1answer
2k views
does SQL Server consider culture/locale when converting values to/from strings?
I'm attempting to update a large codebase to properly specify the CultureInfo and/or IFormatProvider when formatting/parsing values. For instance, when parsing a value I get from the user, I pass ...