User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T13:21:15Zhttp://stackoverflow.com/feeds/user/13484http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/306703/is-there-a-way-to-create-a-private-key-using-cryptoapi-and-seed-it0Is there a way to create a private key using CryptoAPI and seed it?mrbd2008-11-20T20:15:38Z2009-11-14T20:27:57Z
<p>We have a need to create a private key that is seeded from 2 plaintext keys. The 2 plaintext keys are maintained by different managers. This is to satisfy a dual-control key requirements that we have. We can combine the two keys into a single seed. However, from reading the Microsoft CryptoAPI documentation, all key generation are completely random with no way to provide a seed. Is this true? If yes, can you suggest an alternative solution to creating this key?</p>
<p>Note: The key will be stored in the key container and marked as non-exportable.</p>
http://stackoverflow.com/questions/691828/how-to-convert-a-datatable-dataset-into-a-objectdatasource1How to convert a DataTable/DataSet into a ObjectDataSourcemrbd2009-03-27T23:46:33Z2009-09-04T05:00:02Z
<p>I have a GridView that's tied to an ObjectDataSource. I have a method that returns a DataTable. How do I feed the DataTable to the ObjectDataSource so that the GridView is updated in code?</p>
<p>Example:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
MyClass obj = new MyClass(textbox.Text);
DataTable dt = obj.GetData();
ObjectDataSource1.DataSource = dt;
}
</code></pre>
<p>Yes, I know that the ODS does not have DataSource property. That's why I'm stuck.</p>
<p>If you're thinking, why not just assign the GridView the DataTable directly; the answer is: We like the auto-sorting capabilities offered by the ODS + GridView combo.</p>
<p>All searches on Google have returned are how to get a DT from an ODS. I can't find a single reference on how to get a DT into the ODS. It would seem that this is quite a common need since people coming from ASP.NET 1.1 will have a lot of code that generates DT and if they want to update the UI, they will want to get the DT into the ODS.</p>
http://stackoverflow.com/questions/232596/where-does-makecert-store-the-private-key-if-sv-is-not-specified5Where does makecert store the private key if -sv is not specified?mrbd2008-10-24T05:54:27Z2009-07-21T10:38:44Z
<p>Let say I run this command:</p>
<pre><code>makecert testcert.cer
</code></pre>
<p>Is a private key created? If so, where is it automatically stored in the system even though I did not tell makecert to install this certificate in any certificate store?</p>
http://stackoverflow.com/questions/287954/how-do-you-add-a-not-null-column-to-a-large-table-in-sql-server8How do you add a NOT NULL Column to a large table in SQL Server?mrbd2008-11-13T19:28:16Z2009-07-19T23:24:14Z
<p>To add a NOT NULL Column to a table with many records, a DEFAULT constraint needs to be applied. This constraint causes the entire ALTER TABLE command to take a long time to run if the table is very large. This is because:</p>
<p>Assumptions:</p>
<ol>
<li>The DEFAULT constraint modifies existing records. This means that the db needs to increase the size of each record, which causes it to shift records on full data-pages to other data-pages and that takes time.</li>
<li>The DEFAULT update executes as an atomic transaction. This means that the transaction log will need to be grown so that a roll-back can be executed if necessary.</li>
<li>The transaction log keeps track of the entire record. Therefore, even though only a single field is modified, the space needed by the log will be based on the size of the entire record multiplied by the # of existing records. This means that adding a column to a table with small records will be faster than adding a column to a table with large records even if the total # of records are the same for both tables.</li>
</ol>
<p>Possible solutions:</p>
<ol>
<li>Suck it up and wait for the process to complete. Just make sure to set the timeout period to be very long. The problem with this is that it may take hours or days to do depending on the # of records.</li>
<li>Add the column but allow NULL. Afterward, run an UPDATE query to set the DEFAULT value for existing rows. Do not do UPDATE *. Update batches of records at a time or you'll end up with the same problem as solution #1. The problem with this approach is that you end up with a column that allows NULL when you know that this is an unnecessary option. I believe that there are some best practice documents out there that says that you should not have columns that allow NULL unless it's necessary.</li>
<li>Create a new table with the same schema. Add the column to that schema. Transfer the data over from the original table. Drop the original table and rename the new table. I'm not certain how this is any better than #1.</li>
</ol>
<p>Question:</p>
<p>1) Are my assumptions correct?
2) Are these my only solutions? If so, which one is the best? If not, what else could I do?</p>
http://stackoverflow.com/questions/799362/how-do-you-read-cookies-for-the-current-browser-page-from-an-activex-control0How do you read cookies for the current browser page from an activex control?mrbd2009-04-28T18:54:36Z2009-04-28T18:54:36Z
<p>We've developed an ActiveX control to print documents. The control needs to download the document from our site. To do so, it needs the session cookie that's associated with the page that the control is loaded on. While we could pass the session cookie over to the control with javascript, this will not work with httponly cookies.</p>
http://stackoverflow.com/questions/645267/visualsvn-is-annoying-me-by-asking-me-to-enter-my-login-password-many-times0VisualSVN is annoying me by asking me to enter my login & password many timesmrbd2009-03-14T03:16:57Z2009-03-14T07:34:31Z
<p>My VisualVSN is hooked up to Active Directory. I'm using Tortoise as the client. When I was using SVNSERVE and the text files for authentication, it only asks me for the login/password once. Now it's asking me it many times when I connect. To get around that, I would have to check the "save authentication" information checkbox. I could do that but I don't want my password stored in plaintext somewhere on my computer. Isn't there a way for me to get it to recognize the fact that I'm already logged in to my PC as a valid domain user and use my session information to authenticate me?</p>
http://stackoverflow.com/questions/645237/as-a-programmer-what-single-discovery-has-given-you-the-greatest-boost-in-product/645261#64526144Answer by mrbd for As a programmer what single discovery has given you the greatest boost in productivity?mrbd2009-03-14T03:12:33Z2009-03-14T03:12:33Z<p>Flow. Try to maximize the amount of time that you can spend in Flow. That means: Close your web browser (the one opened to cnn.com), don't listen to distracting music, close your mailbox, close your IM, etc. You get the idea. If you wanted to be very productive in college, you shut out the entire world so that you can focus. There's no reason why work-life is any different.</p>
<p>People who are least productive tend to lose a lot of time to distraction, entertainment, etc. Look at your co-workers. You'll see that I'm right.</p>
http://stackoverflow.com/questions/306684/msmq-throws-away-messages-if-the-destination-queue-does-not-exist1MSMQ throws away messages if the destination queue does not exist?mrbd2008-11-20T20:10:32Z2009-02-13T16:23:53Z
<p>I've encountered a weird situation:</p>
<p>Messages are sent from ServerA to ServerB. It goes into ServerA outgoing queue and then sent to ServerB's queue.</p>
<p>ServerB crashed. We had to reformat. When we brought it up, we forgot to install the MSMQ Service.</p>
<p>Messages begin pilling up in ServerA's outgoing queue until the program that sends messages throws an insufficient resources exception.</p>
<p>We notice the the error and installed the MSMQ Service onto ServerB. ServerA begins to immediately emptying its outgoing queue.</p>
<p>When we started the program to process messages on ServerB, it couldn't connect. We learned that we forgot to create the queue on ServerB. However, by this time, it was too late. All 900K messages that sat in ServerA's queue has been sent to ServerB. From what I can tell, ServerB threw them away because it was not configured with the destination queue. I already know that the correct solution is to STOP the queue on ServerA until after we've completely setup ServerB.</p>
<p>The question is: Is this really the true behavior that we should expect from MSMQ? I would've thought that a more defensive design approach would've been for ServerB to reject the messages instead of taking it and throwing them away.</p>
http://stackoverflow.com/questions/291336/how-do-you-reduce-the-size-of-a-folders-index-file-in-ntfs1How do you reduce the size of a folder's index file in NTFS?mrbd2008-11-14T20:41:49Z2008-11-15T10:43:23Z
<p>I have a folder in NTFS that contains tens of thousands of files. I've deleted all files in that folder, save 1. I ran contig.exe to defragment that folder so now it's in 1 fragment only. However, the size of that folder is still 8MB in size. This implies that there's a lot of gap in the index. Why is that? If I delete that one file, the size of the index automatically goes to zero. My guess is because it gets collapsed into the MFT. Is there any way to get NTFS to truly defragment the index file by defragmenting it based on the content of the file? Any API that you're aware of? Contig.exe only defragment the physical file.</p>
http://stackoverflow.com/questions/197162/ntfs-performance-and-large-volumes-of-files-and-directories/291292#29129214Answer by mrbd for NTFS performance and large volumes of files and directoriesmrbd2008-11-14T20:27:10Z2008-11-14T23:23:42Z<p>Here's some advice from someone with an environment where we have folders containing tens of millions of files.</p>
<ol>
<li>A folder stores the index information (links to child files & child folder) in an index file. This file will get very large when you have a lot of children. Note that it doesn't distinguish between a child that's a folder and a child that's a file. The only difference really is the content of that child is either the child's folder index or the child's file data. Note: I am simplifying this somewhat but this gets the point across.</li>
<li>The index file will get fragmented. When it gets too fragmented, you will be unable to add files to that folder. This is because there is a limit on the # of fragments that's allowed. It's by design. I've confirmed it with Microsoft in a support incident call. So although the theorical limit is several billions, good luck when you start hitting tens of million of files.</li>
<li>It's not all bad however. You can use the tool: contig.exe to defragment this index. It will not reduce the size of the index (which can reach up to several Gigs for tens of million of files) but you can reduce the # of fragments. Note: The Disk Defragment tool will NOT defrag the folder's index. It will defrag file data. Only the contig.exe tool will defrag the index. FYI: You can also use that to defrag an individual file's data.</li>
<li>If you DO defrag, don't wait until you hit the max # of fragment limit. I have a folder where I cannot defrag because I've waited until it's too late. My next test is to try to move some files out of that folder into another folder to see if I could defrag it then. If this fails, then what I would have to do is 1) create a new folder. 2) move a batch of files to the new folder. 3) defrag the new folder. repeat #2 & #3 until this is done and then 4) remove the old folder and rename the new folder to match the old.</li>
</ol>
<p>To answer your question more directly: If you're looking at 100K entries, no worries. Go knock yourself out. If you're looking at tens of millions of entries, then either:</p>
<p>a) Make plans to sub-divide them into sub-folders (e.g., lets say you have 100M files. It's better to store them in 1000 folders so that you only have 100,000 files per folder than to store them into 1 big folder. This will create 1000 folder indices instead of a single big one that's more likely to hit the max # of fragments limit or</p>
<p>b) Make plans to run contig.exe on a regular basis to keep your big folder's index defragmented.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/75926#759264Answer by mrbd for Diagnosing Deadlocks in SQL Server 2005mrbd2008-09-16T19:19:01Z2008-09-16T19:19:01Z<p>The OP question was to ask why this problem occured. This post hopes to answer that while leaving possible solutions to be worked out by others.</p>
<p>This is probably an index related issue. For example, lets say the table Posts has a non-clustered index X which contains the ParentID and one (or more) of the field(s) being updated (AnswerCount, LastActivityDate, LastActivityUserId).</p>
<p>A deadlock would occur if the SELECT cmd does a shared-read lock on index X to search by the ParentId and then needs to do a shared-read lock on the clustered index to get the remaining columns while the UPDATE cmd does a write-exclusive lock on the clustered index and need to get a write-exclusive lock on index X to update it.</p>
<p>You now have a situation where A locked X and is trying to get Y whereas B locked Y and is trying to get X.</p>
<p>Of course, we'll need the OP to update his posting with more information regarding what indexes are in play to confirm if this is actually the cause.</p>
http://stackoverflow.com/questions/682326/whats-the-first-program-you-wanted-to-write-but-couldnt-finish/682382#682382Comment by on Whats the first program you WANTED to write but couldn't finish?2009-04-01T22:27:36Z2009-04-01T22:27:36ZYou certainly made better use of your time than many other kids. No shame here on the quality of your code.http://stackoverflow.com/questions/682326/whats-the-first-program-you-wanted-to-write-but-couldnt-finish/682350#682350Comment by on Whats the first program you WANTED to write but couldn't finish?2009-04-01T22:26:24Z2009-04-01T22:26:24ZThe command line encryption program would be quite trivial if you use CryptoAPI. ;)