I have a function that generates insert statements for about 50 different tables and returns all of the insert statements in a variable, @sqlStatement. I am encountering a problem with orphaned rows when executing @sqlStatement. I know that the DB should enforce referential integrity, but the schema lacks most of the foreign constraints that are assumed by its architecture, allowing users to make updates that are otherwise prohibited (such as deleting rows from a parent table while there are child records referencing it). I'm not allowed to change anything about the DB schema. Rather, my question is on performance.
Currently, @sqlStatement is built like this:
SET @sqlStatement = CASE @p_TableName
WHEN 'TableName1' THEN
'
INSERT INTO ...
SELECT DISTINCT ...
FROM ...
' +
CASE WHEN @p_GenerateTableJoins = 1 THEN
'
INNER JOIN ...
INNER JOIN ...
INNER JOIN ...
'
ELSE ' ' END +
'
WHERE ...
'
WHEN 'TableName2' THEN
'
INSERT INTO ...
SELECT DISTINCT ...
FROM ...
' +
CASE WHEN @p_GenerateTableJoins = 1 THEN
'
INNER JOIN ...
INNER JOIN ...
INNER JOIN ...
'
ELSE ' ' END +
'
WHERE ...
'
and so on.
The orphaned rows show up when @p_GenerateTableJoins = 0, so the INSERT statements don't have any of the INNER JOINS. When @p_GenerateTableJoins = 1, the INNER JOINS are all there and I don't end up with any orphaned rows.
So, my question is this: how big of a performance impact will it have if I include all of the INNER JOINS for this function?
SET STATISTICS IO ONwill give you some metrics on how SQL Server is getting the data, but you need to know how to interpret those too - just like the execution plan. – swasheck Jan 25 at 20:22INSERT INTO, an actual plan generation will perform the insert. As Rachel said, why do you need the insert as part of the plan analysis? That part is going to be pretty predictable - clustered index insert (+ maybe some NC index updates). Also you can get an estimated plan from Plan Explorer, which won't run the query, but it will be much less useful. – Aaron Bertrand Jan 25 at 20:57