User Cade Roux - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T04:53:15Zhttp://stackoverflow.com/feeds/user/18255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850172/stored-procedure-performance-randomly-plummets-trivial-alter-fixes-it-why/1850204#18502043Answer by Cade Roux for Stored procedure performance randomly plummets; trivial ALTER fixes it. Why?Cade Roux2009-12-04T22:55:51Z2009-12-05T02:26:58Z<p>Execution plan was probably regenerated.</p>
<p>There are various ways you can force this to be regenerated, and also ways to avoid parameter sniffing, where an execution plan is determined based on the parameters, but which may not be suitable for all inputs. If you were on 2008, I'd recommend using the <code>OPTIMIZE FOR UNKNOWN</code> option.</p>
<p>Alternatively, mask all your input variables with local variables to avoid parameter sniffing, and consider calling WITH RECOMPILE or declaring the SPs that way.</p>
<p>Also, ensure that your statistics are up to date. Out of date statistics might mean a plan is no longer good.</p>
<p>The comments in Remus' answer also indicate a number of things which can affect which plan the server picks.</p>
http://stackoverflow.com/questions/1850045/how-do-i-find-all-stored-procedures-that-insert-update-or-delete-records/1850221#18502211Answer by Cade Roux for How do I find all stored procedures that insert, update, or delete records?Cade Roux2009-12-04T23:00:25Z2009-12-04T23:00:25Z<p>Call <a href="http://msdn.microsoft.com/en-us/library/bb326754.aspx" rel="nofollow">sp_refreshsqlmodule</a> on all non-schema bound stored procedures:</p>
<pre><code>DECLARE @template AS varchar(max)
SET @template = 'PRINT ''{OBJECT_NAME}''
EXEC sp_refreshsqlmodule ''{OBJECT_NAME}''
'
DECLARE @sql AS varchar(max)
SELECT @sql = ISNULL(@sql, '') + REPLACE(@template, '{OBJECT_NAME}',
QUOTENAME(ROUTINE_SCHEMA) + '.'
+ QUOTENAME(ROUTINE_NAME))
FROM INFORMATION_SCHEMA.ROUTINES
WHERE OBJECTPROPERTY(OBJECT_ID(QUOTENAME(ROUTINE_SCHEMA) + '.'
+ QUOTENAME(ROUTINE_NAME)),
N'IsSchemaBound') IS NULL
OR OBJECTPROPERTY(OBJECT_ID(QUOTENAME(ROUTINE_SCHEMA) + '.'
+ QUOTENAME(ROUTINE_NAME)),
N'IsSchemaBound') = 0
EXEC (
@sql
)
</code></pre>
http://stackoverflow.com/questions/1849144/sql-server-and-sqldatareader-trillion-records-memory/1849177#18491771Answer by Cade Roux for SQL Server and SqlDataReader - Trillion Records - MemoryCade Roux2009-12-04T19:37:06Z2009-12-04T19:37:06Z<p>Yes - it might take a while (as long as your SQL isn't doing anything silly trying to take a snapshot or anything), but if your server can stream it out, the SqlDataReader shouldn't have a memory usage problem.</p>
http://stackoverflow.com/questions/1844452/computed-column-based-on-another-computed-column/1844465#18444652Answer by Cade Roux for Computed column based on another computed column?Cade Roux2009-12-04T02:12:20Z2009-12-04T02:12:20Z<p>You have to define it <a href="http://msdn.microsoft.com/en-us/library/ms174979.aspx" rel="nofollow">against the base columns in the table</a>.</p>
<blockquote>
<p>computed_column_expression Is an
expression that defines the value of a
computed column. A computed column is
a virtual column that is not
physically stored in the table, unless
the column is marked PERSISTED. The
column is computed from an expression
that uses other columns in the same
table. For example, a computed column
can have the definition: cost AS price
* qty. The expression can be a noncomputed column name, constant,
function, variable, and any
combination of these connected by one
or more operators. The expression
cannot be a subquery or contain alias
data types.</p>
</blockquote>
<p>Although you could refactor them both to use the same scalar UDF (pass in all the same columns) for easier maintenance and ensure consistency of logic, the performance hit would be huge, and I only use scalar UDFs as a last resort.</p>
http://stackoverflow.com/questions/1844162/assisting-in-avoiding-assert-always/1844191#18441910Answer by Cade Roux for Assisting in avoiding assert... always!Cade Roux2009-12-04T00:58:04Z2009-12-04T02:06:49Z<p><code>assert()</code> is usually <code>#define</code>'d to be <a href="http://en.wikipedia.org/wiki/Assert.h" rel="nofollow">((void)0) for release code</a> (<code>#define NDEBUG</code>), so there is <strong>no overhead at all</strong>.</p>
<p>When using a testing version, is the performance overhead hurting your ability for the testing to be realistic?</p>
http://stackoverflow.com/questions/1843222/do-link-tables-need-a-meaningless-primary-key-field/1843481#18434814Answer by Cade Roux for Do link tables need a meaningless primary key field?Cade Roux2009-12-03T22:34:00Z2009-12-03T23:52:47Z<p>For true link tables, they typically do not exist as object entities in my object models. Thus the surrogate key is not ever used. The removable of an item from a collection results in a removal of an item from a link relationship where both foreign keys are known (<code>Person.Siblings.Remove(Sibling)</code> or <code>Person.RemoveSibling(Sibling)</code> which is appropriately translated at the data access layer as <code>usp_Person_RemoveSibling(PersonID, SiblingID)</code>).</p>
<p>As Mike mentioned, if it does become an actual entity in your object model, then it may merit an ID. However, even with addition of temporal factors like effective start and end dates of the relationship and things like that, it's not always clear. For instance, the collection may have an effective date associated at the aggregate level, so the relationship itself may still not become an entity with any exposed properties.</p>
<p>I'd like to add that you might very well need the table indexed both ways on the two foreign key columns.</p>
http://stackoverflow.com/questions/1843640/like-operator-with-variable/1843646#18436462Answer by Cade Roux for LIKE operator with $variableCade Roux2009-12-03T22:58:21Z2009-12-03T23:07:48Z<p>Please don't do this, it is vulnerable to <a href="http://stackoverflow.com/questions/tagged/sql-injection">SQL injection (this is a list of 138 StackOverflow questions you should read, absorb and understand prior to returning to your application)</a>. Use parametrized queries or stored procedures.</p>
http://stackoverflow.com/questions/1843344/inserting-rows-from-one-table-to-another-which-sql-is-more-efficient-outer-join/1843414#18434140Answer by Cade Roux for inserting rows from one table to another, which sql is more efficient (outer join vs sequential scan)Cade Roux2009-12-03T22:24:30Z2009-12-03T22:24:30Z<p>It shouldn't matter - a good optimizer will treat these identically. In practice, I have seen to quirky execution plans in exactly this case, but I have been known to use both styles interchangeably, depending on mood, readability and complexity of the query.</p>
<p>In SQL Server, option A is not available when you need to JOIN on a tuple of more thana a single column without using some kind of concatenation workaround (which I do not recommend), which brings us to cat-skinning option C (which I also use, expecially with the joins are really squirrely), which extends to tuples directly:</p>
<pre><code>INSERT INTO A (x, y, z)
SELECT x, y, z
FROM B b
WHERE NOT EXISTS (SELECT * FROM A WHERE id = b.id);
INSERT INTO A (x, y, z)
SELECT x, y, z
FROM B b
WHERE NOT EXISTS (SELECT * FROM A WHERE id1 = b.id1 AND id2 = b.id2);
</code></pre>
http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q0OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T21:43:00Z2009-12-03T22:16:11Z
<p>Example:</p>
<pre><code>USE AnotherDB
-- This works - same ID as from other DB
SELECT OBJECT_ID('AnotherDB.ASchema.ATable')
-- This works
SELECT OBJECT_NAME(OBJECT_ID('AnotherDB.ASchema.ATable'))
USE ThisDB
-- This works - same ID as from other DB
SELECT OBJECT_ID('AnotherDB.ASchema.ATable')
-- Gives NULL
SELECT OBJECT_NAME(OBJECT_ID('AnotherDB.ASchema.ATable'))
</code></pre>
<p>Obviously the metadata functions expect a current database. The BOL entries typically have language like this for functions like <code>OBJECT_NAME</code> etc.:</p>
<blockquote>
<p>The Microsoft SQL Server 2005 Database
Engine assumes that object_id is in
the context of the current database. A
query that references an object_id in
another database returns NULL or
incorrect results.</p>
</blockquote>
<p>The reasons I need to be able to do this:</p>
<ol>
<li><p>I can't USE the other database from within an SP</p></li>
<li><p>I can't create a proxy UDF stub (or alter anything) in the other databases or in master (or any other database besides my own) to help me out.</p></li>
</ol>
<p>So how can I get the database from <code>OBJECT_ID('AnotherDB.ASchema.ATable')</code> when I'm in ThisDB?</p>
<p>My goal is to take a possibly partially qualified name from a configuration table, resolving it in the current context to a fully qualified name, use PARSENAME to get the database name and then dynamic SQL to build a script to be able to get to the meta data tables directly with <code>database.sys.*</code> or <code>USE db; sys.*</code></p>
http://stackoverflow.com/questions/1841231/tips-for-splitting-database/1843280#18432801Answer by Cade Roux for Tips for splitting databaseCade Roux2009-12-03T22:05:46Z2009-12-03T22:05:46Z<p>First, definitely look at your existing design and workload.</p>
<p>If you can't optimize your OLTP side any further, I would totally go to a Kimball data warehouse methodology. Update your data on a regular database using SSIS or whatever and transform your data into stars. What you should find is that your reporting performance should improve drastically and not interfere with your production transactions on the OLTP/normalized side.</p>
<p>This can improve to the point where you can even keep the two databases in very close sync using the spare cycles which were previously beeing eaten up by reporting on a normalized database schema which is not well suited to reporting. You can use triggers or scheduled tasks to keep the warehouse up to date relatively easily with more complex options available if you scale up.</p>
<p>If your database is not terribly huge, this does not necessarily need to be in two databases, you could just use a different schema to keep them logically organized, and even if you split it, you can put views in your OLTP database to make them available without changing the database on your connection. The main benefits of having a separate database is to change your database-wide options, like collations or backup model (of course you can also use file groups to help with that).</p>
http://stackoverflow.com/questions/1839425/sql-server-relationships-buried-in-stored-procedures-rather-than-schema/1840663#18406630Answer by Cade Roux for SQL Server relationships buried in stored procedures rather than schemaCade Roux2009-12-03T15:31:29Z2009-12-03T15:31:29Z<p>You can use <code>sys.sql_dependencies</code> to find out what columns and tables an SP depends on (helps if you don't do <code>SELECT *</code> in your SPs). This will help you get an inventory of candidates at least:</p>
<pre><code>referenced_major_id == the OBJECT_ID of the table
referenced_minor_id == the column id: COLUMNPROPERTY(referenced_major_id,
COLUMN_NAME,
'ColumnId')
</code></pre>
<p>You might have to use <code>sp_refreshsqlmodule</code> to ensure that the dependencies are up to date for that to work. i.e. if you change a view, you need to <code>sp_refreshsqlmodule</code> on each non-schema-bound module (obviously schema-bound modules don't allow any underlying changes changes in the first place - but you will get an error if you call <code>sp_refreshsqlmodule</code> on a schema-bound object) which depended on that view. You can automate that by calling <code>sp_refreshsqlmodule</code> on these objects:</p>
<pre><code>SELECT *
FROM INFORMATION_SCHEMA.ROUTINES
WHERE OBJECTPROPERTY(OBJECT_ID(QUOTENAME(ROUTINE_SCHEMA) + '.'
+ QUOTENAME(ROUTINE_NAME)),
N'IsSchemaBound') IS NULL
OR OBJECTPROPERTY(OBJECT_ID(QUOTENAME(ROUTINE_SCHEMA) + '.'
+ QUOTENAME(ROUTINE_NAME)),
N'IsSchemaBound') = 0
</code></pre>
http://stackoverflow.com/questions/1826757/sql-server-update-performance/1826842#18268423Answer by Cade Roux for SQL (Server) Update performanceCade Roux2009-12-01T15:17:01Z2009-12-01T15:17:01Z<p>This isn't even possible (updating multiple tables at the same time in a single UPDATE statement) in T-SQL.</p>
<p>From <a href="http://msdn.microsoft.com/en-us/library/aa260662%28SQL.80%29.aspx" rel="nofollow">BOL</a>:</p>
<blockquote>
<p>table_name</p>
<p>Is the name of the table to update.
The name can be qualified with the
linked server, database, and owner
name if the table is not in the
current server or database, or is not
owned by the current user.</p>
</blockquote>
<p>and</p>
<blockquote>
<p>view_name</p>
<p>Is the name of the view to update. The
view referenced by view_name must be
updatable. The modifications made by
the UPDATE statement cannot affect
more than one of the base tables
referenced in the FROM clause of the
view.</p>
</blockquote>
http://stackoverflow.com/questions/1819962/nested-try-catch-with-reponse-redirect-in-asp-net/1820026#18200261Answer by Cade Roux for nested try catch with reponse.redirect in asp.net Cade Roux2009-11-30T14:04:35Z2009-11-30T14:04:35Z<p>Read <a href="http://www.c6software.com/articles/ThreadAbortException.aspx" rel="nofollow">this article</a></p>
<p>What you can do most simply is not redirect inside your try/catch harnesses:</p>
<pre><code>string url ;
try
{
// statements
try
{
}
catch(SqlException sqlex)
{
url = @"~/Error.aspx?err=" + Server.UrlEncode(sqlex.Message) + "&src=" + Server.UrlEncode(sqlex.ToString());
}
catch (Exception ex)
{
url = @"~/Error.aspx?err=" + Server.UrlEncode(ex.Message) + "&src=" + Server.UrlEncode(ex.ToString());
}
finally
{
conn.Close();
}
}
catch (Exception ex)
{
url = @"~/Error.aspx?err=" + Server.UrlEncode(ex.Message) + "&src=" + Server.UrlEncode(ex.StackTrace);
}
finally
{
conn.Close();
}
}
if ( url != "" ) {
Response.Redirect(url);
}
else {
// Page logic can continue
}
</code></pre>
http://stackoverflow.com/questions/1819513/big-performance-difference-1hr-to-1-minute-found-in-sql-can-you-explain-why/1819914#18199142Answer by Cade Roux for Big performance difference (1hr to 1 minute ) found in SQL. Can you explain why?Cade Roux2009-11-30T13:46:09Z2009-11-30T13:46:09Z<p>Even deterministic scalar functions are evaluated at least once per row. If the same deterministic scalar function occurs multiple times on the same "row" with the same parameters, I believe only then will it be evaluated once - e.g. in a <code>CASE WHEN fn_X(a, b, c) > 0 THEN fn_X(a, b, c) ELSE 0 END</code> or something like that.</p>
<p>I think your RAND problem is because you continue to reseed:</p>
<blockquote>
<p>Repetitive calls of RAND() with the
same seed value return the same
results. </p>
<p>For one connection, if RAND() is
called with a specified seed value,
all subsequent calls of RAND() produce
results based on the seeded RAND()
call. For example, the following query
will always return the same sequence
of numbers.</p>
</blockquote>
<p>I have taken to caching scalar function results as you have indicated - even going so far as to precalculate tables of scalar function results and joining to them. Something has to be done eventually to make scalar functions perform. Right not, the best option is the CLR - apparently these far outperform SQL UDFs. Unfortunately, I cannot use them in my current environment.</p>
http://stackoverflow.com/questions/1816671/production-test-environment-easy-question/1816704#18167040Answer by Cade Roux for Production/Test Environment easy questionCade Roux2009-11-29T20:41:56Z2009-11-29T20:41:56Z<p>That is, of course, all you need to deploy, and you can make a test site from the same files <strong>IF</strong> there are not special hardcoded or dependencies. However, if there is any configuration hard coded in the source code, you will need the source code, or you may be able to decompile the code to get source code and modify it and recompile.</p>
<p>Typically we deploy the same files to production and test, and that does not include "source code" like any code-behind files, and certainly not the source code of normal .NET assemblies which we share between ASP.NET and WinForms and other .NET applications.</p>
http://stackoverflow.com/questions/1799834/is-it-possible-to-restore-a-sql-server-database-from-a-virtual-drive/1799951#17999510Answer by Cade Roux for Is it possible to restore a SQL Server database from a virtual drive?Cade Roux2009-11-25T21:07:00Z2009-11-25T21:07:00Z<p>The drive letter also needs to be visible from the account which the server engine is running under.</p>
<p>What mechanism are you using for the virtual disk?</p>
http://stackoverflow.com/questions/1799765/most-used-numbers-in-lottery-database/1799894#17998940Answer by Cade Roux for Most used Numbers in Lottery DatabaseCade Roux2009-11-25T20:57:53Z2009-11-25T21:04:30Z<p>I would unpivot the data first so you have:</p>
<pre><code>DrawDate, Position, Number
</code></pre>
<p>Where Position in (1, 2, 3, 4, 5)</p>
<p>Since you don't care really about position, it's easy enough to exclude it from queries now (or drop the column altogether).</p>
<p>The portable UNPIVOT is:</p>
<pre><code>SELECT DrawDate, 1 AS Position, P1 AS [Number] FROM tbl
UNION ALL
SELECT DrawDate, 2 AS Position, P2 AS [Number] FROM tbl
UNION ALL
SELECT DrawDate, 3 AS Position, P3 AS [Number] FROM tbl
UNION ALL
SELECT DrawDate, 4 AS Position, P4 AS [Number] FROM tbl
UNION ALL
SELECT DrawDate, 5 AS Position, P5 AS [Number] FROM tbl
</code></pre>
<p>This can actually be embedded to find a most used number result without remodelling your data (I'm not even bothering with the DrawDate and Position):</p>
<pre><code>SELECT TOP 1 [Number], COUNT(*)
FROM (
SELECT /* DrawDate, 1 AS Position, */ P1 AS [Number] FROM tbl
UNION ALL
SELECT /* DrawDate, 2 AS Position, */ P2 AS [Number] FROM tbl
UNION ALL
SELECT /* DrawDate, 3 AS Position, */ P3 AS [Number] FROM tbl
UNION ALL
SELECT /* DrawDate, 4 AS Position, */ P4 AS [Number] FROM tbl
UNION ALL
SELECT /* DrawDate, 5 AS Position, */ P5 AS [Number] FROM tbl
) AS unpivoted
GROUP BY [Number]
ORDER BY COUNT(*) DESC
</code></pre>
<p>If you define what you mean by numbers used together...</p>
http://stackoverflow.com/questions/1799064/filling-custom-c-objects-from-data-received-stored-procedure/1799186#17991862Answer by Cade Roux for filling custom c# objects from data received stored procedure Cade Roux2009-11-25T18:55:48Z2009-11-25T18:55:48Z<p>Use ADO.NET, open a SqlDataReader on a SqlCommand object executing the SP with the parameters. Use the SqlDataReader.NextResult method to get the second result set.</p>
<p>Basically:</p>
<pre><code>SqlConnection cn = new SqlConnection("<ConnectionString>");
cn.Open();
SqlCommand Cmd = new SqlCommand("<StoredProcedureName>", cn);
Cmd.CommandType = System.Data.CommandType.StoredProcedure;
SqlDataReader dr = Cmd.ExecuteReader(CommandBehavior.CloseConnection);
while ( dr.Read() ) {
// populate your first object
}
dr.NextResult();
while ( dr.Read() ) {
// populate your second object
}
dr.Close();
</code></pre>
http://stackoverflow.com/questions/1799016/why-would-a-select-statement-be-45-of-the-execution-plan-cost-in-sql-server-2008/1799042#17990420Answer by Cade Roux for Why would a SELECT statement be 45% of the execution plan cost in SQL Server 2008?Cade Roux2009-11-25T18:33:59Z2009-11-25T18:33:59Z<p>45% of something small is still 45%. It's hard to say without seeing more detail, but I've found the final stages to be very expensive when inserting into a clustered (on non-IDENTITY columns) index table or a table with a lot of indexes.</p>
<p>With all these table scans - are there no indexes?</p>
http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1799002#17990020Answer by Cade Roux for Using a "take-home" coding component in interview processCade Roux2009-11-25T18:27:02Z2009-11-25T18:27:02Z<p>I always sent a quiz in response to the resumes.</p>
<p>It had several components each with 5 questions covering the language we used at the time (VBScript/VBA/Visual Basic), SQL, DHTML/ASP. And we went over the quiz in the interview. There were not a lot of gimmicks or tricks, but they were often the kind of thing where I wanted them to run an example and tell me what the output was and why the output was what it was - they basically covered common gotchas - checking object properties when the object wasn't checked to have been found, operations which did and did not short-circuit, values versus references, boxing/unboxing.</p>
<p>Once the quiz was returned, we would schedule interviews - I cannot remember a single case where we did not schedule an interview for someone who returned the quiz. I estimated it would take 30-60 minutes to do the quiz. This was some time saved in the interview, and we had code to discuss. A lot of times people are not allowed to bring code samples of work, and a white board isn't exactly a typical programming environment.</p>
<p>It was only one component of the interview process. If someone else did the work, it wasn't like they were going to be able to hide it. I'm also not expecting them to be prohibited from using SO or Google when performing their work if they're hired either.</p>
<p>And yes, I've seen my quiz questions show up on USENET in the past.</p>
http://stackoverflow.com/questions/1795919/export-multiple-queries-to-different-tables/1798837#17988370Answer by Cade Roux for Export multiple queries to different tables Cade Roux2009-11-25T18:03:58Z2009-11-25T18:03:58Z<p>You can save the individual exports as SSIS packages, then combine them into a single package.</p>
<p>The exports might even be able to run in parallel.</p>
http://stackoverflow.com/questions/1798606/getting-error-while-writing-script-to-create-a-table/1798804#17988041Answer by Cade Roux for Getting error while writing script to create a tableCade Roux2009-11-25T17:59:17Z2009-11-25T17:59:17Z<p>This code is similar to that generated by SSMS:</p>
<pre><code>IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[TABLE_NAME_HERE]') AND type in (N'U'))
BEGIN
-- CREATE TABLE HERE
END
</code></pre>
http://stackoverflow.com/questions/1793055/how-to-parse-and-append-text-to-a-stored-procedure-in-sql-server-2005-via-a-param/1793133#17931332Answer by Cade Roux for How to Parse and Append text to a stored procedure in SQL Server 2005 via a parameterCade Roux2009-11-24T21:45:15Z2009-11-24T21:45:15Z<p>There are some options.</p>
<p>You can alter the actual SP using the metadata in INFORMATION_SCHEMA.ROUTINES (not really what I think you are wanting to be doing)</p>
<p>You can parameterize the SP - this should not be vulnerable to injection if the SP uses the variable directly and not to dynamically make SQL.</p>
<p>You might consider using a view or an inline or multi-step table-valued function instead, which can be used like a parameterized view (inline being more efficient) - <code>SELECT * FROM udf_Test WHERE TestCol1 = 'Test'</code>.</p>
<p>You can take the results of the SP and put them in a temporary table or table variable and query against that.</p>
http://stackoverflow.com/questions/1792087/sql-server-size-based-trigger/1793103#17931030Answer by Cade Roux for SQL Server - Size Based TriggerCade Roux2009-11-24T21:40:26Z2009-11-24T21:40:26Z<p>If you absolutely wanted this to be triggered, I would only have the trigger just queue an action in a table which was monitored by a maintenance job, since a trigger should not, in general, perform extended operations - they should get there stuff done and return control so that the transaction can complete or fail as quickly as possible. Note that there are situations where triggers have gotten disabled and you would not be able to have your maintenance run. If someone drops your trigger it might not be as obvious as a job which isn't showing up on a regular report.</p>
<p>I would recommend a job run by the SQL Server Agent regularly looking for situations where it needs to take action performing the actions and reporting them appropriately to whatever reports or system management software you are using.</p>
http://stackoverflow.com/questions/1792656/should-nulls-be-handled-in-code-or-in-the-database-advantages-and-disadvantages/1793047#17930470Answer by Cade Roux for Should NULLS be handled in code or in the database? Advantages and Disadvantages?Cade Roux2009-11-24T21:30:46Z2009-11-24T21:30:46Z<p>I typically default during design to <code>NOT NULL</code> unless a reason is given otherwise - particularly money/decimal columns in accounting - there is <strong>usually</strong> never an unknown aspect to these. There might be a case where a money column was optional (like a survey or business relationship system where you put your household/business income - this might not be known until/if a relationship is formed by the account manager). For datetime, I would never allow a <code>NULL</code> RecordCreated column, for instance, while a BirthDate column would allow <code>NULL</code>.</p>
<p><code>NOT NULL</code> columns remove a lot of potential extra code and ensures that users will not have to account for <code>NULL</code>s with special handling - especially good in presentation layer views or data dictionaries for reporting.</p>
<p>I think it's important during design time to devote a great deal of time handling data types (char vs. varchar, vs. nchar vs. nvarchar, money vs. decimal, int vs. varchar, GUID vs. identity), NULL/NOT NULL, primary key, choice of clustered index and non-clustered indexes and INCLUDE columns. I know that probably sounds like everything in DB design, but if answers to all those questions are understood up front, you will have a much better conceptual model.</p>
<p>Note that even in a database where there are no columns allowed to be <code>NULL</code>, a <code>LEFT JOIN</code> in a view can result in a <code>NULL</code></p>
<p>For a concrete case of the decision process, let's take a simple case of Address1, Address2, Address3, etc all varchar(50) - a pretty common scenario (which might be better represented as a single TEXT column, but let's assume it's modelled this way). I would not allow NULLs and I would default to empty string. The reason for this is:</p>
<p>1) It's not really unknown - it's blank. The nature of UNKNOWN between the multiple columns is never going to be well-defined. It is highly unlikely you would have a KNOWN Address1 and an UNKNOWN Address2 - you either know the whole address or you don't. Unless you are going to have constraints, let them be blank and don't allow NULLs.</p>
<p>2) As soon as people start naively doing things like Address1 + @CRLF + Address2 - NULLs start to <code>NULL</code> out the entire address! Unless you are going to wrap them in a view with <code>ISNULL</code>, or change you ANSI NULL settings, why not let them be blank - after all, it's the way they are viewed by users.</p>
<p>I would use probably the same logic for a Middle Name or Middle initial, depending on how it's used - is there a difference between someone without a middle name or someone where it's unknown?</p>
<p>In some cases, I would probably not even allow empty string - and I would do this by constraint. For instance - First and Last Name on a patient, Company Name on a customer. These should never be blank nor empty (or all whitespace or similar). The more of these constraints that are in place, the better your data quality and the sooner you catch silly mistakes like import issues, NULL propagation etc.</p>
http://stackoverflow.com/questions/1790900/how-to-manage-null-values-with-numeric-fields-in-cursor/1790950#17909501Answer by Cade Roux for How to manage NULL values with numeric fields in cursor?Cade Roux2009-11-24T15:51:02Z2009-11-24T15:51:02Z<p>Assuming you cannot avoid a cursor in the first place, I don't understand why a <code>NULL</code> would be handled much differently in a variable than you would in a query - there is <code>INSULL</code>, <code>COALESCE</code>, <code>CASE WHEN</code> etc.</p>
<p>One interesting thing:</p>
<pre><code>DECLARE @v as int -- initialized to NULL
{ -- loop through a cursor
FETCH NEXT INTO @v
}
</code></pre>
<p>You won't be able to necessarily distinguish an uninitialized <code>@v</code> from when the last row's <code>@v</code> setting was <code>NULL</code>.</p>
http://stackoverflow.com/questions/1781832/ssis-how-can-i-insert-a-blank-date-to-database-with-visual-basic/1785250#17852501Answer by Cade Roux for SSIS how can i insert a blank date to database with visual basicCade Roux2009-11-23T19:00:29Z2009-11-23T19:00:29Z<p>In the script component, create a new output column - of type <code>DATE</code>. This will expose it in the object model in the script as a writable object - There will be a <code>Row.COLUMNNAME</code> for the value and <code>Row.COLUMNNAME_IsNull</code>. Presumably your input column is coming in as a string column.</p>
<p>Then in the script, set <code>Row.COLUMNNAME_IsNull = True</code> when appropriate conditions are met, e.g (this is production code, with a <code>preCOMPDATE</code> string column coming from the source, and a <code>COMPDATE</code> date column in the output):</p>
<pre><code>If Row.preCOMPDATE_IsNull Then
' In this example we only set it to NULL is the string is null - you might also do this for blanks or whatever else the string might contain
Row.COMPDATE_IsNull = True
Else
' This is a date cleansing routine defined elsewhere in the script - out of range dates are defaulted to 1/1/1900, among other things, logging errors and setting severities
Row.COMPDATE = ValidateDate("COMPDATE", _
Row.preCOMPDATE, _
startDate, _
endDate, _
New Date(1900, 1, 1), _
ErrorDesc, _
IsRegDtError)
End If
</code></pre>
http://stackoverflow.com/questions/1784290/doing-large-updates-against-indexed-view/1785171#17851710Answer by Cade Roux for Doing large updates against indexed viewCade Roux2009-11-23T18:49:17Z2009-11-23T18:49:17Z<p>Have you considered making C a partitioned table and swapping in/out a partition as your price update mechanism? I'm not sure how that would work with an indexed view - I would think the index needs to be rebuilt at that point. I think this is probably the same situation you are seeing with the ALTER TABLE, actually.</p>
<p>Is the indexed view really necessary? i.e. could appropriate indexes on the 3 underlying tables perform just as well when a normal view is used? Remember that the indexed view may have to be updated on key changes to any of the three tables, while a index on a single table would only have to be updated if a key changes or data moves in just that table. Typically indexed views are indexed on different columns than the base tables because it is a different kind of section accross the data than is available in the underlying tables - does that description really apply?</p>
<p>How long does the pricing update take? This would appear to be the core of your problem, but it's hard to say without more information.</p>
http://stackoverflow.com/questions/1776922/combining-multiple-sql-databases-into-one-database/1776989#17769891Answer by Cade Roux for Combining multiple sql databases into one databaseCade Roux2009-11-21T22:24:52Z2009-11-21T22:24:52Z<p>You can script the objects and import the data, ensuring that any dependencies are created in the right order.</p>
<p>If you need to maintain any sort of logical separation, you can also <a href="http://msdn.microsoft.com/en-us/library/ms190387.aspx" rel="nofollow">use <strong>SCHEMA</strong>s within the database</a> (starting with SQL Server 2005) to organize them into two distinct areas - this would most likely require an application change, however.</p>
http://stackoverflow.com/questions/1776141/passing-void-type-parameter-in-c/1776183#17761831Answer by Cade Roux for Passing Void type parameter in CCade Roux2009-11-21T17:49:25Z2009-11-21T20:04:23Z<p>This is exactly the problem:</p>
<blockquote>
<p>I am guessing this is happening
because the compiler doesn't know the
type of "element" before hand. However
I don't see why this isn't working.</p>
</blockquote>
<p>Calling a method or member data by name is not generally a feature of staticly-typed languages.</p>
<p>Even a <code>void *</code> can only be reliably cast to a <code>T *</code>, where T is a type, when the pointer is actually a pointer to that type.</p>
<p>In C++, one possibility is to have all three types inherit from the same virtual bass class X which has a method Count (i.e. an interface ICountable). Then casting to <code>X *</code> and using <code>p->Count</code>. This would be idiomatic C++ - all the classes implement the same interface and thus they all support this method. This would be a language-supported method kind of analogous to relying on the same struct offsets trick shown in Tommy McGuire's answer, which makes the structs all similar <strong>by convention</strong>. If you were to alter the structs, or the compiler were to depart from the standard for laying out structs, you would be in hot water.</p>
<p>I can't help thinking that this is rather a toy problem, since the method is so simple, one would typically not wrap it in a function - one would simply call it inline: <code>T t; t.Count++;</code>.</p>
http://stackoverflow.com/questions/1850045/how-do-i-find-all-stored-procedures-that-insert-update-or-delete-records/1850221#1850221Comment by Cade Roux on How do I find all stored procedures that insert, update, or delete records?Cade Roux2009-12-05T02:30:25Z2009-12-05T02:30:25ZDid you find any SPs which had become invalid because of an underlying change? That's always fun ;-)http://stackoverflow.com/questions/1844162/assisting-in-avoiding-assert-always/1844191#1844191Comment by Cade Roux on Assisting in avoiding assert... always!Cade Roux2009-12-04T01:47:26Z2009-12-04T01:47:26Zcorrected to use 0;http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-qComment by Cade Roux on OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T22:17:00Z2009-12-03T22:17:00ZI don't really need the ID, but if I use one on the way, that will be fine.http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q/1843162#1843162Comment by Cade Roux on OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T22:13:25Z2009-12-03T22:13:25ZRight - it comes down to taking a possible partially qualified name, resolving it in the current context and then using PARSENAME to get the database name and then something like what you have dynamically to do the rest of my work.http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q/1843185#1843185Comment by Cade Roux on OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T22:12:06Z2009-12-03T22:12:06ZThis would be great if I could resolve a partially qualified name to a fully qualified name. You know how to do that?http://stackoverflow.com/questions/1843134/windows-how-big-is-a-boolComment by Cade Roux on Windows: How big is a BOOL?Cade Roux2009-12-03T21:52:56Z2009-12-03T21:52:56ZThere was a time when even bytes were platform dependent and held between 5 and 8 bits.http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q/1843162#1843162Comment by Cade Roux on OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T21:50:25Z2009-12-03T21:50:25ZYes, is there a way to get that from an object name (which may or may not be fully qualified - either table, schema.table, or db.schema.table)?http://stackoverflow.com/questions/1842034/deleting-database-rows-and-their-references-best-practices/1842433#1842433Comment by Cade Roux on Deleting Database Rows and their References-Best PracticesCade Roux2009-12-03T21:48:33Z2009-12-03T21:48:33Z+1 - I have never seen a case in systems I have worked on where I ever wanted cascading deletes. We either weren't deleting things (because they were too important - e.g. Patient, Patient Detail), or the items which we usually used foreign keys to never really became deletable, because so many things linked to them (e.g. lookups, code tables, etc)http://stackoverflow.com/questions/1826757/sql-server-update-performanceComment by Cade Roux on SQL (Server) Update performanceCade Roux2009-12-01T19:19:27Z2009-12-01T19:19:27ZNote that it can still be more efficient to update in several passes if the set of updated rows is selective and can be minimized by avoiding touching more rows than necessary - i.e. just because you can do COALESCE(curr_value, new_value) to replace NULLs, being able to do separate passes WHERE curr_value IS NULL is still WAY more efficient if this criteria is selective.http://stackoverflow.com/questions/1819513/big-performance-difference-1hr-to-1-minute-found-in-sql-can-you-explain-why/1819533#1819533Comment by Cade Roux on Big performance difference (1hr to 1 minute ) found in SQL. Can you explain why?Cade Roux2009-12-01T15:06:30Z2009-12-01T15:06:30ZFaiz, in your second case, a single random value is calculated and passed into the table function, so you get that same value over and over. The execution plan is unrelated to the one in your earlier problem.http://stackoverflow.com/questions/1821254/is-apples-app-store-going-to-implodeComment by Cade Roux on Is Apple's App Store going to implode?Cade Roux2009-11-30T17:47:22Z2009-11-30T17:47:22ZI suggest you take this to the Business of Software board or similar Stack Exchange.http://stackoverflow.com/questions/1819513/big-performance-difference-1hr-to-1-minute-found-in-sql-can-you-explain-why/1819533#1819533Comment by Cade Roux on Big performance difference (1hr to 1 minute ) found in SQL. Can you explain why?Cade Roux2009-11-30T17:45:30Z2009-11-30T17:45:30ZWhy? Because even deterministic scalar functions are evaluated at least once per row. Deterministic scalar function with identical parameters on a row will only be evaluated once per row, but will still be evaluated on subsequent rows even if called with the same parameters.http://stackoverflow.com/questions/1819513/big-performance-difference-1hr-to-1-minute-found-in-sql-can-you-explain-why/1819914#1819914Comment by Cade Roux on Big performance difference (1hr to 1 minute ) found in SQL. Can you explain why?Cade Roux2009-11-30T17:43:30Z2009-11-30T17:43:30ZSorry, when I first read the usage of RAND(), I thought you were doing SELECT fn(RAND(seed)) from tbl, which of course is the same as SELECT fn(a_number) FROM tbl since you are reseeding with the same value. In any case, the information regarding scalar function behavior is the correct interpretation of what's going on it your case.http://stackoverflow.com/questions/1799834/is-it-possible-to-restore-a-sql-server-database-from-a-virtual-drive/1799951#1799951Comment by Cade Roux on Is it possible to restore a SQL Server database from a virtual drive?Cade Roux2009-11-25T21:50:01Z2009-11-25T21:50:01ZSUBST drive letters wouldn't be visible to the engine, much like mapped network drive letters which are mapped with net use or upon login. There probably are virtual disks which will work, however.http://stackoverflow.com/questions/1799588/working-free-text-editor-for-windows-7/1799625#1799625Comment by Cade Roux on Working free text-editor for windows 7Cade Roux2009-11-25T20:07:54Z2009-11-25T20:07:54Z+1 for hilarity: "refuse to put any effort into your own productivity"