在asp 中使用 sql_dmo 给表添加索引

2018-09-06 11:10

阅读:548

  set oSQLServer =server.createobject(SQLDMO.SQLServer)

  set tables =server.createobject(SQLDMO.Table)
Set tables = oSQLServer.Databases(数据库名).Tables(表名)

  
idxProductName.FileGroup = 文件组
idxProductName.Type = 索引类型
idxProductName.IndexedColumns = [字段名]

  
tables.Indexes.Add idxProductName

  

   注:索引类型

  SQLDMOIndex_Clustered
SQLDMOIndex_Default
SQLDMOIndex_DRIIndex
SQLDMOIndex_DRIPrimaryKey
SQLDMOIndex_DRIUniqueKey
SQLDMOIndex_DropExist
SQLDMOIndex_Hypothetical
SQLDMOIndex_IgnoreDupKey
SQLDMOIndex_NoRecompute
SQLDMOIndex_PadIndex
SQLDMOIndex_SortedData
SQLDMOIndex_SortedDataReorg
SQLDMOIndex_Unique
SQLDMOIndex_Valid

  


评论


亲,登录后才可以留言!