|
|
|
|
Peter DeBetta's blog about programming in SQL Server 2008, 2005, etc. using technologies such as T-SQL, .NET, CLR, C#, VB, Visual Studio, and SQL Server Management Studio.
As you can see from the multitude of archived posts,I have managed to migrate DasBlog posts (stored in XML files) to the CS 2.0 SQL Server data model. Let me outline the migration process.
- Import the DasBlog XML files. I used SQL Server 2005 Integration Services to do this work.
- The package uses a For Each Loop container to iterate through the XML files (using the filespec ????-??-??.dayentry.xml).
- In that loop container, I placed a Data Flow Task which contains an XML Source, a Data Conversion, and a SQL Server Destination. At first, the import failed, but a little tweaking of the XML Source task using the Advanced Editor to set the source content to a data type of Unicode text stream [DT_NTEXT].
- The final imported table had the following definition:
CREATE TABLE dbo.DasBlogEntries( Content nvarchar(max) NULL, Created datetime NULL, Modified datetime NULL, EntryId nvarchar(255) NULL, Description nvarchar(255) NULL, Title nvarchar(255) NULL, Categories nvarchar(255) NULL, IsPublic bit NULL, ShowOnFrontPage bit NULL, Crossposts nvarchar(255) NULL, Entries_Id numeric(20, 0) NULL)
- Clean the data. The next step was to create CS compatible data from the imported DasBlog data. I wrote a query that
SELECT identity(int, 10, 1) AS PostID, 0 AS ThreadID, 0 AS ParentID, 'Peter DeBetta' as PostAuthor, 2102 AS UserID, 5 AS SectionID, 1 as PostLevel, 1 AS [SortOrder], Title AS [Subject], Created AS [PostDate], 1 AS [IsApproved], 0 AS [IsLocked], 1 AS [IsIndexed], 1 AS [TotalViews], Content AS [Body], Content AS [FormattedBody], '69.15.196.116' AS [IPAddress], 1 AS [PostType], 0 AS [EmoticonID], 'enableAllOwnerNotification:S:0:5:EnableRatings:S:5:4:EnableTrackBacks:S:9:4: enableCrossPosting:S:13:5:CommentModerationType:S:18:4:feedbackNotificationType:S:22:1: SpamScore:S:23:1:EverPublished:S:24:4:' -- These 3 previous lines should all be one in the final code. -- The are broken into 3 for nicer web display AS [PropertyNames], 'FalseTrueTrueFalseNone00True' AS [PropertyValues], 1000 AS [SettingsID], 0 AS [AggViews], 3 AS [PostConfiguration], NULL AS [PostName], GetDate() AS [UserTime], 1 AS [ApplicationPostType], 0 AS [Points], 0 AS [RatingSum], 0 AS [TotalRatings], GetDate() AS [PointsUpdated] INTO TempPost FROM dasblogimport..DasBlogEntries
- Import the data into the CS database. I simply copied the data (the TempPost table)from my temporary database to the actual CS database.
- Post the posts. Using a cursor, step through each post in the TempPost table and execute the cs_Post_CreateUpdate stored procedure for each post. The code for this final step is a bit lengthier, so I will attach the script instead of include it here. Keep in mind that I have some commented code and some oddball code that was for my own use for testing and to exclude a couple of posts.
NOTE: I have been unable to attach the script and will post it as soon as I figure out what is going on...
Comment Notification
If you would like to receive an email when updates are made to this post, please register here
Subscribe to this post's comments using
About Peter DeBetta
Peter DeBetta is an independent consultant specializing in design, development, implementation, and deployment of Microsoft SQL Server, Microsoft SharePoint Server, and .NET solutions. Peter writes courseware, articles, and books – most notably the title Introducing SQL Server 2005 for Developers from Microsoft Press. Peter speaks at conferences around the world, including TechEd, SQL PASS Community Summit, DevTeach, SQL Connections, DevWeek, and VSLive!
Peter is a Microsoft MVP for SQL Server, an MCP, President of the North Texas SQL Server User Group, and a member of PASS.
When Peter isn’t working, you can find him singing and playing guitar (click here to hear an original song by Peter), taking pictures, or simply enjoying life with his wife, son, and new daughter.
|
|
|
|
|