在asp 中使用 sql_dmo 给表添加索引
2018-09-06 11:10
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
上一篇:如何回到先前的页面的方法多中语言
文章标题:在asp 中使用 sql_dmo 给表添加索引
文章链接:http://soscw.com/index.php/essay/9102.html