From 37ef7f7dd007e2474be102c480fa96021885846c Mon Sep 17 00:00:00 2001 From: Andrew Brobston Date: Thu, 16 Nov 2017 10:41:14 -0600 Subject: [PATCH] Update Help/About to point to GitHub link Addresses #9. --- soddi/Gui/FrmAbout.Designer.cs | 8 ++- soddi/Gui/FrmAbout.resx | 4 +- soddi/README.txt | 110 +-------------------------------- 3 files changed, 9 insertions(+), 113 deletions(-) diff --git a/soddi/Gui/FrmAbout.Designer.cs b/soddi/Gui/FrmAbout.Designer.cs index e56be59..ad27733 100644 --- a/soddi/Gui/FrmAbout.Designer.cs +++ b/soddi/Gui/FrmAbout.Designer.cs @@ -36,19 +36,21 @@ private void InitializeComponent() this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.richTextBox1.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.richTextBox1.Location = new System.Drawing.Point(0, 0); + this.richTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.ReadOnly = true; - this.richTextBox1.Size = new System.Drawing.Size(792, 573); + this.richTextBox1.Size = new System.Drawing.Size(1188, 293); this.richTextBox1.TabIndex = 0; this.richTextBox1.Text = ""; this.richTextBox1.WordWrap = false; // // FrmAbout // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(792, 573); + this.ClientSize = new System.Drawing.Size(1188, 293); this.Controls.Add(this.richTextBox1); + this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.Name = "FrmAbout"; this.Text = "About SODDI"; this.Load += new System.EventHandler(this.FrmAbout_Load); diff --git a/soddi/Gui/FrmAbout.resx b/soddi/Gui/FrmAbout.resx index 19dc0dd..d58980a 100644 --- a/soddi/Gui/FrmAbout.resx +++ b/soddi/Gui/FrmAbout.resx @@ -112,9 +112,9 @@ 2.0 - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 \ No newline at end of file diff --git a/soddi/README.txt b/soddi/README.txt index 81b0a09..18580b0 100644 --- a/soddi/README.txt +++ b/soddi/README.txt @@ -1,109 +1,3 @@ - -StackOverflow Data Dump Import v.1.1 +soddi: Stack Overflow Data Dump Importer. - Portions of code (c) 2014 Jeremiah Peschka - http://github.com/peschkaj/soddi - binaries available at: https://github.com/peschkaj/soddi/releases - - StackOverflow data dump available at: https://archive.org/details/stackexchange - - - Original code (c) 2010 Sky Sanders - licensed under MIT/GPL - see license.txt - - ClickOnce Installer: http://skysanders.net/tools/se/soddi/publish.htm - - info:http://skysanders.net/tools/se - msi :http://skysanders.net/files/soddi.11.msi - bin :http://skysanders.net/files/soddi.11.zip - src :http://bitbucket.org/bitpusher/soddi/ - - - -SODDI is a .Net 3.5 sp1 executable written in C# that quickly and cleanly imports StackOverflow Data Dump XML files into -MS Sql Server 2005/08/12 (please stop actively using SQL Server 2005). - -SODDI can be run as a command line utility or, when invoked with no arguments or GUI argument, will -present a Windows Form interface. - - -USAGE: - -soddi.exe source:"" target:"" [batch:5000] [split] [indices] [fulltext] [identity] [[meta] [so] [su] [sf]] [gui] - - -SOURCE The directory containing the individual site directories. - NOTE: do not include trailing slash in quoted path as the arg - parser will interpret it as an escaped quote and puke. - -TARGET A valid ADO.Net connection string, including the provider invariant - name. - - Platform specific connection string details: - - Sql Server: Database must exist. Data will be loaded into tables segregated by - schema named as the site data being imported. e.g. so.Users, meta.Users. - The tables are dropped before import. - - The target database/datafile/schema names can be modified by explicitely specifying - sites to import and appending the desired schema as a parameter value or editing - the Sites list item schema in the GUI. - - --- OPTIONAL ARGUMENTS - -SPLIT Normalize post tags by splitting the concatenated Posts.Tags field into individual - rows in a separate PostTags table. - -INDICES Enables useful indexes on each table. - -FULLTEXT Enables a full text index on Posts.Body and Posts.Title - SqlServer only. - -IDENTITY Sets ID columns as identity fields in the created database. Will cause slower import. - -BATCH Number of rows inserted in each transaction. Default 5000. - -GUI Presents a Windows Forms interface. If SODDI is invoked with arguments and GUI, the UI - will be populated with the supplied arguments. - - The console window will remain open to recieve all debug and error output. - -META|SO|SU|SF Specifies which sites to import. If none are specified, all site directories found in - SOURCE will be imported. - - To specify a different target name simply treat the site name as a parameter. - - e.g. - - Sql Server - SO:StackOverflowData will load the data from the XXXXX SO directory - into the database specified in the connection string and the schema 'StackOverflowData' - - In GUI mode you may edit the schema item in the Sites list. - -Options are not case sensitive. - -Example command lines. - -GUI Mode: - soddi - -Sql Server - all sites: - soddi source:"F:\Export-030110" target:"data source=(local);initial catalog=SOData;integrated security=true;Provider=System.Data.SqlClient" - -Sql Server - StackOverflow data only (SO): - soddi source:"F:\Export-030110" target:"data source=(local);initial catalog=SOData;integrated security=true;Provider=System.Data.SqlClient" so - -Sql Server - StackOverflow data only into schema dbo: - soddi source:"F:\Export-030110" target:"data source=(local);initial catalog=SOData;integrated security=true;Provider=System.Data.SqlClient" so:dbo - - -Sql Server - StackOverflow data only, split tags and add indices: - soddi source:"F:\Export-030110" target:"data source=(local);initial catalog=SOData;integrated security=true;Provider=System.Data.SqlClient" so split indices - - -The latest data dump can be found at -http://blog.stackoverflow.com/category/cc-wiki-dump/ - -04/01/2010 - Sky Sanders - -04/09/2010 - Explicitly set platform to x86 to allow same binaries to run on x64. \ No newline at end of file +https://github.com/BrentOzarULTD/soddi \ No newline at end of file