setup2.3.sql
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. if(select databaseproperty('dnt','isfulltextenabled'))=0 
  2.   execute sp_fulltext_database 'enable'
  3. ;
  4. if exists (select * from sysfulltextcatalogs where name ='pk_dnt_posts1_msg')
  5.    execute sp_fulltext_catalog 'pk_dnt_posts1_msg','drop'
  6. ;
  7. if exists (select * from sysfulltextcatalogs where name ='pk_dnt_posts1_msg')
  8.    execute sp_fulltext_table '[dnt_posts1]', 'drop' 
  9. ;
  10. execute sp_fulltext_catalog 'pk_dnt_posts1_msg','create';
  11. execute sp_fulltext_table '[dnt_posts1]','create','pk_dnt_posts1_msg','pk_dnt_posts1'
  12. ;
  13. execute sp_fulltext_column '[dnt_posts1]','message','add'
  14. ;
  15. execute sp_fulltext_table '[dnt_posts1]','activate'
  16. ;
  17. execute sp_fulltext_catalog 'pk_dnt_posts1_msg','start_full'
  18. ;