I am trying to add the states for Australia. Both of these tables restrict the CountryRegionCode to 2 characters on Dw8.9.2.0. I see that this has been expanded to 3 characters on Dw9 solutions. What is the impact of increasing to nvarchar(3) for these tables so I can add all of the Australian states?
Here is the query I am running but only the 2 letter states are created:
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','ACT')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','NSW')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','NT')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','QLD')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','SA')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','TAS')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','VIC')
INSERT INTO [dbo].[EcomCountries] ([CountryCode2] ,[CountryCode3] ,[CountryCurrencyCode] ,[CountryNumber] ,[CountryCultureInfo] ,[CountryRegionCode]) VALUES ('AU','','','0','','WA')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Australian Captial Territory','ACT')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','New South Wales','NSW')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Northern Territory','NT')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Queensland','QLD')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','South Australia','SA')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Tasmania','TAS')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Victoria','VIC')
INSERT INTO [dbo].[EcomCountryText] ([CountryTextCode2] ,[CountryTextLanguageID] ,[CountryTextName] ,[CountryTextRegionCode]) VALUES ('AU','ENU','Western Australia','WA')