Hi,I have an Enterprise edition of SQL2014 that is production. I try and restore my bak file to a standard edition and it won't let me. I researched it and it won't restore due to the use of 'partitioning'. So I then run this script:[code="sql"]select object_schema_name(i.object_id) as [schema], object_name(i.object_id) as [object], i.name as [index], s.name as [partition_scheme] from sys.indexes i join sys.partition_schemes s on i.data_space_id = s.data_space_id[/code]That returns:schema object index partition_schemedbo claim_procedure _dta_index_claim_procedure_8_417850859_96917568_K1_K12_K3_K11_K93_K4 _dta_ps__8059dbo claim_procedure _dta_index_claim_procedure_8_417850859_96920536_K12_K1_K3_K20 _dta_ps__9494dbo claim_procedure _dta_index_claim_procedure_8_417850859_96930392_K3_K11_K4_K1_K12 _dta_ps__2608dbo claim_procedure _dta_index_claim_procedure_8_417850859_96918128_K4_K11_K3_K1 _dta_ps__170dbo claim_procedure _dta_index_claim_procedure_8_417850859_96912248_K1_K11_K4_K3 _dta_ps__1912dbo claim_procedure _dta_index_claim_procedure_8_417850859_96917736_K4_K11_1_3_78 _dta_ps__4364dbo claim_procedure _dta_index_claim_procedure_8_417850859_96917736_K11_K4_K3_K1_K12_K20 _dta_ps__4364I am thinking that my bosses will not want to pony up the dollars to purchase SQL enterprise - so I think I have to remove the partitioning in order to restore to standard? How do I know that the partitioning is being used? (Based on above I can assume it is?) I see that the 'partioning results' above are actually statistics on the claim_procedure table?!? Can I just right click on the table under statistics and remove the statistics, backup and then restore on standard edition?
↧