• Hi,

    Please helping me to set the MySql database.

    I have a problem with the correct settings at Godaddy database and they do not want to help me.

    I have to setup this:

    CREATE TABLE [dbo].[CollationTest](
    [keyColumn] [bigint] NULL,
    [strColumn] [varchar](max) COLLATE Traditional_Spanish_CI_AI NULL
    ) ON [PRIMARY]

    Please someone help me.

    Thanx, Martin

    ________________
    p.s.: FUL GODADDY MAIL:

    The issue you describe with the Č character not saving properly in your database likely has to do with the current collation configuration. Collation controls the way string values are sorted. The default collation sorts alphabetically using the standard Latin character set. Other collations will sort in different orders. For example, a traditional Spanish collation places words beginning with “ch” at the end of a list of words beginning with “c.”
    It is not necessary to change the default collation to use non-Latin characters. All shared MS SQL databases support Unicode characters, allowing the storage of a variety of alphabets.

    Modifying collation settings is an advanced database task and should only be performed by experienced database developers. If you determine it is necessary to change your collation, we recommend modifying it at the table or column level. Making this change at the database level disables some Hosting Control Center functionality, including the installation and removal of ASP Schema objects. Modifying at the table or column level avoids the majority of known compatibility issues with non-standard collation settings.

    The following T-SQL sample illustrates how to set the collation at the column level:

    CREATE TABLE [dbo].[CollationTest](
    [keyColumn] [bigint] NULL,
    [strColumn] [varchar](max) COLLATE Traditional_Spanish_CI_AI NULL
    ) ON [PRIMARY]

  • The topic ‘Helping to set the MySql database’ is closed to new replies.