AgentConundrum
|
Registered User
|
Three years out of school, my career has consisted of migrating and supporting a legacy, largely COBOL-based system.
I still putter around with personal projects in "real" languages and have begun a side project, slowly, to teach myself more of the ins and outs of development from both a theoretical and practical perspective. I've been documenting my progress, on a very sporadic basis, on my blog located at http://www.appscanadian.ca/ - Check it out and send any feedback you like; I appreciate all comments! |
|
Sep 30 |
comment |
MySQL Query help A quick way to check this would be to change the queries to use LIKE; i.e. "WHERE column_1 LIKE "PENDING%" OR column_2 = "PENDING%" ...". If that works, it's clear that you've got space issues. |
|
Sep 30 |
comment |
What is the fastest way to load an XML file into MySQL using C#? The errors were exactly what I thought they would be. I erroneously assumed that there would be no double-quotes in the Body field since that would close the xml attribute in the original file, and thus render the xml invalid. What I failed to consider was that the XmlReader I was using was decoding entities as it went, so there were double quotes present, which was screwing up the CSV file. I escaped all slashes, then additionally escaped the quotes, and everything was great. 3m34s to create the file, then 2m43s to do the MySQL load - total of 6m17s to load the PostTypeId and Body fields! |
|
Sep 30 |
comment |
What is the fastest way to load an XML file into MySQL using C#? Hi Shiraz, I just finally got around to trying your suggestion regarding creating temp files and using LOAD DATA to process them. It took 2m22 to create the file and 2m35s to load the file into the database. There were a number of warnings I need to look into, but I'm sure these will be fixed with some minor tweaks. 5 minutes to load 1.2 million records is well beyond my expectations. Enjoy your bounty, it was well earned! |
|
Sep 29 |
comment |
What is the fastest way to load an XML file into MySQL using C#? I don't need MySQL; it's simply what I already had installed. This is, after all, primarily a personal/portfolio project. Having never worked with MSSQL, it'll be a secondary feature once the main project is done. I'll definitely be using SqlBulkCopy when the time comes. The nearest thing for MySQL seems to be a cover for the LOAD DATA syntax. As for indexes, etc. the table is bare since records will only be added once. I'll check into your 'big initial sizes' suggestion. Thanks for the ideas. |
|
Sep 27 |
comment |
Want to create a facebook likenews and updates … You may want to play with my suggestions a fair bit, since (a) I'm quite tired, and (b) it's been a while since I worked closely with referential integrity issues, or really database design in any serious capacity. |
|
Sep 27 |
comment |
Want to create a facebook likenews and updates … I think instead of having two separate fields for detail lookup, as I originally posted, you might want to create prefixes for detail table ids, and use that as your reference in the NewsItems table. i.e. in an Images table you can have ImageId as your PK, and possibly another field called ImageFK (foreign key) which is your ImageId with a prefix (i.e. ImageId = 1701, ImageFK = im1701). You'll use the ImageFK was your foreign key to the NewsItems table, and use referential integrity to delete the NewsItems record when the corresponding Images table record is deleted. |
|
Sep 27 |
comment |
Want to create a facebook likenews and updates … Are we talking about soft or hard deletes here? Soft deletes are easy - you can add an IsActive or IsDeleted field to each of the tables holding specific data. When you lookup recent NewsItems, you'll also check this field in the specific detail table you want, and only display items which haven't been deleted. For hard deletes, you can simply add logic to delete the specific NewsItems record when you delete the corresponding detail record. |
|
Sep 27 |
revised |
Want to create a facebook likenews and updates … added Body separation idea |
|
Sep 27 |
answered | Want to create a facebook likenews and updates … |
|
Sep 26 |
revised |
css indentation edited tags |
|
Sep 26 |
answered | C# - Are objects immediately destroyed when going out of scope? |
|
Sep 26 |
accepted | Login Forms in C# |
|
Sep 26 |
comment |
What is the fastest way to load an XML file into MySQL using C#? This is partially why I asked this question, actually. I was disappointed with the 10 hour load time, but somewhat shrugged it off as "well, it is a lot of data.. besides, i'll have plenty of time to speed it up later" but then I saw a post on Meta complaining about an 8 MINUTE load time to MSSQL and I got pissed. The guy put his code on github and this was what he was using. Well, SqlBulkCopy, not the XML version you speak of. Thanks for the info, I'll definitely keep it in mind when I start playing with other databases (this is a toy project of mine, for learning/portfolio purposes). Thanks! |
|
Sep 26 |
answered | Login Forms in C# |
|
Sep 25 |
comment |
What is the fastest way to load an XML file into MySQL using C#? Honestly, Mark, I was under the mistaken impression SQLite was meant for smaller databases. I just took a look at the site and while I did notice a comment that it was not for "Very large datasets," I re-read the comment for that section and noticed just how high the limit really is. Perhaps I'll take a look at it as an alternate database. I've already got plans to allow MSSQL to be used instead. |
|
Sep 25 |
comment |
Window positioning in C#? glad to help. happy coding! |
|
Sep 25 |
comment |
Window positioning in C#? If you want the window in the middle of your screen, that's actually a lot easier, simply set your forms StartPosition property to CenterScreen. I don't think this works if your application is already running, but if it is, you can tweak my answer to set the left and top to be 1/2 of the screen height/width minute 1/2 of your forms height/width. Play around with the code a bit to get a feel for what it does, then you'll be able to modify it to suit your needs in the future. |
|
Sep 25 |
revised |
Window positioning in C#? deleted 117 characters in body |
|
Sep 25 |
answered | Window positioning in C#? |
|
Sep 25 |
comment |
What is the fastest way to load an XML file into MySQL using C#? It's actually a lot faster to read the XML file than you think. I'm using an XmlReader to read the file, and I quickly checked how long it takes to read the file and prepare the queries. By reading only PostTypeId and Body (the only two fields I'm playing with) into Strings (to ensure they are read, since I'm not sure when parameterized queries pull their data), and commenting out the cmd.ExecuteNonQuery() statement, the process took 1 minute, 12 seconds. The bottleneck is very much in the database portion, not the data read. I'll look into recreating LOAD DATA-readable files, thanks. |
|
Sep 24 |
comment |
Stackoverflow data in MySQL VolkerK: How long does it take for your code to write all the files to the database? I ask because I'm writing something in C# using the MySQL Connector/Net and System.Xml.XmlReader as you mention at the bottom of your post, but this takes hours to run (about 10 hours writing one statement at a time, and somewhere between 3 and 4 i think when writing 500 per query - e.g. Insert into table values (rec1), (rec2), (rec3). ). I'd like this to be faster, but don't have a baseline for normal times. I've got a question on this site regarding fast ways to do this, but haven't gotten much of a response |
|
Sep 23 |
comment |
What is the fastest way to load an XML file into MySQL using C#? The problem persists even if we map the files 1-to-1 with the tables. The posts.xml file in the data dump is 1.19 GB for September, so I'd have to break at least that file apart. I'm also just not comfortable demanding a potential user to modify their MySQL installation to allow the 1GB packet. I'd like to keep this as vanilla as possible so as not to cause issues. e.g. "give me your server address and credentials, and I'll do the rest... oh, and would you mind making sure everything is transmitted in utf8 since that's not nearly as default as the docs say? thanks.." |
|
Sep 23 |
comment |
What are greenfield and brownfield applications? "Fortunately Google was not down for me so I was able to find the following definitions within mere seconds." - Exactly why is this statement needed? I can sort of understand your being annoyed by a 'simple' question and adding this out of frustration or something, but why add the statement back after it's been removed? |
|
Sep 23 |
revised |
What is the “right” way to bring a Windows Forms Application to the foreground? edited tags |
|
Sep 22 |
answered | Auto reconnect to MySql after connection lost |
|
Sep 21 |
revised |
What is the fastest way to load an XML file into MySQL using C#? added a section to explain issues with suggestions to date, including response to the stored proc idea |
|
Sep 21 |
comment |
What is the fastest way to load an XML file into MySQL using C#? I tried, but I've been running into issues getting it to work properly. I think the real deal breaker of it is the max_allowed_packet, which is set to 1 MB by default. Since it's reading the whole XML file, which is about 1.2 GB for the posts.xml file, I think this is unusable. |
|
Sep 21 |
revised |
What is the fastest way to load an XML file into MySQL using C#? typo |
|
Sep 21 |
revised |
What is the fastest way to load an XML file into MySQL using C#? added existing, inefficient solution |
|
Sep 21 |
asked | What is the fastest way to load an XML file into MySQL using C#? |
|
Sep 16 |
revised |
Problems using MySQL FULLTEXT indexing for programming-related data (SO Data Dump) clarifications, additional info |
|
Sep 16 |
comment |
Problems using MySQL FULLTEXT indexing for programming-related data (SO Data Dump) Just to be sure I've got this straight. Sphinx is its own indexing engine, which works with either MySQL or PostgreSQL. In my case, I'd want to use SphinxSE so that I can use it directly through the MySQL namespaces in C#. This is likely what I'll have to do, and I'll accept this answer then I suppose, but part of this project was to keep things relatively light. For instance, I was going to do this as a desktop/WinForms C# app, rather then needing to install Apache and PHP since it's strictly offline (also I don't want to install those two since I have my own site to use for that sort of dev) |
|
Sep 15 |
asked | Problems using MySQL FULLTEXT indexing for programming-related data (SO Data Dump) |
|
Sep 8 |
revised |
Rectangular BackColor of selection in RichTextBox added 4 characters in body; edited tags |
|
Sep 8 |
asked | Rectangular BackColor of selection in RichTextBox |
|
Sep 4 |
awarded | ● Fanatic |
|
Sep 2 |
comment |
Roll back or revert entire svn repository to an older revision Just wanted to say thanks for this. I'm learning svn and screwed up moving some directories around (turned out I had done it the other way for a reason!) and I wanted it gone. Your question saved me a lot of trouble. |
|
Aug 23 |
revised |
Are there any good podcasts aimed at new/inexperienced programmers? CW |
|
Aug 18 |
awarded | ● Yearling |
|
Aug 16 |
comment |
Should you start coding whilst young? It's not really Star Wars, it's just Episode 1. |
|
Aug 3 |
comment |
How did you get your first programming job? Can I ask you what your background is? I was recently terminated and am looking to switch paradigms a bit, and have been looking to apply to a small shop in my city. I'm not sure if I'm qualified, or if they even have an opening, so I've been hesitant to apply. |
|
Jul 31 |
comment |
What do you rename Form1 to? @Luke - You could argue, though likely unsuccessfully, that simply having a prefix at all satisfies your 'kind of' requirement. Variables with a prefix are a 'kind of' UI element, and those that don't aren't. Out of curiosity, do you make any distinction at all between your UI names and your method variables? You need some way to validate your input and both the local variable and the UI variable could reasonably be named, for example, 'username' so how do you distinguish UI variables (which generally shouldn't be modified) and 'temp' variables which are used for validation, etc.? |
|
Jul 31 |
comment |
What do you rename Form1 to? @Luke - I agree in the general sense (i.e. strString irks me), but I do find that using this for UI elements (txtTextbox) can be useful, in moderation. That said, I don't feel the need to use it for form names. |
|
Jul 31 |
answered | What do you rename Form1 to? |
|
Jul 29 |
comment |
Calculating Distance Between 2 Cities Your JoS link is out of date (clicking the link takes you to an error page now). I believe this is the right link now: joelonsoftware.com/items/2006/… |
|
Jul 25 |
comment |
Which language(s) do you most often use at your job? @eyelidlessness: So you downvoted people for providing an answer specifically mentioned in the question: "I think if you mainly use specific library (e.g. jquery) that's probably great as it's own answer." |
|
Jul 25 |
answered | What are some class names that would signal a need for refactoring? |
|
Jul 25 |
revised |
Which language(s) do you most often use at your job? note to downvoters, suggestions to improve situation rather than blanket downvoting |
|
Jul 25 |
comment |
Which language(s) do you most often use at your job? Not exactly the intent of the question. I'm largely focusing on C# and Java (more on the latter right now), and I meant that part of the question as informative filler only. The question was supposed to be "what do you actually use at your place of employment." Thanks for the info, regardless. |
|
Jul 25 |
comment |
Which language(s) do you most often use at your job? @Wouter - This did get pretty far from my intent rather quickly. I doubt it'll resolve itself now though (esp. since this has one close vote already - "not a real question"). Thanks for the support. |
