Hi everyone?
How can i change collation of userdefined datatype?
When i try to change it Management Studio Query
varcharUzun = varchar(100) --> userdefined data type....
[code]ALTER TABLE tbxxxx ALTER COLUMN sDefinition varcharUzun COLLATE Turkish_CI_AS NOT NULL [/code]
when i run the query it says.
[code]
Msg 452, Level 16, State 1, Line 2
COLLATE clause cannot be used on user-defined data types.
[/code]
i also cannot ALTER the userdefinedtypes collation itself. And i canyt chance the collation if the column is PrimaryKey
Is there any other to change the collation without dropping and re-creating the objects.
Thanks.
Hi Cem,
I don't htink you can set collation for a column that is using USER DEFINED DATATYPE.
If you do need to use the collation, just use the system datatype varchar(100), instead of user-defined, on that column.
regards
Jag
|||Thanks Jag
but i have to use user defined datatypes.
No way to change the COLLATION of TYPES..... i couldnt find any ALTER TYPE xxxx COLLATE = xxx :(
And also how can i change the collation of PrimaryKey (varchar(10))....
2 Main problems:(
cemuney
|||
Hi Cem,
I dont think you can change the collation for user defined data type.
To change collation for a particular column try the following:
ALTER TABLE <tableName>
ALTER COLUMN <columnName> VARCHAR(10) COLLATE <collationName>
Let me know how you got on.
regards
Jag
|||
Hi Jag
i understant that UDDType do not have collations itself.
it is coming from the DATABASE's default collation.
When i change the COLLATION of database, also UDDType's collation also changes.
thanks anyway.
No comments:
Post a Comment