User Jeremiah Peschka - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:46:33Z http://stackoverflow.com/feeds/user/11780 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149808/stored-procedure-ownership-chaining 0 Stored Procedure Ownership Chaining Jeremiah Peschka 2008-09-29T17:40:31Z 2009-10-20T08:01:44Z <p>I have several stored procedures in my database that are used to load data from a datamart that is housed in a separate database. These procedures are, generally, in the form:</p> <pre><code> CREATE PROCEDURE load_stuff WITH EXECUTE AS OWNER AS INSERT INTO my_db.dbo.report_table ( column_a ) SELECT column_b FROM data_mart.dbo.source_table WHERE foo = 'bar'; </code></pre> <p>These run fine when I execute the query in SQL Server Management Studio. When I try to execute them using EXEC load_stuff, the procedure fails with a security warning:</p> <p><em>The server principal "the_user" is not able to access the database "data_mart" under the current security context.</em></p> <p>The OWNER of the sproc is dbo, which is the_user (for the sake of our example). The OWNER of both databases is also the_user and the_user is mapped to dbo (which is what SQL Server should do).</p> <p>Why would I be seeing this error in SQL Server? Is this because the user in question is being aliased as dbo and I should use a different user account for my cross-database data access?</p> <p><strong>Edit</strong> I understand that this is because SQL Server disables cross database ownership chaining by default, which is good. However, I'm not sure of the best practice in this situation. If anyone has any input on the best practice for this scenario, it would be greatly appreciated.</p> <p><strong>Edit 2</strong> The eventual solution was to set TRUSTWORTHY ON on both of the databases. This allows for limited ownership chaining between the two databases without resorting to full database ownership chaining.</p> http://stackoverflow.com/questions/769484/transaction-count-after-execute-error 0 Transaction count after EXECUTE error Jeremiah Peschka 2009-04-20T18:19:49Z 2009-08-26T10:06:45Z <p>I have a stored procedure that looks something like:</p> <pre><code> CREATE PROCEDURE my_procedure @val_1 INT, @val_2 INT AS SET NOCOUNT ON; SET XACT_ABORT ON; BEGIN TRY BEGIN TRANSACTION; INSERT INTO table_1(col_1, col_2) VALUES (@val_1, @val_2); COMMIT TRANSACTION; END TRY BEGIN CATCH IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION; DECLARE @ERROR_SEVERITY INT, @ERROR_STATE INT, @ERROR_NUMBER INT, @ERROR_LINE INT, @ERROR_MESSAGE NVARCHAR(4000); SELECT @ERROR_SEVERITY = ERROR_SEVERITY(), @ERROR_STATE = ERROR_STATE(), @ERROR_NUMBER = ERROR_NUMBER(), @ERROR_LINE = ERROR_LINE(), @ERROR_MESSAGE = ERROR_MESSAGE(); RAISERROR('Msg %d, Line %d, :%s', @ERROR_SEVERITY, @ERROR_STATE, @ERROR_NUMBER, @ERROR_LINE, @ERROR_MESSAGE); END CATCH </code></pre> <p>When this code is executed through the database, everything runs correctly. When execute through ADO.NET I get back the following error message:</p> <p>"The INSERT statement conflicted with the FOREIGN KEY constraint "<code>FK_table1_table2</code>". The conflict occurred in database "<code>my_database</code>", table "<code>dbo.table_1</code>", column '<code>col_1</code>'. Transaction count after EXECUTE indicates that a COMMIT or ROLLBACK TRANSACTION statement is missing. Previous count = 1, current count = 0. "</p> <p>Is this happening because the <code>XACT_ABORT</code> setting is forcing a transaction from ADO.NET to be rolled back? What's the best way to go about avoiding this error?</p> http://stackoverflow.com/questions/1132217/efficient-way-to-query-a-delimited-varchar-field-in-sql/1132515#1132515 4 Answer by Jeremiah Peschka for Efficient way to Query a Delimited Varchar Field in SQL Jeremiah Peschka 2009-07-15T16:34:53Z 2009-07-15T16:34:53Z <p>Since normalization is not an option, the next best option is going to be to configure and use Full Text Search. This will maintain an internal search index that will make it very easy for you to search within your data.</p> <p>The problem with solutions like LIKE '%pattern%' is that this will produce a full table scan (or maybe a full index scan) that could produce locks on a large amount of the data in your table, which will slow down any operations that hit the table in question.</p> http://stackoverflow.com/questions/783211/calculating-the-difference-between-two-dates 2 Calculating the difference between two dates Jeremiah Peschka 2009-04-23T19:33:19Z 2009-06-08T04:41:50Z <p>I have a report that calculates multiple date differences (in business days, not DATEDIFF) for a variety of business reasons that are far too dull to get into.</p> <p>Basically the query (right now) looks something like</p> <pre><code>SELECT -- some kind of information DATEDIFF(dd, DateOne, DateTwo) AS d1_d2_diff, DATEDIFF(dd, DateOne, DateThree) AS d1_d3_diff, DATEDIFF(dd, DateTwo, DateThree) AS d2_d3_diff, DATEDIFF(dd, DateTwo, DateFour) AS d2_d4_diff FROM some_table; </code></pre> <p>I could change this calculation to use a scalar function, but I don't want the scalar function to be executed 4 times for every row in the result set.</p> <p>I have a Calendar table in the database:</p> <pre><code>CREATE TABLE Calendar ( Date DATETIME NOT NULL, IsWeekday BIT, IsHoliday BIT ); </code></pre> <p>Would a table-valued function and CROSS APPLY be a good choice here? If so, how would I go about writing such a thing? Or is a scalar function my best bet?</p> <p><strong>Important Note</strong> All date values in our database have been stripped of time so it is safe to ignore any code that would reset days to midnight.</p> http://stackoverflow.com/questions/920821/net-data-adapter-timeout-sp-issue/920966#920966 0 Answer by Jeremiah Peschka for .NET Data Adapter Timeout SP Issue Jeremiah Peschka 2009-05-28T13:55:55Z 2009-05-28T13:55:55Z <p>When you say it runs fine in SSMS directly, do you mean that executing the stored procedure itself runs fine, or that the underlying SQL runs fine?</p> <p>From your description, this sounds like an example of parameter sniffing. Basically, SQL Server has cached an execution plan that is optimal for one set of parameters but exceptionally poor for most others.</p> <p>You can use the RECOMPILE option on the query in your stored procedure to force recompilation on every execution. If this isn't called frequently or compilation doesn't take long, you can make use of <a href="http://www.sqlmag.com/Article/ArticleID/94369/sql%5Fserver%5F94369.html" rel="nofollow">this trick</a>.</p> <p>The other solution is to copy the stored procedure parameters into local variables and use those in the query. Example:</p> <pre><code>CREATE PROCEDURE my_proc @var1 INT AS DECLARE @_var1 AS INT; SET @_var1 = @var1; SELECT col1, col2, col3 FROM t1 WHERE t1.pk = @_var1; </code></pre> http://stackoverflow.com/questions/806126/choosing-the-appropriate-precision-for-decimalx-y/806547#806547 1 Answer by Jeremiah Peschka for Choosing the appropriate precision for decimal(x,y) Jeremiah Peschka 2009-04-30T11:59:13Z 2009-04-30T11:59:13Z <p>The main reason to use a smaller data precision, despite using the same amount of storage space, is to convey meaning to future users of the system. Which is also why it's important to use appropriate data types - e.g. DECIMAL(15,4) for numbers, MONEY for money.</p> http://stackoverflow.com/questions/229622/working-with-optional-stored-procedure-parameters 0 Working with optional stored procedure parameters Jeremiah Peschka 2008-10-23T13:03:55Z 2009-04-08T13:00:27Z <p>I am working on a stored procedure with several optional parameters. Some of these parameters are single values and it's easy enough to use a WHERE clause like:</p> <pre><code>WHERE (@parameter IS NULL OR column = @parameter) </code></pre> <p>However, in some instances, the WHERE condition is more complicated:</p> <pre><code>WHERE (@NewGroupId IS NULL OR si.SiteId IN (SELECT gs.SiteId FROM [UtilityWeb].[dbo].[GroupSites] AS gs WHERE gs.GroupId = @NewGroupId)) </code></pre> <p>When I uncomment these complicated WHERE clauses, the query execution time doubles and the execution plan becomes remarkably more complicated. While the execution plan doesn't bother me, doubling the execution time of a query is a definite problem.</p> <p>Is there a best practice or pattern that others have found for working with optional parameters in their stored procedures?</p> <p>Is this one of those instances where dynamic SQL would be a better solution?</p> http://stackoverflow.com/questions/681653/can-you-get-the-column-names-from-a-sqldatareader/681677#681677 0 Answer by Jeremiah Peschka for Can you get the column names from a sqldatareader? Jeremiah Peschka 2009-03-25T13:51:11Z 2009-03-25T13:51:11Z <p>You sure can. </p> <pre> protected void GetColumNames_DataReader() { System.Data.SqlClient.SqlConnection SqlCon = new System.Data.SqlClient.SqlConnection( "server=localhost;database=northwind;trusted_connection=true" ); System.Data.SqlClient.SqlCommand SqlCmd = new System.Data.SqlClient.SqlCommand( "SELECT * FROM Products", SqlCon ); SqlCon.Open(); System.Data.SqlClient.SqlDataReader SqlReader = SqlCmd.ExecuteReader(); System.Int32 _columncount = SqlReader.FieldCount; System.Web.HttpContext.Current.Response.Write( "SqlDataReader Columns" ); System.Web.HttpContext.Current.Response.Write( " " ); for ( System.Int32 iCol = 0; iCol </pre> <p>This is originally from: <a href="http://www.dotnetjunkies.ddj.com/Article/B82A22D1-8437-4C7A-B6AA-C6C9BE9DB8A6.dcik" rel="nofollow" title="How To Retrieve Column Names Using A DataReader and DataSet">http://www.dotnetjunkies.ddj.com/Article/B82A22D1-8437-4C7A-B6AA-C6C9BE9DB8A6.dcik</a></p> http://stackoverflow.com/questions/642093/hibernate-query-runs-slow-in-the-system-but-fast-when-run-directly/681652#681652 1 Answer by Jeremiah Peschka for Hibernate Query runs slow in the system, but fast when run directly. Jeremiah Peschka 2009-03-25T13:43:16Z 2009-03-25T13:43:16Z <p>From the description of your problem, it sounds like you're running into parameter sniffing. Essentially, SQL Server is creating a query plan based on an older set of parameter values that were passed in and which do not create an effective execution plan for the currently running query. </p> <p>Typically I resolve this issue by passing the parameter values into local variables and using those in my query or by using OPTION (RECOMPILE). However, since you are using Hibernate my usual solution isn't an option for you. As I understand it, the best option is going to be to use Hibernate to run a native SQL query using prepareStatement() or createSQLQuery() which, unfortunately, removes some of the benefits of using Hibernate.</p> http://stackoverflow.com/questions/406616/fetch-two-next-and-two-previous-entries-in-a-single-sql-query/406661#406661 4 Answer by Jeremiah Peschka for Fetch two next and two previous entries in a single SQL query Jeremiah Peschka 2009-01-02T12:29:01Z 2009-01-02T13:40:35Z <p>You'll have to forgive the SQL Server style variable names, I don't remember how MySQL does variable naming.</p> <pre><code>SELECT * FROM photos WHERE photo_id = @current_photo_id UNION ALL SELECT * FROM photos WHERE photo_id &gt; @current_photo_id ORDER BY photo_id ASC LIMIT 2 UNION ALL SELECT * FROM photos WHERE photo_id &lt; @current_photo_id ORDER BY photo_id DESC LIMIT 2; </code></pre> <p>This query assumes that you might have non-contiguous IDs. It could become problematic in the long run, though, if you have a lot of photos in your table since TOP is often evaluated <em>after</em> the entire result set has been retrieved from the database. YMMV.</p> <p>In a high load scenario, I would probably use these queries, but I would also prematerialize them on a regular basis so that each photo had a PreviousPhotoOne, PreviousPhotoTwo, etc column. It's a bit more maintenance, but it works well when you have a lot of static data and need performance.</p> http://stackoverflow.com/questions/380500/which-are-the-best-sql-sql-server-blogs/385233#385233 1 Answer by Jeremiah Peschka for Which are the best SQL / SQL Server blogs? Jeremiah Peschka 2008-12-22T00:15:36Z 2008-12-22T00:15:36Z <p><a href="http://statisticsio.com" rel="nofollow">Jason Massie</a></p> <p><a href="http://brentozar.com" rel="nofollow">Brent Ozar</a></p> <p>Louis Davidson <a href="http://drsql.spaces.live.com/" rel="nofollow">Personal</a>, <a href="http://sqlblog.com/blogs/louis_davidson/default.aspx" rel="nofollow">SQLBlog.com</a></p> <p><a href="http://jmkehayias.blogspot.com/" rel="nofollow">JM Kehayias</a></p> <p><a href="http://scarydba.wordpress.com/" rel="nofollow">Grant Fritchey</a></p> <p>Jason also puts together semi-regular lists of good SQL blogs that he's found: <a href="http://statisticsio.com/Home/tabid/36/articleType/ArticleView/articleId/310/Good-SQL-Blogs-from-around-the-Tubes.aspx" rel="nofollow">Good SQL Blogs from around the Tubes</a> and <a href="http://statisticsio.com/Home/tabid/36/articleType/ArticleView/articleId/289/NewNewish-SQL-Blogsat-least-to-me.aspx" rel="nofollow">New\Newish SQL Blogs(at least to me)</a></p> http://stackoverflow.com/questions/383760/django-objects-filter-how-expensive-would-this-be/383829#383829 -1 Answer by Jeremiah Peschka for Django objects.filter, how "expensive" would this be? Jeremiah Peschka 2008-12-20T22:35:20Z 2008-12-20T22:35:20Z <p>As Aaron mentioned, you should get a hold of the query text that is going to be run against the database and use an EXPLAIN (or other some method) to view the query execution plan. Once you have a hold of the execution plan for the query you can see what is going on in the database itself. There are a lot of operations that see very expensive to run through procedural code that are very trivial for any database to run, especially if you provide indexes that the database can use for speeding up your query.</p> <p>If I read your question correctly, you're retrieving a result set of all rows in the Soknad table. Once you have these results back you use the filter() method to trim down your results meet your criteria. From looking at the Django documentation, it looks like this will do an in-memory filter rather than re-query the database (of course, this really depends on which data access layer you're using and not on Django itself).</p> <p>The most optimal solution would be to use a full-text search engine (Lucene, ferret, etc) to handle this for you. If that is not available or practical the next best option would be to to construct a query predicate (WHERE clause) before issuing your query to the database and let the database perform the filtering. </p> <p><strong>However,</strong> as with all things that involve the database, the real answer is 'it depends.' The best suggestion is to try out several different approaches using data that is close to production and benchmark them over at least 3 iterations before settling on a final solution to the problem. It may be just as fast, or even faster, to filter in memory rather than filter in the database.</p> http://stackoverflow.com/questions/347624/how-to-transform-rows-to-columns/347673#347673 7 Answer by Jeremiah Peschka for How to transform rows to columns Jeremiah Peschka 2008-12-07T15:23:51Z 2008-12-07T15:23:51Z <p>Like others have said, you can use the PIVOT and UNPIVOT operators. Unfortunately, one of the problems with both PIVOT and UNPIVOT are that you need to know the values you will be pivoting on in advance or else use dynamic SQL.</p> <p>It sounds like, in your case, you're going to need to use dynamic SQL. To get this working well you'll need to pull a list of the products being used in your query. If you were using the AdventureWorks database, your code would look like this:</p> <pre><code>USE AdventureWorks; GO DECLARE @columns NVARCHAR(MAX); SELECT x.ProductName INTO #products FROM (SELECT p.[Name] AS ProductName FROM Purchasing.Vendor AS v INNER JOIN Purchasing.PurchaseOrderHeader AS poh ON v.VendorID = poh.VendorID INNER JOIN Purchasing.PurchaseOrderDetail AS pod ON poh.PurchaseOrderID = pod.PurchaseOrderID INNER JOIN Production.Product AS p ON pod.ProductID = p.ProductID GROUP BY p.[Name]) AS x; SELECT @columns = STUFF( (SELECT ', ' + QUOTENAME(ProductName, '[') AS [text()] FROM #products FOR XML PATH ('') ), 1, 1, ''); SELECT @columns; </code></pre> <p>Now that you have your columns, you can pull everything that you need pivot on with a dynamic query:</p> <pre><code>DECLARE @sql NVARCHAR(MAX); SET @sql = 'SELECT CustomerName, ' + @columns + ' FROM ( // your query goes here ) AS source PIVOT (SUM(order_count) FOR product_name IN (' + @columns + ') AS p'; EXEC sp_executesql @sql </code></pre> <p>Of course, if you need to make sure you get decent values, you may have to duplicate the logic you're using to build @columns and create an @coalesceColumns variable that will hold the code to COALESCE(col_name, 0) if you need that sort of thing in your query.</p> http://stackoverflow.com/questions/290668/basic-template-for-transactions-in-sqlserver/290753#290753 2 Answer by Jeremiah Peschka for Basic template for Transactions in sqlserver Jeremiah Peschka 2008-11-14T17:13:03Z 2008-11-14T17:13:03Z <p>I typically do something like this inside my stored procedures. It keeps things nice and safe and passes along any errors that I encounter.</p> <pre><code>SET XACT_ABORT ON; BEGIN TRY BEGIN TRANSACTION; -- Code goes here COMMIT TRANSACTION; END TRY BEGIN CATCH IF @@TRANCOUNT &gt; 0 ROLLBACK TRANSACTION; DECLARE @ERROR_SEVERITY INT, @ERROR_STATE INT, @ERROR_NUMBER INT, @ERROR_LINE INT, @ERROR_MESSAGE NVARCHAR(4000); SELECT @ERROR_SEVERITY = ERROR_SEVERITY(), @ERROR_STATE = ERROR_STATE(), @ERROR_NUMBER = ERROR_NUMBER(), @ERROR_LINE = ERROR_LINE(), @ERROR_MESSAGE = ERROR_MESSAGE(); RAISERROR('Msg %d, Line %d, :%s', @ERROR_SEVERITY, @ERROR_STATE, @ERROR_NUMBER, @ERROR_LINE, @ERROR_MESSAGE); END CATCH </code></pre> http://stackoverflow.com/questions/265051/why-would-like-be-faster-than 4 Why would LIKE be faster than =? Jeremiah Peschka 2008-11-05T12:50:37Z 2008-11-14T11:55:16Z <p>A co-worker recently ran into a situation where a query to look up security permissions was taking ~15 seconds to run using an = comparison on UserID (which is a UNIQUEIDENTIFIER). Needless to say, the users were less than impressed.</p> <p>Out of frustration, my co-worker changed the = comparison to use a LIKE and the query sped up to under 1 second.</p> <p>Without knowing anything about the data schema (I don't have access to the database or execution plans), what could potentially cause this change in performance?</p> <p>(Broad and vague question, I know)</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919 86 Answer by Jeremiah Peschka for What are five things you hate about your favorite language? Jeremiah Peschka 2008-11-13T13:38:32Z 2008-11-13T13:38:32Z <p>Wow, I'm surprised that SQL hasn't made it up here yet. Guess that means nobody loves it :)</p> <ul> <li>Inconsistent syntax across implementations</li> <li>Subtle code differences can have massive performance ramifications for seemingly obscure reasons</li> <li>Poor support for text manipulation</li> <li>Easy cost of entry but steep learning curve towards mastering the language</li> <li>Minimal standardization across the community for best practices, this includes syntax style.</li> </ul> http://stackoverflow.com/questions/286755/a-powerful-management-tool-for-mysql-with-similar-features-to-sql-server-manageme/286833#286833 0 Answer by Jeremiah Peschka for A powerful management tool for MySQL with similar features to SQL Server Management studio Jeremiah Peschka 2008-11-13T12:49:52Z 2008-11-13T12:49:52Z <p>I would suggest <a href="http://www.aquafold.com/" rel="nofollow">Aqua Data Studio</a>. I don't think that it has a free version, however it is pretty powerful and has a ton of great features that are similar to SQL Server Management Studio.</p> http://stackoverflow.com/questions/285956/anything-like-the-debian-package-manager-for-windows/285965#285965 5 Answer by Jeremiah Peschka for Anything like the Debian Package Manager for Windows? Jeremiah Peschka 2008-11-13T00:52:40Z 2008-11-13T00:52:40Z <p>You could try <a href="http://windows-get.sourceforge.net/" rel="nofollow">win-get</a>. It's an open source clone of apt-get for windows with a fairly sizable <a href="http://windows-get.sourceforge.net/listapps.php" rel="nofollow">application repository</a>.</p> <p>I've used it on several previous workstations to get software installed quickly and maintain version of heavily developed applications. It works well.</p> http://stackoverflow.com/questions/285899/numeric38-0-as-primary-key-column-good-bad-who-cares/285942#285942 3 Answer by Jeremiah Peschka for numeric(38,0) as primary key column; good, bad, who cares? Jeremiah Peschka 2008-11-13T00:41:05Z 2008-11-13T00:41:05Z <p>Barring the storage considerations and some initial confusion from future DBAs, I don't see any reason why NUMERIC(38,0) would be a bad idea. You're allowing for up to 9.99 x 10^38 records in your table, which you will certainly never reach. My quick digging into this didn't turn up any glaring reason not to use it. I suspect that your only potential issue will be the storage space consumed by that, but seeing as how storage space is so cheap, that shouldn't be an issue.</p> <p>I've seen this a fair number of times in Oracle databases since it's a pretty big default value that you don't need to think about when you're creating a table, similar to using INT or BIGINT by default in SQL Server.</p> http://stackoverflow.com/questions/265081/how-to-create-default-instance-after-creating-a-named-instance/265116#265116 2 Answer by Jeremiah Peschka for How to create default instance after creating a named instance? Jeremiah Peschka 2008-11-05T13:23:37Z 2008-11-05T13:23:37Z <p>Going off of Alan's answer, when you install a new instance as the default instance, take note of the directories it is using to store data and log files (or create a default location like D:\MSSQL\Log and D:\MSSQL\Data).</p> <p>You can then detach the databases from the named instance and move the files to the new data and log directories and re-attach them in SSMS.</p> http://stackoverflow.com/questions/254451/schema-owner-for-objects-in-ms-sql/254645#254645 6 Answer by Jeremiah Peschka for Schema, Owner for objects in MS SQL Jeremiah Peschka 2008-10-31T19:22:34Z 2008-10-31T19:22:34Z <p>The use of schemas is exceptionally beneficial when you have security concerns.</p> <p>If you have multiple applications that access the database, you might not want to give the Logistics department access to Human Resources records. So you put all of your Human Resources tables into an hr schema and only allow access to it for users in the hr role.</p> <p>Six months down the road, Logistics now needs to know internal expense accounts so they can send all of these palettes of blue pens to the correct location people. You can then create a stored procedure that executes as a user that has permission to view the hr schema as well as the logistics schema. The Logistics users never need to know what's going on in HR and yet they still get their data.</p> <p>You can also use schemas the way cfeduke has suggested and just use them to group things in the object browser. If you are doing this, just be careful because you might end up creating Person.Address and Company.Address when you really just need a single dbo.Address (I'm not knocking your example, cfeduke, just using it to illustrate that both address tables might be the same or they might be different and that YMMV).</p> http://stackoverflow.com/questions/243193/mirroring-table-modifications 0 Mirroring Table Modifications Jeremiah Peschka 2008-10-28T13:02:04Z 2008-10-31T00:20:07Z <p>I have a set of tables that are used to track bills. These tables are loaded from an SSIS process that runs weekly.</p> <p>I am in the process of creating a second set of tables to track adjustments to the bills that are made via the web. Some of our clients hand key their bills and all of those entries need to be backed up on a more regular schedule (the SSIS fed data can always be imported again so it isn't backed up).</p> <p>Is there a best practice for this type of behavior? I'm looking at implementing a DDL trigger that will parse the ALTER TABLE call and change the table being called. This is somewhat painful, and I'm curious if there is a better way.</p> http://stackoverflow.com/questions/243193/mirroring-table-modifications/252233#252233 0 Answer by Jeremiah Peschka for Mirroring Table Modifications Jeremiah Peschka 2008-10-31T00:20:07Z 2008-10-31T00:20:07Z <p>I ended up using a DDL trigger to make a copy of changes from one table to the other. The only problem is that if a table or column name contains part of a reserved word - ARCH for VARCHAR - it will cause problems with the modification script.</p> <p>Thanks, once again, to <a href="http://stackoverflow.com/users/26837/brent-ozar">Brent Ozar</a> for error checking my thoughts before I <a href="http://facility9.com/2008/10/28/mirroring-table-changes-through-ddl-triggers/" rel="nofollow">blogged them</a>.</p> <pre><code>-- Create pvt and pvtWeb as test tables CREATE TABLE [dbo].[pvt]( [VendorID] [int] NULL, [Emp1] [int] NULL, [Emp2] [int] NULL, [Emp3] [int] NULL, [Emp4] [int] NULL, [Emp5] [int] NULL ) ON [PRIMARY]; GO CREATE TABLE [dbo].[pvtWeb]( [VendorID] [int] NULL, [Emp1] [int] NULL, [Emp2] [int] NULL, [Emp3] [int] NULL, [Emp4] [int] NULL, [Emp5] [int] NULL ) ON [PRIMARY]; GO IF EXISTS(SELECT * FROM sys.triggers WHERE name = ‘ddl_trigger_pvt_alter’) DROP TRIGGER ddl_trigger_pvt_alter ON DATABASE; GO -- Create a trigger that will trap ALTER TABLE events CREATE TRIGGER ddl_trigger_pvt_alter ON DATABASE FOR ALTER_TABLE AS DECLARE @data XML; DECLARE @tableName NVARCHAR(255); DECLARE @newTableName NVARCHAR(255); DECLARE @sql NVARCHAR(MAX); SET @sql = ”; -- Store the event in an XML variable SET @data = EVENTDATA(); -- Get the name of the table that is being modified SELECT @tableName = @data.value(‘(/EVENT_INSTANCE/ObjectName)[1]‘, ‘NVARCHAR(255)’); -- Get the actual SQL that was executed SELECT @sql = @data.value(‘(/EVENT_INSTANCE/TSQLCommand/CommandText)[1]‘, ‘NVARCHAR(MAX)’); -- Figure out the name of the new table SET @newTableName = @tableName + ‘Web’; -- Replace the original table name with the new table name -- str_replace is from Robyn Page and Phil Factor’s delighful post on -- string arrays in SQL. The other posts on string functions are indispensible -- to handling string input -- -- http://www.simple-talk.com/sql/t-sql-programming/tsql-string-array-workbench/ -- http://www.simple-talk.com/sql/t-sql-programming/sql-string-user-function-workbench-part-1/ --http://www.simple-talk.com/sql/t-sql-programming/sql-string-user-function-workbench-part-2/ SET @sql = dbo.str_replace(@tableName, @newTableName, @sql); -- Debug the SQL if needed. --PRINT @sql; IF OBJECT_ID(@newTableName, N’U’) IS NOT NULL BEGIN BEGIN TRY -- Now that the table name has been changed, execute the new SQL EXEC sp_executesql @sql; END TRY BEGIN CATCH -- Rollback any existing transactions and report the full nasty -- error back to the user. IF @@TRANCOUNT &gt; 0 ROLLBACK TRANSACTION; DECLARE @ERROR_SEVERITY INT, @ERROR_STATE INT, @ERROR_NUMBER INT, @ERROR_LINE INT, @ERROR_MESSAGE NVARCHAR(4000); SELECT @ERROR_SEVERITY = ERROR_SEVERITY(), @ERROR_STATE = ERROR_STATE(), @ERROR_NUMBER = ERROR_NUMBER(), @ERROR_LINE = ERROR_LINE(), @ERROR_MESSAGE = ERROR_MESSAGE(); RAISERROR(‘Msg %d, Line %d, :%s’, @ERROR_SEVERITY, @ERROR_STATE, @ERROR_NUMBER, @ERROR_LINE, @ERROR_MESSAGE); END CATCH END GO ALTER TABLE pvt ADD test INT NULL; GO EXEC sp_help pvt; GO ALTER TABLE pvt DROP COLUMN test; GO EXEC sp_help pvt; GO </code></pre> http://stackoverflow.com/questions/231125/should-i-index-a-bit-field-in-sql-server/231186#231186 1 Answer by Jeremiah Peschka for Should I index a bit field in SQL Server? Jeremiah Peschka 2008-10-23T19:47:18Z 2008-10-23T19:47:18Z <p>As others have said, you'll want to measure this. I don't recall where I've read this, but a column needs to have very high cardinality (around 95%) in order for an index to be effective. Your best test for this would be to build the index and examine the execution plans for the 0 and 1 values of the BIT field. If you see an index seek operation in the execution plan then you know that your index will be used. </p> <p>Your best course of action would be to test the with a basic SELECT * FROM table WHERE BitField = 1; query and slowly build out the functionality from there step by step until you have a realistic query for your application, examining the execution plan with every step to make sure that the index seek is still being utilized. Admittedly, there is no guarantee that this execution plan will be used in production, but there is a good chance that it will be.</p> <p>Some information can be found on the <a href="http://sql-server-performance.com/articles/per/indexing_low_sel_cols_p2.aspx" rel="nofollow">sql-server-performance.com forums</a> and in the referenced <a href="http://www.sql-server-performance.com/articles/per/indexing_low_sel_cols_p2.aspx" rel="nofollow">article</a></p> http://stackoverflow.com/questions/203274/css-performance/203319#203319 0 Answer by Jeremiah Peschka for CSS Performance Jeremiah Peschka 2008-10-15T00:21:41Z 2008-10-15T00:21:41Z <p>As William said, you're not going to see any issue from the browsers parsing the CSS. What you might see, though, is an issue with the number of HTTP requests that a client can open to a single host. Typically this defaults to two. So, if you do put your CSS in multiple files, you might want to put them on a separate sub-domain and they will be treated as a different host which will allow the HTML page to be loaded at the same time as your CSS files.</p> http://stackoverflow.com/questions/101423/how-do-you-continue-to-improve-your-sql-skills 7 How do you continue to improve your SQL skills? Jeremiah Peschka 2008-09-19T12:26:33Z 2008-10-08T22:17:05Z <p>How do SQL developers go about keeping up on current techniques and trends in the SQL world? Are there any blogs, books, articles, techniques, etc that are being used to keep up to date and in the know?</p> <p>There are a lot of opportunities out their for OO, procedural, and functional programmers to take part in a variety of open source projects, but it seems to me that the FOSS avenue is a bit more closed for SQL developers.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/135530/will-my-index-be-used-if-all-columns-are-not-used 4 Will my index be used if all columns are not used? Jeremiah Peschka 2008-09-25T19:42:28Z 2008-10-08T15:46:10Z <p>I have an index on columns A, B, C, D of table T</p> <p>I have a query that pulls from T with A, B, C in the WHERE clause.</p> <p>Will the index be used or will a separate index be needed that only includes A, B, C?</p> http://stackoverflow.com/questions/163917/optionmaxdop-1-in-sql-server/167435#167435 0 Answer by Jeremiah Peschka for OPTION(MAXDOP 1) in SQL Server Jeremiah Peschka 2008-10-03T15:30:24Z 2008-10-03T15:30:24Z <p>As Kaboing mentioned, MAXDOP(n) actually controls the number of CPU cores that are being used in the query processor.</p> <p>On a completely idle system, SQL Server will attempt to pull the tables into memory as quickly as possible and join between them in memory. It could be that, in your case, it's best to do this with a single CPU. This might have the same effect as using OPTION (FORCE ORDER) which forces the query optimizer to use the order of joins that you have specified. IN some cases, I have seen OPTION (FORCE PLAN) reduce a query from 26 seconds to 1 second of execution time.</p> <p>Books Online goes on to say that possible values for MAXDOP are:</p> <p>0 - Uses the actual number of available CPUs depending on the current system workload. This is the default value and recommended setting. 1 - Suppresses parallel plan generation. The operation will be executed serially. 2-64 - Limits the number of processors to the specified value. Fewer processors may be used depending on the current workload. If a value larger than the number of available CPUs is specified, the actual number of available CPUs is used. </p> <p>I'm not sure what the best usage of MAXDOP is, however I would take a guess and say that if you have a table with 8 partitions on it, you would want to specify MAXDOP(8) due to I/O limitations, but I could be wrong.</p> <p>Here are a few quick links I found about MAXDOP:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms188611.aspx" rel="nofollow">Books Online: Degree of Parallelism</a></p> <p><a href="http://support.microsoft.com/kb/329204" rel="nofollow">General guidelines to use to configure the MAXDOP option</a></p> http://stackoverflow.com/questions/165102/whats-wrong-with-linq-to-sql/167393#167393 -2 Answer by Jeremiah Peschka for What's wrong with Linq to SQL? Jeremiah Peschka 2008-10-03T15:20:44Z 2008-10-03T15:20:44Z <p>This question was asked once before <a href="http://stackoverflow.com/questions/72168/does-linq-to-sql-provide-faster-response-times-than-using-adonet-and-oledb#73805">over here</a>. But, in essence, LINQ to SQL generates sub-optimal execution plans in your database. For every different length of parameter you search for, it will force the creation of a different execution plan. This will eventually clog up the memory in your database that is being used to cache execution plans and you will start expiring older queries, which will need to be recompiled when they come up again.</p> <p>As I mentioned in the question I linked to, it's a matter of what you're trying to accomplish. If you're willing to trade execution speed for development speed, LINQ to SQL might be a good choice. If you're concerned about execution speed, there are other ORMs/DALs/solutions available that may take longer to work with but will provide you with future proofing against schema changes and better performing solutions at the cost of additional development overhead.</p> http://stackoverflow.com/questions/167304/is-it-possible-to-pivot-data-using-linq/167332#167332 1 Answer by Jeremiah Peschka for Is it possible to Pivot data using LINQ? Jeremiah Peschka 2008-10-03T15:08:36Z 2008-10-03T15:08:36Z <p>There is a post on the MSDN forums on how to accomplish this. Basically, you need to push your data into a data table and then loop over the table to push it into a new, pivoted, datatable. <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3048978&amp;SiteID=1" rel="nofollow">MSDN</a></p> http://stackoverflow.com/questions/1193708/a-strange-sql-bug-multipart-identifier-about-sql-server Comment by Jeremiah Peschka on A strange sql bug (multipart identifier) about sql server Jeremiah Peschka 2009-07-28T13:10:40Z 2009-07-28T13:10:40Z This is most likely happening because table..column is invalid but database..table is valid. If you could post a query sample that would make it possible to see the potential cause of your problem. http://stackoverflow.com/questions/1132217/efficient-way-to-query-a-delimited-varchar-field-in-sql/1132515#1132515 Comment by Jeremiah Peschka on Efficient way to Query a Delimited Varchar Field in SQL Jeremiah Peschka 2009-07-15T17:38:31Z 2009-07-15T17:38:31Z Installation instructions can be found here: <a href="http://msdn.microsoft.com/en-us/library/ms142490(SQL.90).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> And here's a big list of &quot;how to&quot; topics on FTS from Microsoft: <a href="http://msdn.microsoft.com/en-us/library/ms142503(SQL.90).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1132217/efficient-way-to-query-a-delimited-varchar-field-in-sql/1132515#1132515 Comment by Jeremiah Peschka on Efficient way to Query a Delimited Varchar Field in SQL Jeremiah Peschka 2009-07-15T17:07:22Z 2009-07-15T17:07:22Z With SQL Server 2005 you will have to get a DBA to install the FTS feature, so depending on the situation this could present difficulties. Once FTS is installed, creating the indexes is simple. This could be an easier sell than normalization, though, because other applications that access the source data won't need to be changed. http://stackoverflow.com/questions/1132217/efficient-way-to-query-a-delimited-varchar-field-in-sql/1132251#1132251 Comment by Jeremiah Peschka on Efficient way to Query a Delimited Varchar Field in SQL Jeremiah Peschka 2009-07-15T16:26:52Z 2009-07-15T16:26:52Z Outside of normalization (which isn't an option to OP), and PATINDEX, FTS is the other performant option. FTS is, honestly, probably the best option since it is going to be optimized for the volume of data you have and most likely will return better results in less time and with fewer I/O operations than PATINDEX. http://stackoverflow.com/questions/783211/calculating-the-difference-between-two-dates/783272#783272 Comment by Jeremiah Peschka on Calculating the difference between two dates Jeremiah Peschka 2009-04-24T11:35:32Z 2009-04-24T11:35:32Z The calendar table that I have goes from January 1, 1999 to January 2028 and only has ~10,000 rows in it. Adding new dates is pretty trivial with the script we use, as it should be. http://stackoverflow.com/questions/783211/calculating-the-difference-between-two-dates/783259#783259 Comment by Jeremiah Peschka on Calculating the difference between two dates Jeremiah Peschka 2009-04-23T19:49:27Z 2009-04-23T19:49:27Z You know, I should've mentioned that all my dates are at midnight. I'll add that at the top. http://stackoverflow.com/questions/769484/transaction-count-after-execute-error/769503#769503 Comment by Jeremiah Peschka on Transaction count after EXECUTE error Jeremiah Peschka 2009-04-20T18:25:33Z 2009-04-20T18:25:33Z So a better approach might be to not use XACT_ABORT in sprocs if I'm doing TRY/CATCH error handling? http://stackoverflow.com/questions/681583/sql-injection-on-insert/681600#681600 Comment by Jeremiah Peschka on SQL injection on INSERT Jeremiah Peschka 2009-03-25T14:16:33Z 2009-03-25T14:16:33Z Very well explained. Nicely done. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919 Comment by Jeremiah Peschka on What are five things you hate about your favorite language? Jeremiah Peschka 2009-02-08T23:16:53Z 2009-02-08T23:16:53Z @Dalin in comparison with, say C# or Ruby, SQL's text manipulation is god awful, especially when you take regex text replacement into account. http://stackoverflow.com/questions/285956/anything-like-the-debian-package-manager-for-windows/285965#285965 Comment by Jeremiah Peschka on Anything like the Debian Package Manager for Windows? Jeremiah Peschka 2009-01-29T12:29:44Z 2009-01-29T12:29:44Z Try this one instead: <a href="http://win-get.sourceforge.net/" rel="nofollow">win-get.sourceforge.net</a> it looks very active http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919 Comment by Jeremiah Peschka on What are five things you hate about your favorite language? Jeremiah Peschka 2009-01-02T13:47:57Z 2009-01-02T13:47:57Z @Kev I thought it stood for Legume. http://stackoverflow.com/questions/149808/stored-procedure-ownership-chaining/158015#158015 Comment by Jeremiah Peschka on Stored Procedure Ownership Chaining Jeremiah Peschka 2009-01-02T12:33:21Z 2009-01-02T12:33:21Z Actually dbo is a user (not a login) that is mapped to an instance level login. db_owner is the role you're thinking of. http://stackoverflow.com/questions/406616/fetch-two-next-and-two-previous-entries-in-a-single-sql-query/406639#406639 Comment by Jeremiah Peschka on Fetch two next and two previous entries in a single SQL query Jeremiah Peschka 2009-01-02T12:30:24Z 2009-01-02T12:30:24Z This would work in an ideal world where you have a contiguous identity column, but sometimes you end up with gaps (failed inserts, deletions, etc). I found it's better to use TOP x combined with WHERE to get the closest ones. http://stackoverflow.com/questions/380500/which-are-the-best-sql-sql-server-blogs/381601#381601 Comment by Jeremiah Peschka on Which are the best SQL / SQL Server blogs? Jeremiah Peschka 2008-12-22T00:07:29Z 2008-12-22T00:07:29Z Joe Celko is now writing for simple-talk.com on a semi-regular basis. http://stackoverflow.com/questions/383760/django-objects-filter-how-expensive-would-this-be/383829#383829 Comment by Jeremiah Peschka on Django objects.filter, how "expensive" would this be? Jeremiah Peschka 2008-12-21T23:39:36Z 2008-12-21T23:39:36Z Guess I misunderstood objects.all() <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#retrieving-all-objects" rel="nofollow">docs.djangoproject.com/en/dev/&hellip;</a>