Migrating Content

Note that migration of content between different custom controls can be acheived by running this SQL Script:
 
Update PageObject Set ObjectType='[New Object]' Where ObjectType='[Old Object]'

EXEC sp_fulltext_catalog 'Cat_Page', 'create'
exec sp_fulltext_table 'dbo.Page', 'create', 'Cat_Page', 'PK_Page';
exec sp_fulltext_column 'dbo.Page', 'title', 'add'
exec sp_fulltext_column 'dbo.Page', 'name', 'add'
exec sp_fulltext_column 'dbo.Page', 'MetaDescription', 'add'
exec sp_fulltext_column 'dbo.Page', 'MetaKeywords', 'add'

EXEC sp_fulltext_catalog 'Cat_Help', 'create'
exec sp_fulltext_table 'dbo.Help', 'create', 'Cat_Help', 'PK_Help';
exec sp_fulltext_column 'dbo.Help', 'title', 'add'
exec sp_fulltext_column 'dbo.Help', 'text', 'add'
exec sp_fulltext_column 'dbo.Help', 'textnohtml', 'add'