User Dr8k - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T18:33:49Zhttp://stackoverflow.com/feeds/user/6014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/371079/jquery-ui-dialog-and-dopostback/467719#4677190Answer by Dr8k for jquery UI Dialog and __DoPostbackDr8k2009-01-22T01:01:08Z2009-01-22T01:01:08Z<p>I can't answer the speific question. However, I highly recommend changing your code to use asp.net to insert the object id like vitorsilva did - i.e. <%=TEST.ClientID %> where TEST is the ASP.Net ID of your textbox or whatever. The actual object id sent to the browser (i.e. ctl00$phContent$ctl00$LetterLocation$pupNewReceiver in your example) can change if you change the page structure. By using the ClientID method you will always get the correct ID rendered.</p>
http://stackoverflow.com/questions/80271/using-ssis-to-refresh-a-training-database-from-a-production-database1Using SSIS to refresh a training database from a production databaseDr8k2008-09-17T05:24:00Z2008-12-17T17:22:23Z
<p>Hey All,</p>
<p>I have a particular system on out network where we need to maintain a training installation. The system uses SQL Server 2000 as its database engine and I need to set up a system for refreshing the data in the training database with the data from the production database on a regular basis.</p>
<p>I want to use SSIS as we have SQL 2005 servers I can run the process from. I have a fair bit of SQL experience, but not much with SSIS. I have been trying to do this with the "Transfer Database Task" but haven't been having much luck, as it always throws an error. </p>
<p>If we ignore the use of configuration items etc and pretend all the database names and so forth are hard-coded, I have the following:
A Single SSIS "Transfer Database Task" with the following properties:</p>
<ul>
<li>Destination Overwrite: True </li>
<li>Action: Copy </li>
<li>Method: DatabaseOnline</li>
</ul>
<p>The error I receive is:</p>
<blockquote>
<p>Error: The Execute method on the task returned error code 0x80131500 (ERROR : errorCode=-1073548784 description=Executing the query "EXEC dbo.sp_addrole @rolename = N'XXXXX' " failed with the following error: "The role 'XXXXX' already exists in the current database.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. helpFile= helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC}). The Execute method must succeed, and indicate the result using an "out" parameter. </p>
</blockquote>
<p>I'm sure there is something obvious going on here, but surely if the task is set to overwrite the pre-existance of the role shouldn't matter? Does anyone know what I need to do to get this working?</p>
http://stackoverflow.com/questions/219986/c-class-from-a-sql-database-table/220045#2200453Answer by Dr8k for C# class from a SQL database table.Dr8k2008-10-20T21:39:30Z2008-10-20T21:39:30Z<p>You definitely shouldn't be creating a class for every stored procedure. There are a number of approaches you can take to handling your database interactions. You should have a good look at the major frameworks out there and decide which one best suits you. The Castle Project solution is great, and relies on nHibernate (<a href="http://www.hibernate.org/343.html" rel="nofollow">nHibernate</a>). LINQ is a similar offering by Mircrosoft (<a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ Project</a>). Both of these solutions are full ORM frameworks (Object Relational Mapping) and will generate dynamic SQL to persist your objects in the database. Each also has it's own quirks and likes you to structure your objects in particular ways. If you don't want to manage the SQL your system uses, I would definitely recommend one of these approaches.</p>
<p>I come from a database background, and prefer a bit more control over my SQL. In particular I like to have my interractions handled by stored procedures. I find this enables me to control both the SQL better for optimisation, but helps me manage database security in a more friendly manner. To accommodate this approach, I recommend something like iBatis (<a href="http://ibatis.apache.org/" rel="nofollow">iBatis</a>). iBatis isn't a full ORM, but rather a simple SQL mapper. The downside to my approach is that you need to write a lot more code (SQL), but I don't mind the trade-off.</p>
http://stackoverflow.com/questions/203442/sql-dts-database-copy-fails1SQL DTS Database Copy FailsDr8k2008-10-15T01:30:57Z2008-10-15T04:10:09Z
<p>Hey All, I have been working on this problem for a while and the usual google searches are not helping :(</p>
<p>I have a production database in SQL 2000. I want to copy it over the top of a training database to refresh it. I want this to be something that is scheduled to happen once a week to keep the training database up-to-date.</p>
<p>I have a DTS job created for doing this. Within that DTS job I have a single "Copy SQL Server Objects" task. That task is set up to:</p>
<ul>
<li>Create all copied objects
<ul>
<li>Drop destination objects first</li>
</ul></li>
<li>Copy data
<ul>
<li>Replace existing data</li>
</ul></li>
<li>Copy indexes, triggers, primary and foreign keys</li>
<li>Copy all user tables, views, functions and stored procedures.</li>
</ul>
<p>When I run this DTS package (in pre-production for testing of course) it gets to 99% done and throws the following error:</p>
<pre><code>Step Error Source: Microsoft SQL-DMO (ODBC SQLState: 42S02)
Step Error Description:[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'dbo.vwEstAssetStationAddress'.
Step Error code: 800400D0
Step Error Help File:SQLDMO80.hlp
Step Error Help Context ID:1131
</code></pre>
<p>My searches on the net didn't provide much help. There are reports of these errors getting hit, but none seem to match my circumstances. One suggestion I found was the the sysdepends table had become corrupted, making the DTS job run its scripts in the wrong order. Howeever, I ran the following script to correct that table and it still throws the same error:</p>
<pre><code>USE master
GO
ALTER DATABASE [DATABASE NAME]
SET SINGLE_USER
GO
USE [DATABASE NAME]
GO
DBCC CHECKTABLE('sysdepends',REPAIR_REBUILD )
GO
USE master
GO
ALTER DATABASE [DATABASE NAME]
SET MULTI_USER
GO
</code></pre>
<p>I have also seen that having different object owners can cause this error. But I have confirmed that the objects are all owned by the dbo user in this case.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/203442/sql-dts-database-copy-fails/203697#2036972Answer by Dr8k for SQL DTS Database Copy FailsDr8k2008-10-15T04:10:09Z2008-10-15T04:10:09Z<p>I feel stupid, but am posting the answer I just found for prosperity (and so all you helpful fellows can stop stressing on my behalf.</p>
<p>Even though I had selected all the user tables, views, stored procedures and user defined functions to copy, I hadn't selected "Include all dependant objects". I had assumed that if you selected two objects to copy, and one was dependant on the other, SQL would always do them in the correct order. Aparrently not. Selecting this little check box made all the difference.</p>
<p>Thanks again to those who helped with suggestions :)</p>
http://stackoverflow.com/questions/203442/sql-dts-database-copy-fails/203668#2036680Answer by Dr8k for SQL DTS Database Copy FailsDr8k2008-10-15T03:47:00Z2008-10-15T03:47:00Z<p>I've run another test to try and isolate this. I removed the mentioned view from the destination database totally, then ran the DTS again. It failed with the same error. However, the view that aparrently is an invalid object name was recreated successfully. It seems that the error is coming from something trying to reference that view, but it doesn't actually stop the script when it hits that error.</p>
<p>Cade - I will check out that link. I will also try and establish what is referencing the view and breaking.</p>
http://stackoverflow.com/questions/203442/sql-dts-database-copy-fails/203570#2035700Answer by Dr8k for SQL DTS Database Copy FailsDr8k2008-10-15T02:52:07Z2008-10-15T02:52:07Z<p>I was trying to avoid doing it via backup / restore. There are some users of the database that are SQL Server accounts (not Active Directory). This becomes a pain in the but if you need to do it from one server to another as you have to drop those users and recreate them.</p>
http://stackoverflow.com/questions/203442/sql-dts-database-copy-fails/203503#2035030Answer by Dr8k for SQL DTS Database Copy FailsDr8k2008-10-15T02:12:57Z2008-10-15T02:12:57Z<p>Thanks for the response hectorsosajr.</p>
<p>the object aparrently causing the error (dbo.vwEstAssetStationAddress) is a view that references 2 underlying tables. I have tested querying the view, as well as running the SELECT statement that defines it, on both the source and destination databases and it works fine.</p>
<p>The database object copy task in DTS doesn't allow you to specify the order it transfers things in. As far as I understand it, it uses the sysdepends table to determine the requisite order of events.</p>
http://stackoverflow.com/questions/196512/is-there-a-sorted-collection-type-in-net/196544#196544-1Answer by Dr8k for Is there a sorted collection type in .NET?Dr8k2008-10-13T02:22:40Z2008-10-13T02:22:40Z<p>.Net has the SortedList class: <a href="http://msdn.microsoft.com/en-us/library/system.collections.sortedlist.aspx" rel="nofollow">MSDN - Sorted List</a></p>
<ul>
<li>Failing that you can just use the List class and the "Sort" method.</li>
</ul>
http://stackoverflow.com/questions/189621/when-does-csss-important-declaration-not-work/189632#1896320Answer by Dr8k for When does CSS's !important declaration not work?Dr8k2008-10-09T23:53:39Z2008-10-10T04:25:54Z<p>I'm pretty sure not all browsers recognise the !important declaration. But can't remember which ones do off the top of my head. Will check and get back to you.</p>
<p>[EDIT]
I can confirm IE6 and earlier do not recognise !important (unless the browser is in standards compliance mode - not the default).</p>
<p>You can use !important to override an inline rule. But also remember that inline rules can be tagged !important as well.</p>
http://stackoverflow.com/questions/189562/what-is-the-proper-name-for-doing-debugging-by-adding-print-statements/189651#1896512Answer by Dr8k for What is the proper name for doing debugging by adding 'print' statementsDr8k2008-10-10T00:04:44Z2008-10-10T00:04:44Z<p>Also, in .Net you can add debugging statements (I think it actually is Debug.WriteLine) to output to the console. These statments are only included in debug builds - the compiler will automatically leave them out when you do a release build.</p>
http://stackoverflow.com/questions/181046/what-is-the-single-best-resource-for-learning-the-visual-studio-tools/181049#1810491Answer by Dr8k for What is the single best resource for learning the visual studio tools?Dr8k2008-10-08T01:18:35Z2008-10-08T01:18:35Z<p>STACKOVERFLOW!!!!</p>
<p>(Sorry, I really couldn't help myself).</p>
http://stackoverflow.com/questions/172951/hashing-sensitive-data/172955#1729554Answer by Dr8k for hashing sensitive dataDr8k2008-10-06T01:17:53Z2008-10-06T01:17:53Z<p>I think you are taking the wrong approach here. The idea of a hash is that it is one-way, noone should be able to use that hash to access the system (and if they can then you are likely still in violation of the data protection act. Also, testers should not be using real accounts unless those accounts are their own.</p>
<p>You should have the testers using mock accounts in a separated environment. By using mock accounts in a separate environment there is no danger in giving the testers the account information.</p>
http://stackoverflow.com/questions/160904/oracle-considers-empty-strings-to-be-null-while-sql-server-does-not-how-is-this/161001#1610013Answer by Dr8k for Oracle considers empty strings to be NULL while SQL Server does not - How is this best handled?Dr8k2008-10-02T05:28:01Z2008-10-02T05:28:01Z<p>My typical solution would be to add a constraint in SQL Server forcing all string values in the affected columns to have a length greater than 0:</p>
<pre><code>CREATE TABLE Example (
StringColumn VARCAHR(10) NOT NULL )
ALTER TABLE Example
ADD CONSTRAINT CK_Example_StringColumn CHECK (LEN(StringColumn) > 0)
</code></pre>
<p>However, as you have stated, you have no control over the SQL Database. As such you really have four choices (as I see it):</p>
<ol>
<li>Treat empty string values as invalid, skip those records, alert an operator and log the records in some manner that makes it easy to manually correct / re-enter.</li>
<li>Convert empty string values to spaces.</li>
<li>Convert empty string values to a code (i.e. "LEGACY" or "EMPTY").</li>
<li>Rollback transfers that encounter empty string values in these columns, then put pressure on the SQL Server database owner to correct their data.</li>
</ol>
<p>Number four would be my preference, but isn't always possible. The actuion you take will really depend on what the oracle users need. Ultimately, if nothing can be done about the SQL database, I would explain the issue to the oracle business system owners, explain the options and consequences and make them make the decision :)</p>
<p><strong>NOTE:</strong> I believe in this case SQL Server actually exhibits the "correct" behaviour.</p>
http://stackoverflow.com/questions/159038/can-foreign-key-constraints-be-temporarily-disabled-using-tsql/160265#160265-1Answer by Dr8k for Can foreign key constraints be temporarily disabled using TSQL?Dr8k2008-10-01T23:42:36Z2008-10-01T23:42:36Z<p>I'm supporting ScottStonehouse - you most definitely can disable constraints when manipulating data. HOWEVER: as a general rule you should NEVER do this. One of the only exceptions would be when you are performing large scale data manipulations where allowing the database to perform constraint checks for every record affected will hurt performance too much. In this case you disable the constraints to load the data quickly, but then you must perform data validation at the end and reinstate the constraints.</p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151947#1519470Answer by Dr8k for Does an empty array in .NET use any space?Dr8k2008-09-30T06:15:43Z2008-09-30T06:28:15Z<p>If I understand correctly, a small amount of memory will be allocated for the string arrays. You code essentially requires a generic list to be created anyway, so why not just return that?</p>
<p>[EDIT]Removed the version of the code that returned a null value. The other answers advising against null return values in this circumstance appear to be the better advice[/EDIT]</p>
<pre><code>List<string> GetTheStuff()
{
List<string> s = new List<string();
if (somePredicarte())
{
// more code
}
return s;
}
</code></pre>
http://stackoverflow.com/questions/50252/modeling-geographic-locations-in-an-relational-database/151838#1518380Answer by Dr8k for Modeling Geographic Locations in an Relational Database.Dr8k2008-09-30T05:13:36Z2008-09-30T05:13:36Z<p>I agree with the other posts that you need to be very careful here about your requirements. Location can become a tricky issue and this is why GIS systems are so complicted.</p>
<p>If you are sure you just need a basic heirarchy structure, I have the following suggestions:</p>
<ul>
<li>I support the previous comment that root level items should not have themselves as the parent. Root level items should have a null value for the parent. Always be careful about putting data into a field that has no meaning (i.e. "special" value to represent no data). This practice is rarely necessarily and <strong>way</strong> overused in the devleoper community.</li>
<li>Consider XPath / XML. This is Something to consider for bother recording the heirarchy structure, and for processing / parsing the data at retrieval. If you are using MSSQL Server, the XPath expressions in select statements are perfect for tasks such as returning the full location/heirarchy path of a record as the code is simple and the results are fast.</li>
</ul>
http://stackoverflow.com/questions/147049/is-it-correct-to-use-inheritance-instead-of-name-aliasing-in-c/147069#1470690Answer by Dr8k for Is it correct to use inheritance instead of name aliasing in c#?Dr8k2008-09-29T00:23:25Z2008-09-29T00:23:25Z<p>I essentially agree with Ed. If you don't need to actually extend the functionality of the generic List construct, just use a generic List:</p>
<pre><code>List<Customer> customerList = new List<Customer>();
</code></pre>
<p>If you do need to extend the functionality then typically you would be looking at inheritance.</p>
<p>The third possibility is where you need significantly changed functionality from the generic list construct, in which case you may want to simply inherit from IEnumerable. Doing so make the class usable in enumerable operations (such as "foreach") but allows you to completely define all class behaviour.</p>
http://stackoverflow.com/questions/146970/can-sqlexpress-2005-and-2008-be-installed-on-same-machine-without-issue/146977#1469770Answer by Dr8k for Can SQLExpress 2005 and 2008 be installed on same machine without issue?Dr8k2008-09-28T23:14:07Z2008-09-28T23:14:07Z<p>I'm pretty sure you can with the full version of SQL, but you need to do it by installing named instances. This could be an issue with SQL Express where it doesn't give you that option.</p>
http://stackoverflow.com/questions/137256/reporting-service-2005-anonymous-authentication-for-report-subscription/137269#1372690Answer by Dr8k for Reporting Service 2005 Anonymous Authentication for Report SubscriptionDr8k2008-09-26T01:31:47Z2008-09-26T01:31:47Z<p>I don't think it is possible to do that - in order to have a subscription reporting services needs to link it to an account for the email address.</p>
<p>[Edit]</p>
<p>I double checked and it does allow you to override the email address(es) that the subscription sends the report to, so I may be wrong. However, it still seems to want to link all subscriptions to user accounts, so I still don't think it is possible to set up anonymous subscriptions.</p>
http://stackoverflow.com/questions/137031/how-can-i-programmatically-determine-if-i-have-write-privileges-using-c-in-net/137228#1372281Answer by Dr8k for How can I programmatically determine if I have write privileges using C# in .Net?Dr8k2008-09-26T01:14:15Z2008-09-26T01:14:15Z<p>ScottKoon is write about checking the windows ACL permissions. You can also check the managed code permissions using CAS (Code Access Security). This is a .Net specific method of restricting permissions. Note, if the user doesn't have write permissions then the code will never have write permissions (even if CAS says it does) - the most restrictive permissions between the two win.</p>
<p>CAS is pretty easy to use - you can even add declarative attributes you the start of your methods. You can read more at <a href="http://msdn.microsoft.com/en-us/library/930b76w0(VS.71).aspx" rel="nofollow">MSDN</a></p>
http://stackoverflow.com/questions/130878/global-or-singleton-for-database-connection/130905#1309059Answer by Dr8k for Global or Singleton for database connection?Dr8k2008-09-25T01:05:47Z2008-09-25T02:57:51Z<p>I'm not sure I can answer your specific question, but wanted to suggest that global / singleton connection objects may not be the best idea if this if for a web-based system. DBMSs are generally designed to manage large numbers of unique connections in an efficient manner. If you are using a global connection object, then you are doing a couple of things:</p>
<ol>
<li><p>Forcing you pages to do all database
connections sequentially and killing
any attempts at asyncronous page
loads. </p></li>
<li><p>Potentially holding open locks on
database elements longer than
necessary, slowing down overall
database performance.</p></li>
<li><p>Maxing out the total number of
simultaneous connections your
database can support and blocking
new users from accessing the
resources.</p></li>
</ol>
<p>I am sure there are other potential consequences as well. Remember, this method will attempt to sustain a database connection for every user accessing the site. If you only have one or two users, not a problem. If this is a public website and you want traffic then scalability will become an issue.</p>
<p><strong>[EDIT]</strong></p>
<p>In larger scaled situations, creating new connections everytime you hit the datase can be bad. However, the answer is not to create a global connection and reuse it for everything. The answer is connection pooling. </p>
<p>With connection pooling, a number of distinct connections are maintained. When a connection is required by the application the first available connection from the pool is retrieved and then returned to the pool once its job is done. If a connection is requested and none are available one of two things will happen: a) if the maximum number of allowed connection is not reached, a new connection is opened, or b) the application is forced to wait for a connection to become available.</p>
<p><strong>Note:</strong> In .Net languages, connection pooling is handled by the ADO.Net objects by default (the connection string sets all the required information). </p>
<p>Thanks to Crad for commenting on this.</p>
http://stackoverflow.com/questions/124695/web-services-or-custom-protocol/124730#1247301Answer by Dr8k for Web Services or Custom Protocol?Dr8k2008-09-24T00:27:33Z2008-09-24T00:27:33Z<p>Remember that there are a number of frameworks out there that make programming web services very trivial stuff. In the VB / C# world .Net makes it a joy. I'm not really sure about specific frameworks for other languages but I am sure most have at least one.</p>
<p>The standardisation and simplicity of implementation and reuse of web services make them very attractive. As previously pointed out- yes, they make communications very verbose. If you are worried about this why not calculate how much data you actually will be trasmitting. chances are, with current network and internet speeds, it will be trivial - even with the XML overhead.</p>
http://stackoverflow.com/questions/118719/how-do-i-effectively-persist-a-net-font-object/118769#1187690Answer by Dr8k for How do I effectively persist a .Net font object ?Dr8k2008-09-23T02:12:53Z2008-09-23T04:19:19Z<p>What type of datastore do you need to persist this in? If it is just user settings that can be persisted in a file you could serialise the font object to a settings file in either binary or xml (if you want to be able to edit the config file directly). The serialisation namespaces (System.Xml.Serialization and System.Runtime.Serialization) provide all the tools to do this without writing custom code.</p>
<p>MSDN Site on XML Serialisation: <a href="http://msdn.microsoft.com/en-us/library/ms950721.aspx" rel="nofollow">XML Serialization in the .Net Framework</a></p>
<p>[EDIT]So aparrently the font object isn't serialisable. oops :( Sorry.</p>
http://stackoverflow.com/questions/118374/what-techniques-do-you-use-when-writing-your-own-cryptography-methods/118439#1184392Answer by Dr8k for What techniques do you use when writing your own cryptography methods?Dr8k2008-09-23T00:36:01Z2008-09-23T00:36:01Z<p>I attended a code security session at this years Aus TechEd. When talking about the AES algorithm in .Net and how it was selected, the presenter (Rocky Heckman) told us one of the techniques that had been used to break the previous encryption. Someone had managed to use a thermal imaging camera to record a cpu's heat signature whilst it was encrypting data. They were able to use this recording to ascertain what types of calculations the chip was doing and then reverse engineer the algoritm. They had way too much time on their hands, and I am fairly confident I will never be smart enough to beat people like that! :(</p>
<ul>
<li>Note: I sincerely hope I have relayed the story correctly, if not - the mistake is likely mine, not that of the presenter mentioned.</li>
</ul>
http://stackoverflow.com/questions/118288/sql-coding-style-guide/118332#1183324Answer by Dr8k for SQL coding style guideDr8k2008-09-23T00:04:26Z2008-09-23T00:04:26Z<p>I am not too fussed about caps, although I admit I do make my keyword commands (select, from, where insert) capitals. I can be very anal about tabbing and line breaks though. My preferred style is to keep things like select statements in blocks that are lined up....</p>
<pre><code>SELECT [Name]
FROM [tablename]
WHERE [column1] = [value1]
AND [column2] < [value2]
</code></pre>
<p>Please pretend that the space between items (such as "select" and "[name]") have been done with tabs rather than spaces. :)</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90016#900160Answer by Dr8k for What is a reasonable code coverage % for unit tests (and why)?Dr8k2008-09-18T04:28:50Z2008-09-18T04:28:50Z<p>I would agree, anything above 80-85% is pretty good</p>
http://stackoverflow.com/questions/59357/copying-relational-data-from-database-to-database/89048#890480Answer by Dr8k for Copying relational data from database to databaseDr8k2008-09-18T00:54:41Z2008-09-18T00:54:41Z<p>If you are adding each time then you may need to keep a permanent table to track the relationship between source database primary keys and destination database primary keys (at least for the parent table). If you needed to keep this kind of data out of the destination database, you could get SSIS to store/retrieve it from some kind of logging database or even a flat file.</p>
<p>You could probably avoid the above scenario if there is a combination of fields in the parent table that can be used to uniquely identify that record and therefore "find" the primary key for that record in the destination database. </p>
http://stackoverflow.com/questions/88775/disable-politely-a-website-when-the-sql-server-is-offline/89001#890010Answer by Dr8k for Disable (Politely) a website when the sql server is offlineDr8k2008-09-18T00:44:45Z2008-09-18T00:44:45Z<p>James code forgets to close the connection, should probably be:</p>
<pre><code>try
{
conn.Open();
}
catch(Exception ex)
{
Session["DBException"] = ex;
Response.Redirect("Maintenance.aspx");
}
finally
{
conn.Close();
}
</code></pre>
http://stackoverflow.com/questions/88775/disable-politely-a-website-when-the-sql-server-is-offline/88970#889700Answer by Dr8k for Disable (Politely) a website when the sql server is offlineDr8k2008-09-18T00:41:05Z2008-09-18T00:41:05Z<p>A slightly more elegant version of the DB check on every page would be to do the check in the Global.asax file or to create a master page that all the other pages inherit from.</p>
<p>The suggestion of having an online site and an offline site is really good, but only really applicable if you have a limited number of sites to manage on the server.</p>
<p><strong>EDIT:</strong> Damn, the other answers with these suggestions came up after I loaded the page. I need to remember to refresh before replying :)</p>
http://stackoverflow.com/questions/130878/global-or-singleton-for-database-connection/130905#130905Comment by Dr8k on Global or Singleton for database connection?Dr8k2008-10-20T21:42:06Z2008-10-20T21:42:06ZValid point Ateshttp://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203301#203301Comment by Dr8k on What things didn't you know you needed but are now very glad you have?Dr8k2008-10-15T01:53:16Z2008-10-15T01:53:16ZThese are all rapidly evolving and are great for development teams with weak SQL skills. From what I have seen, iBatis can be much better for those who want more control over the actual SQL run: <a href="http://ibatis.apache.org/index.html" rel="nofollow">ibatis.apache.org/index.html</a>http://stackoverflow.com/questions/196512/is-there-a-sorted-collection-type-in-net/196544#196544Comment by Dr8k on Is there a sorted collection type in .NET?Dr8k2008-10-13T02:43:12Z2008-10-13T02:43:12ZD'oh! Does it show I was distracted? Sorry Josh.http://stackoverflow.com/questions/189621/when-does-csss-important-declaration-not-work/189632#189632Comment by Dr8k on When does CSS's !important declaration not work?Dr8k2008-10-10T04:25:17Z2008-10-10T04:25:17ZI'll correct my posthttp://stackoverflow.com/questions/164492/what-is-the-reporting-tool-that-you-would-use/164511#164511Comment by Dr8k on What is the reporting tool that you would use?Dr8k2008-10-03T00:58:54Z2008-10-03T00:58:54ZI actually find the report designer in reporint services very easy to use and can get it to do most things. I also don't think performance is that slow. The only times I have had trouble have been embedding reports in pages. In contrast I find crystal to be very tempremental.http://stackoverflow.com/questions/161093/do-this-with-a-single-sqlComment by Dr8k on Do this with a single SQLDr8k2008-10-02T06:35:49Z2008-10-02T06:35:49ZWhat you are asking doesn't seem to be too bad, but can you clarify a little - are you saying that you need it to grab the earliest record from the table after the last null in effective_date?http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151947#151947Comment by Dr8k on Does an empty array in .NET use any space?Dr8k2008-09-30T06:29:39Z2008-09-30T06:29:39ZThanks David. You are correct about my point. If it is neccesary to return an array value for performance reasons, then internally the method should also use an array value.http://stackoverflow.com/questions/50252/modeling-geographic-locations-in-an-relational-database/50259#50259Comment by Dr8k on Modeling Geographic Locations in an Relational Database.Dr8k2008-09-30T05:06:26Z2008-09-30T05:06:26ZYou should definitely use a null value for the parent (root) level items rather than making them parents of themselves. Try to avoid putting in data unless it actually has meaning.http://stackoverflow.com/questions/147187/why-do-we-need-anything-more-than-http-get-put-post/147195#147195Comment by Dr8k on Why do we need anything more than HTTP GET, PUT, POST?Dr8k2008-09-29T02:21:01Z2008-09-29T02:21:01ZWe should probably remember that the original question didnn't mention REST. I you are designing a rest system then yes, you would want to use those verbs. If you are designing a web application and not worried about REST then you would probably only use POST or GET.http://stackoverflow.com/questions/146970/can-sqlexpress-2005-and-2008-be-installed-on-same-machine-without-issue/146977#146977Comment by Dr8k on Can SQLExpress 2005 and 2008 be installed on same machine without issue?Dr8k2008-09-28T23:32:02Z2008-09-28T23:32:02ZOh cool, thanks for the tip HitScan :)http://stackoverflow.com/questions/137550/is-programming-math/137595#137595Comment by Dr8k on Is Programming == Math?Dr8k2008-09-26T04:12:30Z2008-09-26T04:12:30ZI would agree - math forms a major part of most computer systems, but programming isn't necessarily math. As I see it, the core foundation of most programs is the logic they represent. Logic and math are different, although related.http://stackoverflow.com/questions/131367/svn-installation/131397#131397Comment by Dr8k on SVN installationDr8k2008-09-25T04:10:03Z2008-09-25T04:10:03ZEasy if you are using the command prompt to do everything. however, if you want to use a gui or windows explorer-based tool (like Tortoise SVN) then I don't think it will work. TortoiseSVN will need either a HTTP or SVN protocol address to point to.http://stackoverflow.com/questions/131367/svn-installation/131401#131401Comment by Dr8k on SVN installationDr8k2008-09-25T04:06:00Z2008-09-25T04:06:00ZI also recommend this - it's free and very simple to install and get going.http://stackoverflow.com/questions/130878/global-or-singleton-for-database-connection/130905#130905Comment by Dr8k on Global or Singleton for database connection?Dr8k2008-09-25T02:48:08Z2008-09-25T02:48:08ZTrue, but I think proper connection pooling is different to just using global conenction objects. Connection pooling still uses multiple connections, it just limits the maximum number and resuses them over time to allieviate setup overhead.http://stackoverflow.com/questions/130878/global-or-singleton-for-database-connection/130905#130905Comment by Dr8k on Global or Singleton for database connection?Dr8k2008-09-25T01:25:00Z2008-09-25T01:25:00ZCorrect, if you were to go down this road the singleton would provide that advantage.