GO
/****** 对象: Table [dbo].[OrderDetail] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[OrderDetail](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Guid] [uniqueidentifier] NOT NULL,
[OrderGuid] [uniqueidentifier] NOT NULL,
[DesignType] [int] NULL CONSTRAINT ...
-- =============================================
-- Author: 杨明
-- Create date: 2014-02-26
-- Description:更新7万条数据只要两秒
-- =============================================
--step.1先执行下面的代码
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures'...