Dave,
Unfortunately, I don't see anything wrong with the attachment. The txt attachment is strictly for Importing into Open Web Studio, following the importing video instructions. This is to get the module configuration into Open Web Studio. After importing, there will be a comment in the list of actions which has the actual SQL to copy and paste to the DNN Host>SQL application or into your SQL Management Studio.
AFTER importing this text file into Open Web Studio, you will then be able to use this configuration in an OWS module on a DNN page. So, after importing this configuration, in the OWS Administration page, under the Actions tab, you will see the first item is a Comment. It will be green.
http://screencast.com/t/YcNPBezez You edit this comment, then copy and paste it to the SQL window to be run.
Hope that helps.......
Here is the actual SQL code that is contained in that comment action:
/**** Change This Line To The Database For Your KB Application ****/
USE [DNNCreative]
GO
/****** Object: Table [dbo].[KBArticle] Script Date: 03/25/2009 11:12:33 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[KBArticle](
[KBArticleId] [int] IDENTITY(1,1) NOT NULL,
[ArticleNumber] AS (case when len([KBArticleId])=(1) then 'KB-00000'+CONVERT([varchar](10),[KBArticleId],(0)) when len([KBArticleId])=(2) then 'KB-0000'+CONVERT([varchar](10),[KBArticleId],(0)) when len([KBArticleId])=(3) then 'KB-000'+CONVERT([varchar](10),[KBArticleId],(0)) when len([KBArticleId])=(4) then 'KB-00'+CONVERT([varchar](10),[KBArticleId],(0)) when len([KBArticleId])=(5) then 'KB-0'+CONVERT([varchar](10),[KBArticleId],(0)) else CONVERT([varchar](10),[KBArticleId],(0)) end),
[Title] [varchar](150) NULL,
[Summary] [varchar](max) NULL,
[Symptoms] [varchar](max) NULL,
[Resolution] [varchar](max) NULL,
[Status] [varchar](max) NULL,
[PublishDate] [datetime] NULL,
[ArticleStatus] [varchar](20) NULL,
[EditDate] [datetime] NULL,
[CreateDate] [datetime] NULL,
[EditUserId] [int] NULL,
[CreateUserId] [int] NULL,
CONSTRAINT [PK_KBArticle] PRIMARY KEY CLUSTERED
(
[KBArticleId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
Insert Into KBArticle(Title, Summary, Status, PublishDate, ArticleStatus,
EditDate, CreateDate, EditUserId, CreateUserId)
Values('My First Article','Hello World!','Fixed',getdate(), 'Published',
getdate(), getdate(), 1,1)