User Tom H. - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:22:23Zhttp://stackoverflow.com/feeds/user/16036http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797997/value-of-column-in-row-with-previous-key/1798108#17981082Answer by Tom H. for Value of column in row with previous keyTom H.2009-11-25T16:21:32Z2009-11-25T16:38:22Z<p>This should work in pretty much any RDBMS:</p>
<pre><code>SELECT
UPD.id,
UPD.views,
(UPD.views - COALESCE(LAST_UPD.views, 0))
FROM
Updates UPD
INNER JOIN Stuff S ON
S.id = UPD.id AND
S.owner = 'someone'
INNER JOIN Updates LAST_UPD ON
LAST_UPD.id = UPD.id AND
LAST_UPD.time < UPD.time
LEFT OUTER JOIN Updates UPD2 ON
UPD2.id = LAST_UPD.id AND
UPD2.time < UPD.time AND
UPD2.time > LAST_UPD.time
WHERE
UPD2.id IS NULL AND
UPD.time = '01-01-1970 00:00:00'
</code></pre>
<p>What you're basically doing is saying, "Give me a previous update (LAST_UPD.time < UPD.time) for which there are no other updates after it and before this one (the left join and UPD2.id IS NULL).</p>
http://stackoverflow.com/questions/1797683/join-over-multiple-columns/1797792#17977920Answer by Tom H. for JOIN over multiple columns?Tom H.2009-11-25T15:41:51Z2009-11-25T15:41:51Z<pre><code>SELECT
MT.id1,
MT.id2,
SUM(MT.weight)
FROM
@IDs IDs
INNER JOIN My_Table MT ON
MT.id1 = IDs.id OR
MT.id2 = IDs.id
GROUP BY
id1,
id2
</code></pre>
<p>Or if you want the weights double-counted (once for id1 and once for id2) then:</p>
<pre><code>SELECT
IDs.id,
SUM(MT.weight)
FROM
@IDs IDs
INNER JOIN My_Table MT ON
MT.id1 = IDs.id OR
MT.id2 = IDs.id
GROUP BY
id1,
id2
</code></pre>
http://stackoverflow.com/questions/1791670/problem-with-select-statement-via-a-linked-server/1791815#17918150Answer by Tom H. for Problem with select statement via a linked serverTom H.2009-11-24T17:57:50Z2009-11-24T17:57:50Z<p>It's been a few years since I've worked with linked servers, but have you tried running profiler against the linked server (the live DB) to see that it's receiving the select statement <strong>and</strong> that it's receiving it correctly?</p>
http://stackoverflow.com/questions/1766567/change-case-of-a-column-name/1766719#17667191Answer by Tom H. for Change case of a column nameTom H.2009-11-19T21:32:47Z2009-11-19T21:48:32Z<p>Give this a shot:</p>
<pre><code>CREATE FUNCTION dbo.Get_Proper_Cased_String
(@my_string VARCHAR(MAX))
RETURNS VARCHAR(MAX)
AS
BEGIN
DECLARE
@work_string VARCHAR(MAX),
@final_string VARCHAR(MAX),
@position SMALLINT
SET @final_string = ''
SET @position = CHARINDEX(' ', @my_string)
WHILE (@position > 0)
BEGIN
SET @work_string = LEFT(@my_string, @position - 1)
IF (@work_string <> '')
SET @final_string = @final_string + ' ' + UPPER(SUBSTRING(@work_string, 1, 1)) + LOWER(SUBSTRING(@work_string, 2, LEN(@work_string) - 1))
SET @my_string = RIGHT(@my_string, LEN(@my_string) - @position)
SET @position = CHARINDEX(' ', @my_string)
END
/* changed this to LTRIM to remove trailing space that was getting converted to underscore */
SET @final_string = LTRIM (@final_string + ' ' + UPPER(SUBSTRING(@my_string, 1, 1)) + LOWER(SUBSTRING(@my_string, 2, LEN(@my_string) - 1)))
RETURN @final_string
END
GO
SELECT
'EXEC sp_rename ''' + O.name + '.' + C.name + ''', ''' + REPLACE(dbo.Get_Proper_Cased_String(REPLACE(C.name, '_', ' ')), ' ', '_') + ''', ''COLUMN'''
FROM
sys.objects O
INNER JOIN sys.columns C ON
C.object_id = O.object_id
WHERE
O.object_id = OBJECT_ID('<table_name>')
</code></pre>
<p>This code assumes that the only non-character value that you have is "_" and that you don't have successive underscores (i.e., MY____COLUMN would give the wrong results).</p>
http://stackoverflow.com/questions/1766375/sql-server-2005-add-area-code-to-records-shorter-than-10-characters/1766412#17664120Answer by Tom H. for SQL Server 2005- Add area code to records shorter than 10 charactersTom H.2009-11-19T20:49:26Z2009-11-19T20:49:26Z<p>Ideally, the area code would be a separate column in your database. Since it's not designed that way though:</p>
<pre><code>UPDATE
PhoneNumbers
SET
phone_number = '123' + phone_number
WHERE
LEN(phone_number) = 7
</code></pre>
<p>Of course, if people have formatted the phone numbers then this won't work. I would need to know more about the data that's in your table. You might have to do something like:</p>
<pre><code>UPDATE
PhoneNumbers
SET
phone_number = '(123) ' + phone_number
WHERE
LEN(REPLACE(REPLACE(REPLACE(REPLACE(phone_number, '-', ''), '(', ''), ')', ''), '.', '') = 7
</code></pre>
<p>If people typed in stuff like "ext. 7" then that would further complicate things. See why it's better to break out a phone number instead of just having one column? ;)</p>
http://stackoverflow.com/questions/1742538/i-want-to-import-data-from-my-sql-proc-to-csv-file/1742695#17426950Answer by Tom H. for I want to import data from my sql proc to csv fileTom H.2009-11-16T15:01:02Z2009-11-16T15:01:02Z<p>Try changing the "out" to "queryout"</p>
http://stackoverflow.com/questions/1724188/how-to-make-string-keys-unique-by-adding-numeric-suffix/1724448#17244480Answer by Tom H. for How to make string keys unique by adding numeric suffix?Tom H.2009-11-12T18:43:06Z2009-11-12T18:43:06Z<p>You haven't posted the real problem here and my guess is that there is a <strong>MUCH</strong> better solution to that then what you want to do. That being said, the code below should give you what you want. Use it at your own peril.</p>
<p>I've been using MS SQL almost exclusively lately, but I think that this is mostly ANSI compatible. The exception would be the RTRIM function. There is a TRIM function in the ANSI standards, but that doesn't seem to be supported in Transact-SQL, which uses RTRIM and LTRIM.</p>
<pre><code>SELECT
n,
RTRIM(s + ' ' + COALESCE
(
(
SELECT
NULLIF(CAST(COUNT(*) AS VARCHAR(10)), 0) AS cnt
FROM
Some_Table T2
WHERE
T2.s = T1.s AND
T2.n < T1.n
), ''
)) AS s
FROM
Some_Table T1
</code></pre>
<p>P.S. - If those are your real column names, your naming convention for the columns is horrible. ;)</p>
http://stackoverflow.com/questions/1724303/overriten-script-in-sql-server/1724318#17243181Answer by Tom H. for Overriten script in SQL ServerTom H.2009-11-12T18:22:29Z2009-11-12T18:22:29Z<p>If you have a backup of the database, it will contain the stored procedures that were in the DB at the time of the backup. You can restore it to another DB or server and get the code from there.</p>
http://stackoverflow.com/questions/1717740/modelling-country-adjacency-in-sql/1717806#17178062Answer by Tom H. for Modelling country adjacency in SQLTom H.2009-11-11T20:20:52Z2009-11-11T20:20:52Z<p>This is just off the top of my head, so I don't know if it's the most performant solution and it may need a tweak, but I think it should work:</p>
<pre><code>SELECT
BORDER.country
FROM
Countries AS C
LEFT OUTER JOIN Node_Adjacency NA1 ON
NA1.node_id_1 = C.country_id OR
NA1.node_id_2 = C.country_id
INNER JOIN Countries AS BORDER ON
(
BORDER.country_id = NA1.node_id_1 OR
BORDER.country_id = NA1.node_id_2
) AND
BORDER.country_id <> C.country_id
WHERE
C.country = 'CROATIA'
</code></pre>
<p>Since your graph is not directed, I don't think that it makes sense to store it as a directed graph. You might also want to Google "Celko SQL Graph" as he has done a lot of advanced work on trees, graphs, and hierarchies in SQL and has an excellent book devoted to the subject.</p>
http://stackoverflow.com/questions/1716364/sorting-sql-by-first-two-characters-of-fields/1716443#17164431Answer by Tom H. for Sorting SQL by first two characters of fieldsTom H.2009-11-11T16:36:56Z2009-11-11T16:36:56Z<p>I hope that you never end up with two sales reps who happen to have the same initials.</p>
<p>Also, sorting and filtering are two completely different things. You talk about sorting in the question title and first paragraph, but your question is about filtering. Since you can just ORDER BY on the field and it will use the first two characters anyway, I'll give you an answer for the filtering part.</p>
<p>You don't mention your RDBMS, but this will work in any product:</p>
<pre><code>SELECT
my_columns
FROM
My_Table
WHERE
sales_rep LIKE 'BS%'
</code></pre>
<p>If you're using a variable/parameter then:</p>
<pre><code>SELECT
my_columns
FROM
My_Table
WHERE
sales_rep LIKE @my_param + '%'
</code></pre>
<p>You can also use:</p>
<pre><code>LEFT(sales_rep, 2) = 'BS'
</code></pre>
<p>I would stay away from:</p>
<pre><code>SUBSTRING(sales_rep, 1, 2) = 'BS'
</code></pre>
<p>Depending on your SQL engine, it might not be smart enough to realize that it can use an index on the last one.</p>
http://stackoverflow.com/questions/259039/getting-counts-for-a-paged-sql-search-stored-procedure1Getting counts for a paged SQL search stored procedureTom H.2008-11-03T15:45:11Z2009-11-10T16:32:46Z
<p>I've written a paged search stored procedure using SQL Server 2005. It takes a number of parameters and the search criteria is moderately complex.</p>
<p>Due to the front-end architecture I need to be able to return the number of results that would come back <strong>without</strong> actually returning the results. The front end would then call the stored procedure a second time to get the actual results.</p>
<p>On the one hand I can write two stored procedures - one to handle the count and one to handle the actual data, but then I need to maintain the search logic in at least two different places. Alternatively, I can write the stored procedure so that it takes a bit parameter and based on that I either return data or just a count. Maybe fill a temporary table with the data and if it's count only just do a count from that, otherwise do a select from it. The problem here is that the count process could be optimized so that's a lot of extra overhead it seems (have to get unneeded columns, etc.). Also, using this kind of logic in a stored procedure could result in bad query plans as it goes back and forth between the two uses.</p>
<p>The amount of data in the system isn't too high (only a couple million rows for even the larger tables). There may be many concurrent users though.</p>
<p>What are people's thoughts on these approaches? Has anyone solved this problem before in a way that I haven't thought of?</p>
<p>They <strong>CANNOT</strong> take the results and count at the same time from a single call.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1703244/mysql-query-to-find-row-with-max-with-tie-breaker/1703277#17032772Answer by Tom H. for Mysql: Query to find row with max with tie breakerTom H.2009-11-09T19:44:47Z2009-11-09T19:44:47Z<p>This should work:</p>
<pre><code>SELECT
T1.User
FROM
MyUnnamedTable T1
LEFT OUTER JOIN MyUnnamedTable T2 ON
T2.Region = T1.Region AND
(
T2.Points > T1.Points OR
(T2.Points = T1.Points AND T2.Last_Updated > T1.Last_Updated)
)
WHERE
T2.User IS NULL AND
T1.Region BETWEEN x AND y
</code></pre>
<p>You're basically saying, "Give me all of the users for which there is no other user who is in the same region and either has more points or the same points with a later updated date."</p>
http://stackoverflow.com/questions/84453/reuse-of-sql-stored-procedures-across-applications2Reuse of SQL stored procedures across applicationsTom H.2008-09-17T15:25:49Z2009-11-08T00:00:33Z
<p>I'm curious about people's approaches to using stored procedures in a database that is accessed by many applications. Specifically, do you tend to keep different sets of stored procedures for each application, do you try to use a shared set, or do you do a mix?</p>
<p>On the one hand, reuse of SPs allows for fewer changes when there is a model change or something similar and ideally less maintenance. On the other hand, if the needs of the applications diverge, changes to a stored procedure for one application can break other applications. I should note that in our environment, each application has its own development team, with poor communication between them. The data team has better communication though, and is mostly tasked with the stored procedure writing.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1595129/can-i-retrieve-config-values-for-ssis-from-xml-in-a-table0Can I retrieve config values for SSIS from XML in a table?Tom H.2009-10-20T14:42:26Z2009-10-20T17:48:14Z
<p>My current client stores all of their configuration information for the enterprise applications in a single table that holds XML. They then use a custom built front end to maintain the configuration values.</p>
<p>I'm writing a fairly straight-forward import process for them using SSIS. I need to make the connection strings and some other information configurable and they want me to use their table. It seems like SSIS expects a file though. Is there any way that I can point SSIS to retrieve its configuration values from an XML stream instead of a path to a file?</p>
<p>The configuration table that they use does not match the structure of a standard SSIS configuration table that you would get using SQL Server as a configuration source with the standard wizard.</p>
<p>Thanks for any advice!</p>
http://stackoverflow.com/questions/711303/setting-up-a-linked-server-from-sql-server-2005-to-postgresql0Setting up a linked server from SQL Server 2005 to PostgreSQLTom H.2009-04-02T19:45:15Z2009-08-29T20:00:30Z
<p>Since I struggled a bit with this one and couldn't find a good online source with simple steps, here it is.</p>
http://stackoverflow.com/questions/1261831/having-to-rebuild-indexes-twice-on-a-table1Having to rebuild indexes twice on a tableTom H.2009-08-11T17:25:36Z2009-08-12T10:12:37Z
<p>I have a table in a SQL 2005 database which is brand new. As part of our application deployment we load the table with about 2.6M rows. Once that is done, the indexes on the table are all rebuilt. Then the users are let into the system and queries against that table time out. I can then rebuild the indexes (using the same exact script that was used after the import) and the queries are lightning fast.</p>
<p>I've checked that there are no other major data changes to the table after the index rebuilds. Any ideas on what else might cause this behavior?</p>
<p>Here's a sample of what the index rebuild script looks like:</p>
<pre><code>DROP INDEX dbo.My_Table.Index1
DROP INDEX dbo.My_Table.Index2
ALTER INDEX PK_My_Table ON dbo.My_Table REBUILD
CREATE NONCLUSTERED INDEX Index1 ON dbo.My_Table (column_1 ASC)
CREATE NONCLUSTERED INDEX Index2 ON dbo.My_Table (column_2 ASC)
</code></pre>
http://stackoverflow.com/questions/1155895/solutions-for-insertion-of-duplicate-keys/1156361#11563610Answer by Tom H. for Solutions for insertion of duplicate keys.Tom H.2009-07-20T22:38:17Z2009-07-20T22:38:17Z<p>I would probably do the following:</p>
<pre><code>INSERT INTO Target (A, B, C)
SELECT
S.A, S.B, S.C
FROM
Source S
LEFT OUTER JOIN Target T ON
T.A = S.A AND
T.B = S.B AND
T.C = S.C
WHERE
T.A IS NULL
</code></pre>
http://stackoverflow.com/questions/1156122/proc-sql-delete-takes-way-too-long/1156339#11563392Answer by Tom H. for Proc SQL Delete takes WAY too longTom H.2009-07-20T22:32:27Z2009-07-20T22:32:27Z<p>Are there a lot of other tables which have foreign keys to this table? If those tables don't have indexes on the foreign key column(s) then it could take awhile for SQL to determine whether or not it's safe to delete the rows, even if none of the other tables actually has a value in the foreign key column(s).</p>
http://stackoverflow.com/questions/1135260/how-can-i-write-this-sql-better/1135443#11354431Answer by Tom H. for How can I write this SQL better?Tom H.2009-07-16T04:51:15Z2009-07-16T04:51:15Z<p>Is there a reason that you need the rows to show up for Patient/Services if they don't have a status for that service? It seems like this should be something handled on the front-end to me.</p>
<p>That said, to get what you're looking for I'd probably use the following:</p>
<pre><code>SELECT
P.Code,
S.pkServiceID, --Ugh, I hate that naming convention
PS.fkPatientID,
PS.fkStatusID,
S.Code AS ServiceCode,
S.Description AS ServiceDescription,
ST.Code AS StatusCode,
ST.Description AS StatusDescription
PS.TsStart
FROM
Patient P
CROSS JOIN Service S
LEFT OUTER JOIN PatientStatus PS ON
PS.fkPatientID = P.pkPatientID AND
PS.fkServiceID = S.pkServiceID
LEFT OUTER JOIN PatientStatusPS2 ON
PS2.fkPatientID = P.pkPatientID AND
PS2.fkServiceID = S.pkServiceID AND
PS2.TsStart > PS.TsStart
LEFT OUTER JOIN Status ST ON
ST.pkStatusID = PS.fkStatusID
WHERE
PS2.fkPatientID IS NULL
</code></pre>
<p>Just a quick note... if you have two statuses with the exact same TsStart for the same patient and service then you will get duplicates here. You would get those from your original query as well though. You can code for that if needed. Just change the last line in the join on PS2 to:</p>
<pre><code>(PS2.TsStart > PS.TsStart OR (PS2.TsStart = PS.TsStart AND PS2.pkID > PS.pkID))
</code></pre>
http://stackoverflow.com/questions/1132798/sql-converting-text-fields/1132879#11328791Answer by Tom H. for SQL converting Text fieldsTom H.2009-07-15T17:47:45Z2009-07-15T17:47:45Z<pre><code>CREATE TABLE dbo.Test_Text_Convert
(
my_string TEXT NULL
)
GO
INSERT INTO dbo.Test_Text_Convert VALUES (NULL)
INSERT INTO dbo.Test_Text_Convert VALUES ('7.10')
INSERT INTO dbo.Test_Text_Convert VALUES ('xxx')
INSERT INTO dbo.Test_Text_Convert VALUES ('$20.20')
INSERT INTO dbo.Test_Text_Convert VALUES ('20.2020')
GO
SELECT
CASE
WHEN ISNUMERIC(CAST(my_string AS VARCHAR(MAX))) = 1
THEN CAST(ISNULL(CAST(my_string AS VARCHAR(MAX)), '0') AS MONEY)
ELSE 0
END
FROM
dbo.Test_Text_Convert
GO
</code></pre>
<p>I've set invalid strings to be 0, but you could easily change that behavior.</p>
http://stackoverflow.com/questions/1106115/sql-server-wont-use-my-index2SQL Server won't use my indexTom H.2009-07-09T19:54:36Z2009-07-14T01:57:58Z
<p>I have a fairly simple query:</p>
<pre><code>SELECT
col1,
col2…
FROM
dbo.My_Table
WHERE
col1 = @col1 AND
col2 = @col2 AND
col3 <= @col3
</code></pre>
<p>It was performing horribly, so I added an index on col1, col2, col3 (int, bit, and datetime). When I checked the query plan it was ignoring my index. I tried reordering the columns in the index in every possible configuration and it always ignored the index. When I run the query it does a clustered index scan (table size is between 700K and 800K rows) and takes 10-12 seconds. When I force it to use my index it returns instantly. I was careful to clear the cache and buffers between tests.</p>
<p>Other things I’ve tried:</p>
<pre><code>UPDATE STATISTICS dbo.My_Table
CREATE STATISTICS tmp_stats ON dbo.My_Table (col1, col2, col3) WITH FULLSCAN
</code></pre>
<p>Am I missing anything here? I hate to put an index hint in a stored procedure, but SQL Server just can’t seem to get a clue on this one. Anyone know any other things that might prevent SQL Server from recognizing that using the index is a good idea?</p>
<p>EDIT: One of the columns being returned is a TEXT column, so using a covering index or an INCLUDE won't work :(</p>
http://stackoverflow.com/questions/1083462/sql-get-first-not-null-value-from-parent-rows/1083499#10834991Answer by Tom H. for SQL Get first not null value from Parent RowsTom H.2009-07-05T05:18:46Z2009-07-05T05:18:46Z<p>Given your structure, Alex Martelli's solution is probably the best you'll find. Another option, if you can change the model, would be to change from a linked-list tree structure to the nested set model.</p>
<p>Joe Celko has <a href="http://rads.stackoverflow.com/amzn/click/1558609202" rel="nofollow">a book on trees and hierarchies</a> which goes into the various ways that you can model them and the advantages/disadvantages of each method. You can also probably find a lot of information on the subject through Google or Google Groups.</p>
<p>One of the disadvantages of the nested set model is that changes to the tree structure are a bit more expensive, but for products you're typically retrieving much more than you're updating. Especially moving things around between categories which is usually rare in most business cases.</p>
<p>Using the nested set model, the following would give you what you want:</p>
<pre><code>SELECT
P1.Name,
COALESCE(P1.Description, P2.Description) AS Description
FROM
Products P1
LEFT OUTER JOIN Products P2 ON
P2.lft < P1.lft AND
P2.rgt > P1.rgt AND
P2.Description IS NOT NULL
LEFT OUTER JOIN Products P3 ON
P3.lft < P1.lft AND P3.lft > P2.lft AND
P3.rgt > P1.rgt AND P3.rgt < P2.rgt AND
P3.Description IS NOT NULL
WHERE
P3.ID IS NULL
</code></pre>
http://stackoverflow.com/questions/1040267/delete-rows-with-matching-multiple-columns-same-table/1040318#10403181Answer by Tom H. for Delete rows with matching multiple columns same table.Tom H.2009-06-24T19:08:13Z2009-06-24T19:08:13Z<pre><code>DELETE
T1
FROM
My_Table T1
INNER JOIN My_Table T2 ON
T2.ssn = T1.ssn AND
T2.last_name = T1.last_name AND
T2.first_name = T1.first_name AND
T2.RF_name = T1.RF_name AND
T2.flag <> T1.flag
WHERE
T1.flag = 2050
</code></pre>
http://stackoverflow.com/questions/1013711/database-view-does-not-reflect-the-data-in-the-underying-table/1013767#10137672Answer by Tom H. for Database VIEW does not reflect the data in the underying TABLETom H.2009-06-18T16:35:50Z2009-06-18T20:51:24Z<p>A few possibilities:</p>
<ul>
<li><p>Your .NET application may not be pointing to where you or they think it is pointing. For example, it's pointed to a test server by mistake</p></li>
<li><p>If the view has an index on a float or numeric value, the value may appear different from the underlying query due to rounding</p></li>
<li><p>The ANSI_NULLS setting is specific to the view when it was created. If it's different from the setting during the select(s) on the underlying tables it could cause discrepancies for certain kinds of queries</p></li>
<li><p>The underlying table structures have changed and the view hasn't been refreshed (especially a problem if it uses "SELECT *")</p></li>
</ul>
<p>I'll edit this post if I think of any others.</p>
<p>EDIT: Here's an example of how the ANSI_NULLS setting can throw off your results:</p>
<pre><code>SET ANSI_NULLS ON
DECLARE
@i INT,
@j INT
SET @i = NULL
SET @j = 1
SELECT
CASE WHEN @i <> @j THEN 'Not Equal' ELSE 'Equal' END
SET ANSI_NULLS OFF
SELECT
CASE WHEN @i <> @j THEN 'Not Equal' ELSE 'Equal' END
</code></pre>
<p>The results which you should receive are:</p>
<pre><code>Equal
Not Equal
</code></pre>
http://stackoverflow.com/questions/1013257/how-to-insert-using-an-inverse-join-on-multiple-keys/1013589#10135891Answer by Tom H. for How to INSERT using an inverse JOIN on multiple keys?Tom H.2009-06-18T16:06:07Z2009-06-18T16:06:07Z<p>I would probably use:</p>
<pre><code>INSERT INTO CarList(CarColour, CarName, CarCompany)
SELECT
NC.CarColour,
NC.CarName,
NC.CarCompany
FROM
NewCars NC
LEFT OUTER JOIN CarList CL ON
CL.CarColour = NC.CarColour AND
CL.CarName = NC.CarName AND
CL.CarCompany = NC.CarCompany
WHERE
CL.MyID IS NULL
</code></pre>
http://stackoverflow.com/questions/737834/sqlite-optimizing-multi-select-insert/738114#7381142Answer by Tom H. for SQLite optimizing multi-select insertTom H.2009-04-10T16:05:40Z2009-06-17T18:15:17Z<p>Another way to write the SQL which might be faster (I don't have SQLite on which to test):</p>
<pre><code>SELECT
S.ID,
'1' AS TemplateID -- Is this really a string? Does it need to be?
FROM
Subscribers S
LEFT OUTER JOIN SubscriberGroups SG ON
SG.SubscriberID = S.ID
WHERE
SG.SubscriberID IS NULL AND
EXISTS
(
SELECT
*
FROM
SubscriberGroups SG2
WHERE
SG2.SubscriberID = S.ID AND
SG2.GroupID IN ('1', '2', '3') -- Again, really strings?
)
</code></pre>
<p>Matt's method should also work well. It all just depends on how SQLite decides to create the query plans.</p>
<p>Also, please note my comments. If those are really defined as INT data types in your database, there will be some extra processing to convert between the two differing data types. If they are strings in the database, is there a reason for that? Do you have non-numeric values in those columns?</p>
http://stackoverflow.com/questions/986259/how-to-effectively-do-database-as-of-queries/987118#9871181Answer by Tom H. for How to effectively do database as-of queries?Tom H.2009-06-12T15:00:04Z2009-06-12T15:00:04Z<p>This query will return duplicates if you have two rows with the same exact version time for a single car ID, but that's a matter of defining what you consider to be the "latest" one in that situation. I haven't had a chance to test this yet, but I think it will give you what you need. It's at least pretty close.</p>
<pre><code>SELECT
C.car_id,
C.car_version,
C.colour,
C.version_time AS car_version_time,
W.wheel_id,
W.wheel_version,
W.version_time AS wheel_version_time,
FROM
Cars C
LEFT OUTER JOIN Cars C2 ON
C2.car_id = C.car_id AND
C2.version_time <= @as_of_time AND
C2.version_time > C.version_time
LEFT OUTER JOIN Wheels W ON
W.car_id = C.car_id AND
W.version_time <= @as_of_time
LEFT OUTER JOIN Wheels W2 ON
W2.car_id = C.car_id AND
W2.wheel_id = W.wheel_id AND
W2.version_time <= @as_of_time AND
W2.version_time > W.version_time
WHERE
C.version_time <= @as_of_time AND
C2.car_id IS NULL AND
W2.wheel_id IS NULL
</code></pre>
http://stackoverflow.com/questions/981036/how-to-update-another-table-with-the-most-recent-data-in-sql/981165#9811651Answer by Tom H. for How to update another table with the most recent data in SQL?Tom H.2009-06-11T13:43:58Z2009-06-11T13:43:58Z<pre><code>UPDATE
T1
SET
f2 = T2.f2,
f3 = T2.f3 -- If it's a date, save it as a date, not a VARCHAR
FROM
dbo.Table1 T1
INNER JOIN Server.db.dbo.Table2 T2 ON
T2.f1 = T1.f1
LEFT OUTER JOIN Server.db.dbo.Table2 T2_later ON
T2_later.f1 = T2.f1 AND
T2_later.f3 > T2.f3
WHERE
T2_later.f1 IS NULL
</code></pre>
<p>This may have some performance problems doing it across servers if Table2 is large. It might be better to create a view in that database and use that for the updates:</p>
<pre><code>CREATE VIEW dbo.T2_Latest
AS
SELECT
T2.f1,
T2.f2,
T2.f3
FROM
dbo.Table2 T2
LEFT OUTER JOIN dbo.Table2 T2_later ON
T2_later.f1 = T2.f1 AND
T2_later.f3 > T2.f3
WHERE
T2_later.f1 IS NULL
</code></pre>
<p>Then you just need to join on f1 (you don't need that criteria in both the INNER JOIN and the WHERE clause by the way). The view will filter out the earlier rows BEFORE it needs to compare them across servers.</p>
<p>In SSIS there are other solutions, using the Merge component, Lookup component, or Join component which will probably work better.</p>
http://stackoverflow.com/questions/976593/how-do-i-return-a-new-identity-column-value-from-an-sqlserver-select-statement/976627#9766273Answer by Tom H. for How do I return a new IDENTITY column value from an SQLServer SELECT statement?Tom H.2009-06-10T16:11:44Z2009-06-10T16:11:44Z<p>In addition to @@IDENTITY, you should also look into SCOPE_IDENTITY() and IDENT_CURRENT(). You most likely want SCOPE_IDENTITY(). @@IDENTITY has a problem in that it might return an identity value created in a trigger on the actual table that you're trying to track.</p>
<p>Also, these are single-value functions. I don't know how the Oracle RETURNING keyword works.</p>
http://stackoverflow.com/questions/975042/sql-query-string-permutations/975963#9759630Answer by Tom H. for SQL query--String PermutationsTom H.2009-06-10T14:33:23Z2009-06-10T14:56:55Z<p>Ok, corrected version that I think handles all situations. This will work in MS SQL Server, so you may need to adjust it for your RDBMS as far as using the local table and the REPLICATE function. It assumes a passed parameter called @search_string. Also, since it's using VARCHAR instead of NVARCHAR, if you're using extended characters be sure to change that.</p>
<p>One last point that I'm just thinking of now... it will allow duplication of letters. For example, "GOOD" would find "DODO" even though there is only one "D" in "GOOD". It will NOT find words of greater length than your original word though. In other words, while it would find "DODO", it wouldn't find "DODODO". Maybe this will give you a starting point to work from though depending on your exact requirements.</p>
<pre><code>DECLARE @search_table TABLE (search_string VARCHAR(4000))
DECLARE @i INT
SET @i = 1
WHILE (@i <= LEN(@search_string))
BEGIN
INSERT INTO @search_table (search_string)
VALUES (REPLICATE('[' + @search_string + ']', @i)
SET @i = @i + 1
END
SELECT
word,
definition
FROM
My_Words
INNER JOIN @search_table ST ON W.word LIKE ST.search_string
</code></pre>
<p>The original query before my edit, just to have it here:</p>
<pre><code>SELECT
word,
definition
FROM
My_Words
WHERE
word LIKE REPLICATE('[' + @search_string + ']', LEN(@search_string))
</code></pre>
http://stackoverflow.com/questions/1800747/data-structure-problem-dont-want-to-store-a-list-as-text/1800767#1800767Comment by Tom H. on Data Structure problem, don't want to store a list as textTom H.2009-11-26T02:45:32Z2009-11-26T02:45:32ZI'd put the PK on package_id and product_id or at the VERY LEAST, put a unique index on them.http://stackoverflow.com/questions/1797997/value-of-column-in-row-with-previous-key/1798108#1798108Comment by Tom H. on Value of column in row with previous keyTom H.2009-11-25T16:37:10Z2009-11-25T16:37:10ZCorrect Andomar. I'll update my response to make that clearer.http://stackoverflow.com/questions/1784918/tableadapter-problem-between-dev-and-production-serverComment by Tom H. on tableadapter problem between dev and production serverTom H.2009-11-23T18:59:42Z2009-11-23T18:59:42ZWhat exactly is the problem that you're having?http://stackoverflow.com/questions/1744934/update-table-on-matching-text-type-of-data/1744966#1744966Comment by Tom H. on Update table on matching text type of dataTom H.2009-11-16T21:28:38Z2009-11-16T21:28:38ZJust keep in mind that if two rows exist with the same exact town name, the results will be unpredictable as to which ID you will get.http://stackoverflow.com/questions/1743861/grouping-dates-by-month-in-an-sql-server-query-stored-procedure/1743927#1743927Comment by Tom H. on Grouping dates by month in an sql server query (stored procedure)Tom H.2009-11-16T18:30:43Z2009-11-16T18:30:43Z+1 for using a simple solution and also taking into account stays that start before the 1st or end after the last day of the monthhttp://stackoverflow.com/questions/1742538/i-want-to-import-data-from-my-sql-proc-to-csv-file/1742695#1742695Comment by Tom H. on I want to import data from my sql proc to csv fileTom H.2009-11-16T15:29:10Z2009-11-16T15:29:10ZWhen I made that change it worked fine for me. Are you sure that xp_cmdshell is enabled on your server?http://stackoverflow.com/questions/1742538/i-want-to-import-data-from-my-sql-proc-to-csv-fileComment by Tom H. on I want to import data from my sql proc to csv fileTom H.2009-11-16T14:57:03Z2009-11-16T14:57:03ZAre you getting an error message? Is the file just not appearing?http://stackoverflow.com/questions/1742601/sql-is-there-a-better-way-of-passing-a-list-of-keys-for-use-in-a-where-clause/1742626#1742626Comment by Tom H. on SQL - Is there a better way of passing a list of keys, for use in a where clause, into a Stored Procedure?Tom H.2009-11-16T14:55:50Z2009-11-16T14:55:50ZHave you done any performance comparisons with this method or seen any? It's an interesting approach.http://stackoverflow.com/questions/1724181/reset-or-update-row-position-integer-in-database-table/1724286#1724286Comment by Tom H. on Reset or Update Row Position Integer in Database TableTom H.2009-11-12T18:54:14Z2009-11-12T18:54:14ZYou might want to order over the OrderRankInt, Name if you want to keep the currently saved ordering but just get rid of the duplicates.http://stackoverflow.com/questions/1724325/function-call-in-where-clause/1724338#1724338Comment by Tom H. on Function call in where clauseTom H.2009-11-12T18:50:05Z2009-11-12T18:50:05ZDan - the optimizer should not evaluate the function for each row in the first query - "WHERE Phone = dbo.FormatPhone(@Phone)"http://stackoverflow.com/questions/1724325/function-call-in-where-clause/1724338#1724338Comment by Tom H. on Function call in where clauseTom H.2009-11-12T18:48:58Z2009-11-12T18:48:58ZNo, those two queries are not the same. Doing "WHERE Phone = dbo.FormatPhone(@Phone)" and "WHERE Phone = @FormattedPhone" should be the same though.http://stackoverflow.com/questions/1715624/querying-parent-child-relationships-efficiently/1715657#1715657Comment by Tom H. on Querying Parent-child Relationships EfficientlyTom H.2009-11-11T14:54:20Z2009-11-11T14:54:20ZCelko's work on trees and hierarchies in SQL should be required reading for anyone in the RDBMS field.http://stackoverflow.com/questions/259039/getting-counts-for-a-paged-sql-search-stored-procedure/1709282#1709282Comment by Tom H. on Getting counts for a paged SQL search stored procedureTom H.2009-11-10T18:35:21Z2009-11-10T18:35:21ZAn interesting suggestion, thanks. We've already released the code into production and it's performing well, so I don't think that we'll be making any changes at this point, but I'll definitely keep this in mind for the future.http://stackoverflow.com/questions/259039/getting-counts-for-a-paged-sql-search-stored-procedure/1709064#1709064Comment by Tom H. on Getting counts for a paged SQL search stored procedureTom H.2009-11-10T18:34:28Z2009-11-10T18:34:28ZThanks for the suggestion. Unfortunately, as stated above, the front-end couldn't handle getting both results at once, even as an output parameter.http://stackoverflow.com/questions/1595129/can-i-retrieve-config-values-for-ssis-from-xml-in-a-table/1595206#1595206Comment by Tom H. on Can I retrieve config values for SSIS from XML in a table?Tom H.2009-10-30T19:24:57Z2009-10-30T19:24:57ZI was able to get this to work using an XML Task and XPath. It took a bit of monkeying around, but it works like a charm now. Had to add a script to remove trailing carriage returns.