dbTalk Databases Forums  

Collation Order SQL2000->SQL2005

microsoft.public.sqlserver.server microsoft.public.sqlserver.server


Discuss Collation Order SQL2000->SQL2005 in the microsoft.public.sqlserver.server forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Gerry Hickman
 
Posts: n/a

Default Collation Order SQL2000->SQL2005 - 05-16-2008 , 02:44 PM






Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also
have it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)

Reply With Quote
  #2  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM







"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #3  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #4  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #5  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #6  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #7  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #8  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #9  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
  #10  
Old   
John Bell
 
Posts: n/a

Default Re: Collation Order SQL2000->SQL2005 - 05-17-2008 , 05:30 AM




"Gerry Hickman" <gerry666uk (AT) newsgroup (DOT) nospam> wrote

Quote:
Hi,

I've moving some databases from SQL 2000 to SQL 2005 (new master and
model). All our Windows servers are set to either English US or English
UK. When installing SQL 2005 on a Windows server set to English UK, it
asks for the collation order, and the default is Latin1_General.

Some of the databases I need to move from SQL 2000 may have originally
come from SQL 6.5 or 7.0; as I understand it, each database can also have
it's own collation order.

Will my databases migrate OK with the defaults, or do I need to look at
setting compatibility options?

--
Gerry Hickman (London UK)
Hi Gerry

The database collation is listed as part of the status column when you do a
sp_helpdb. This can be different to the collation for the instance, which
can cause problems when using temporary tables and using them in queries
with existing tables, Therefore it is usually best to place safe and keep
everything conistent. To change a collation you will not only have to use
ALTER DATABASE to change the database collation, but each column which has
the old collation will have to be changed as well with ALTER TABLE. UDTs may
also need changing which you can't do if they are being used.

HTH

John



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.