如何在 Python 中的 Pymmsql 中创建和重新创建索引?

How to create and recreate a index in Pymmsql in Python?

我正在尝试在 Python 中创建和重新创建索引,但是当我使用它时出现错误。

Error:
  File "src\pymssql.pyx", line 468, in pymssql.Cursor.execute
  pymssql.OperationalError: (7999, b"Could not find any index named 'Micros' for table 
  'payrolldata'.DB-Lib error message 20018, severity 16:\nGeneral SQL Server error: Check messages 
  from the SQL Server\n")

代码:

with pymssql.connect ("127.0.0.1","arcdbadmin", "@rcT3chn010g13$","Micros") as myDbConn:
   with myDbConn.cursor(as_dict=True) as cursor:
       cursor.execute("""create index Micros on payrolldata(stono,payrollid,busdate) WITH(DROP_EXISTING = ON);""")
       myDbConn.commit()
           

除非索引已经存在,否则您不能使用 WITH(DROP_EXISTING = ON)

你可以先drop index if exists:

drop index if exists Micros on payrolldata

如果你愿意,请先。在旧版本上,您可以 运行

if exists (select * from sys.indexes where name = 'Micros' and object_id('payrolldata') = object_id)
begin
  drop index micros on payrolldata
end