<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12
      Dev Guide: js | css | HTML(DOM) WEBCAST .NET4 Lib Web.config-WCF MVC3-EF4.1 T-SQL-(2012)

      DZ!NT論壇 3.6.711刪除用戶各種錯解決方案

      首先刪除一個用戶~ado.net報錯

      對象名  'dnt_spaceposts' 無效。

      對象名  'dnt_spaceconfigs' 無效。

      對象名  'dnt_photocomments' 無效。

      對象名  'dnt_photos' 無效。

      對象名  'dnt_albums' 無效。

       

      各種錯誤!!!我是利用向導安裝的居然還來這么一出!!!!fuck !shit!

      好吧手動添加建表腳本如下:

      CREATE TABLE [dnt_spaceposts] (
      	[postid] [int] IDENTITY (1, 1) NOT NULL ,
      	[author] [nvarchar] (40)  NOT NULL ,
      	[uid] [int] NOT NULL ,
      	[postdatetime] [datetime] NOT NULL ,
      	[content] [ntext]  NOT NULL ,
      	[title] [nvarchar] (120)  NOT NULL ,
      	[category] [varchar] (255)  NOT NULL ,
      	[poststatus] [tinyint] NOT NULL ,
      	[commentstatus] [tinyint] NOT NULL ,
      	[postupdatetime] [datetime] NOT NULL ,
      	[commentcount] [int] NOT NULL ,
      	[views] [int] NOT NULL CONSTRAINT [DF_dnt_spaceposts_views] DEFAULT (0),
      	CONSTRAINT [PK_dnt_spaceposts] PRIMARY KEY  CLUSTERED 
      	(
      		[postid]
      	)  ON [PRIMARY] 
      ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
      GO
      
      CREATE TABLE [dnt_spaceconfigs] (
      	[spaceid] [int] IDENTITY (1, 1) NOT NULL ,
      	[userid] [int] NOT NULL ,
      	[spacetitle] [nchar] (100)  NOT NULL CONSTRAINT [DF_dnt_spaceconfig_spacetitle] DEFAULT (''),
      	[description] [nchar] (200)  NOT NULL CONSTRAINT [DF_dnt_spaceconfig_description] DEFAULT (''),
      	[blogdispmode] [tinyint] NOT NULL CONSTRAINT [DF_dnt_spaceconfig_blogdispmode] DEFAULT (0),
      	[bpp] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfig_bpp] DEFAULT (16),
      	[commentpref] [tinyint] NOT NULL CONSTRAINT [DF_dnt_spaceconfig_commentpref] DEFAULT (0),
      	[messagepref] [tinyint] NOT NULL CONSTRAINT [DF_dnt_spaceconfig_messagepref] DEFAULT (0),
      	[rewritename] [char] (100)  NOT NULL CONSTRAINT [DF_dnt_spaceconfig_rewritename] DEFAULT (''),
      	[themeid] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfig_theme] DEFAULT (0),
      	[themepath] [nchar] (50)  NOT NULL CONSTRAINT [DF_dnt_spaceconfig_template] DEFAULT (''),
      	[postcount] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_postcount] DEFAULT (0),
      	[commentcount] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_commentcount] DEFAULT (0),
      	[visitedtimes] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_visitedtimes] DEFAULT (0),
      	[createdatetime] [smalldatetime] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_createdatetime] DEFAULT (getdate()),
      	[updatedatetime] [smalldatetime] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_updatedatetime] DEFAULT (getdate()),
      	[defaulttab] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_defaulttab] DEFAULT (0),
      	[status] [int] NOT NULL CONSTRAINT [DF_dnt_spaceconfigs_status] DEFAULT (0),
      	CONSTRAINT [PK_dnt_spaceconfig] PRIMARY KEY  CLUSTERED 
      	(
      		[spaceid]
      	)  ON [PRIMARY] 
      ) ON [PRIMARY]
      GO
      
      CREATE TABLE [dnt_photocomments] (
      	[commentid] [int] IDENTITY (1, 1) NOT NULL ,
      	[photoid] [int] NOT NULL ,
      	[username] [nvarchar] (20)  NOT NULL ,
      	[userid] [int] NOT NULL ,
      	[ip] [varchar] (100)  NOT NULL CONSTRAINT [DF_dnt_photocomments_ip] DEFAULT (''),
      	[postdatetime] [smalldatetime] NOT NULL ,
      	[content] [nvarchar] (2000)  NOT NULL 
      ) ON [PRIMARY]
      GO
      
      
      CREATE TABLE [dnt_photos] (
      	[photoid] [int] IDENTITY (1, 1) NOT NULL ,
      	[filename] [char] (255)  NOT NULL ,
      	[attachment] [nchar] (255)  NOT NULL ,
      	[filesize] [int] NOT NULL ,
      	[title] [nchar] (20)  NOT NULL ,
      	[description] [nchar] (200)  NOT NULL CONSTRAINT [DF_dnt_spacephoto_description] DEFAULT (''),
      	[postdate] [datetime] NOT NULL CONSTRAINT [DF_dnt_spacephoto_postdate] DEFAULT (getdate()),
      	[albumid] [int] NOT NULL ,
      	[userid] [int] NOT NULL ,
      	[username] [nchar] (20)  NOT NULL CONSTRAINT [DF_dnt_photos_username] DEFAULT (''),
      	[views] [int] NOT NULL CONSTRAINT [DF_dnt_photos_viewcount] DEFAULT (0),
      	[commentstatus] [tinyint] NOT NULL CONSTRAINT [DF_dnt_photos_commentstatus] DEFAULT (0),
      	[tagstatus] [tinyint] NOT NULL CONSTRAINT [DF_dnt_photos_tagstatus] DEFAULT (0),
      	[comments] [int] NOT NULL CONSTRAINT [DF_dnt_photos_comments] DEFAULT (0),
      	[isattachment] [int] NOT NULL CONSTRAINT [DF_dnt_photos_isattachment] DEFAULT (0),
      	[width] [int] NULL ,
      	[height] [int] NULL ,
      	CONSTRAINT [PK_dnt_spacephoto] PRIMARY KEY  CLUSTERED 
      	(
      		[photoid]
      	)  ON [PRIMARY] 
      ) ON [PRIMARY]
      GO
      
      CREATE TABLE [dnt_albums] (
      	[albumid] [int] IDENTITY (1, 1) NOT NULL ,
      	[albumcateid] [int] NOT NULL ,
      	[userid] [int] NOT NULL CONSTRAINT [DF_dnt_spacealbums_userid] DEFAULT ((-1)),
      	[username] [nchar] (20)  NOT NULL CONSTRAINT [DF_dnt_albums_username] DEFAULT (''),
      	[title] [nchar] (50)  NOT NULL CONSTRAINT [DF_dnt_spacealbums_title] DEFAULT (''),
      	[description] [nchar] (200)  NOT NULL CONSTRAINT [DF_dnt_spacealbums_description] DEFAULT (''),
      	[logo] [nchar] (255)  NOT NULL CONSTRAINT [DF_dnt_spacealbums_logo] DEFAULT (''),
      	[password] [nchar] (50)  NOT NULL CONSTRAINT [DF_dnt_spacealbums_password] DEFAULT (''),
      	[imgcount] [int] NOT NULL CONSTRAINT [DF_dnt_spacealbums_imgcount] DEFAULT (0),
      	[views] [int] NOT NULL CONSTRAINT [DF_dnt_spacealbums_views] DEFAULT (0),
      	[type] [int] NOT NULL CONSTRAINT [DF_dnt_spacealbums_type] DEFAULT (0),
      	[createdatetime] [datetime] NOT NULL CONSTRAINT [DF_dnt_spacealbums_createdatetime] DEFAULT (getdate()),
      	CONSTRAINT [PK_dnt_spacealbums] PRIMARY KEY  CLUSTERED 
      	(
      		[albumid]
      	)  ON [PRIMARY] 
      ) ON [PRIMARY]
      GO
      
      
      
       CREATE  UNIQUE  INDEX [userid] ON [dnt_spaceconfigs]([userid]) ON [PRIMARY]
      GO
      
      
       CREATE  INDEX [postiduid] ON [dnt_spaceposts]([postid], [uid]) ON [PRIMARY]
      GO
      
       CREATE  INDEX [postidcommentcount] ON [dnt_spaceposts]([postid], [commentcount]) ON [PRIMARY]
      GO
      
      
       CREATE  INDEX [albumid] ON [dnt_photos]([albumid]) ON [PRIMARY]
      GO
      
       CREATE  INDEX [photoiduserid] ON [dnt_photos]([photoid], [userid]) ON [PRIMARY]
      GO
      
       CREATE  INDEX [userid] ON [dnt_photos]([userid]) ON [PRIMARY]
      GO
      
      
      
       CREATE INDEX [list_albumcateid] ON [dnt_albums]([imgcount], [albumcateid], [albumid]) ON [PRIMARY]
      GO
      
       CREATE INDEX [list_userid] ON [dnt_albums]([type], [imgcount], [userid], [albumid]) ON [PRIMARY]
      

        然后就解決了!注意好DZ!NT版本~~我這是3.6.711

      posted @ 2012-07-11 11:29  dotNetDR_  閱讀(1389)  評論(2)    收藏  舉報
      主站蜘蛛池模板: 蜜桃一区二区三区在线看| 国产亚洲精品午夜福利| 亚洲香蕉伊综合在人在线| 四虎成人在线观看免费| 欧美色欧美亚洲另类二区| 91久久亚洲综合精品成人| 无码囯产精品一区二区免费| 国产精品无码v在线观看| 国产精品日本一区二区不卡视频 | 日日躁夜夜躁狠狠久久av | 天天综合色一区二区三区| 日韩少妇人妻vs中文字幕| 免费视频国产在线观看| 么公的好大好硬好深好爽视频| 亚洲一区久久蜜臀av| 蜜桃精品成人影片| 美女黄18以下禁止观看| 亚洲欧美综合中文| 宁海县| 一区二区三区精品自拍视频| 日韩有码中文字幕国产| 久久99久久99精品免视看国产成人| 性高湖久久久久久久久| 少妇被粗大的猛烈xx动态图| 日韩精品av一区二区三区| 亚洲日韩精品一区二区三区无码 | 90后极品粉嫩小泬20p| 久久精品99国产国产精| 国产明星精品无码AV换脸| 久热这里只有精品12| 99九九成人免费视频精品| 国产人妻高清国产拍精品| 日韩有码中文字幕一区二区| 人妻少妇精品无码专区二区 | 最新精品露脸国产在线| 无码人妻av免费一区二区三区| 婷婷六月色| 屁屁影院ccyy备用地址| 最新国产精品好看的精品| 午夜成人无码免费看网站| 精品亚洲欧美无人区乱码|