Tom H.

6,068
Reputation
367 views

Registered User

Name Tom H.
Member for 1 year
Seen 1 hour ago
Website
Location Philadelphia, PA
Age 38
I've been doing SQL Server development and design for close to 15 years now. I originally started with front end development using VB, Clarion for Windows, and Borland's Delphi, but after becoming the "SQL guy" in our development group I started to specialize in that. Most of my work has been with MS SQL Server, although I've also worked with the Oracle and Sybase products. I attended Carnegie Mellon University where I studied Electrical and Computer Engineering.
1h
comment Database cascading error
Can you post the full table create scripts, including the FKs?
2h
answered T-SQL’s equivalent of Oracle’s %TYPE operator?
3h
answered Remove dupes from recordset excluding columns from dupe condition.
4h
comment SQL Update from a Select
How do you decide which value to use if a store has multiple orders against it and/or an order has multiple details?
4h
answered MySQL get rows but prefer one column value over another
4h
comment Invalid Number Error! Can’t seem to get around it.
Are you saying that the 100 is provided by an external system? Then just change the query to: WHERE person_uid = CAST(@value_from_external_system AS VARCHAR)
6h
answered Invalid Number Error! Can’t seem to get around it.
6h
comment Efficient implementation of faceted search in relational databases
Do you have tables set up already? Can you provide the structure?
6h
comment Use Where In with Param
Check out sommarskog.se/arrays-in-sql-2005.html for an analysis of the many possible split functions. Long, but well worth the read.
6h
comment Use Where In with Param
Check out sommarskog.se/arrays-in-sql-2005.html for an analysis of the many possible split functions. Long, but well worth the read.
7h
comment SQL - Table join where primary key in first table is part of key in second
Now that I'm seeing responses along two veins... do you want all locators where they have at least one of those remarks or where they have both?
7h
answered SQL - Table join where primary key in first table is part of key in second
8h
answered Most efficient way of getting record counts from a related table?
17h
comment Do link tables need a meaningless primary key field?
By "primary key" I'm guessing that you mean, "single-column primary key". That's a pretty important distinction. A composite primary key is also a primary key.
17h
comment Why does NULL = NULL evaluate to false in SQL server
It doesn't violate mathematics at all. I'm thinking of two numbers. I'm not going to tell you what they are though. So now you tell me, are they equal?
1d
comment Is it possible to create a Unique ID in an SQL Server View that will remain the same each time the view is called?
Guaranteeing an ordering doesn't do it though. It's not just the order of the rows it's also that no new rows can be added and rows can't be changed. In other words, the data would have to be completely static with the exception of adding rows to the very end in the ordering.
1d
answered Identify a specific sequence of records in a table
1d
comment SQL JOIN select top 1 from the many table
Duplicate: stackoverflow.com/questions/1563148/…
1d
comment Is it possible to create a Unique ID in an SQL Server View that will remain the same each time the view is called?
This will not guarantee that the numbers are the same every time. If I have (1, 1, 1) and (3, 3, 3) they will be 1 and 2 respectively. If I then add (2, 2, 2) then the (3, 3, 3) row will now become 3 and not 2.
1d
answered Is it possible to create a Unique ID in an SQL Server View that will remain the same each time the view is called?
1d
answered Deleting Database Rows and their References-Best Practices
1d
answered SQL-Query with a multi-part identifier problem within a subquery
1d
comment testing inequality with columns that can be null
Glad to hear that I could help :)
1d
answered SQL - Output a substring based on a search pattern ensuring first/last strings are full words
1d
accepted testing inequality with columns that can be null
1d
comment SQL - Get sales figure in 2 period
+1 for the very complete SQL code. You can do it without the subquery I think though. I've posted above.
1d
answered SQL - Get sales figure in 2 period
1d
answered c# Optimized Select string creation loop
1d
accepted SQL Bulkcopy for Client / Parent relationship
2d
comment testing inequality with columns that can be null
@prmatta - That's why I used all cap, bold letters for "never". Personally, I use the second format for just this reason (and the indexing issue) when coding stored procedures, etc.
2d
comment testing inequality with columns that can be null
@OMG Ponies - Thanks for the clarification. As for the function invalidating indexes, I mentioned that above in my P.S.
2d
answered testing inequality with columns that can be null
2d
answered MySQL to SQL Server transferring data
2d
revised life span of temp table
Tagged code as code
2d
answered Sending a summary of SQL Server Agent job failures
2d
revised SQL Query works quickly with 19 items in “IN” clause - much slower with 20. Why?
edited tags
2d
answered SQL Bulkcopy for Client / Parent relationship
2d
answered Importing Excel data to a already established SQL DB visual basic
2d
comment SQL: Best practice to store various fields in one table
Ugh! Stay away from the Name-Value pair design. It's nothing but trouble in the end. There are VERY few instances where its flexibility makes up for the other problems that it causes. Everything always thinks that there situation is one of those instances, but they very rarely are. If your table needs a new column, add a new column. You should be thinking about data types, lengths, constraints, etc. anyway when adding a new data element to your application/database.
2d
comment In MSSQL change column of type int to type text
There are a couple of answers that should get you through your problem, but I'd just like to add that the TEXT data type has a lot of "gotchas". You are almost certainly better off using VARCHAR(MAX) or NVARCHAR(MAX) assuming that your at SQL 2005 or later. Even if not, consider using a very large VARCHAR or NVARCHAR instead.
2d
comment In MSSQL change column of type int to type text
Instead of dropping, re-adding, and then filling bar, you could just drop it and rename tempbar.
2d
comment MySQL function to find the number of working days between two dates
A Calendar table has much more utility than solving just this one problem though. For example, the problem of retrieving counts by date in a table even for those dates which have no rows (return a zero). You can also add columns that are appropriate for your business as needed. The "is_weekend" column could probably be left out though. I included it mostly for simplicity.
2d
accepted How can I expand a PostgreSQL row into multiple rows for updating “custom fields”?
Dec
1
answered MySQL function to find the number of working days between two dates
Dec
1
comment SQL-Doesn’t return a value when the columns are multiplied.
Shouldn't you have received a syntax error of sorts then? Unless you were doing this through a front end which isn't properly catching errors.
Dec
1
comment SQL Join without multiple LEFT
You need to define what you want further. What DO you want returned if there are multiple towing charges for example? Do you want the latest one?
Dec
1
answered How can I expand a PostgreSQL row into multiple rows for updating “custom fields”?
Dec
1
comment How to store timezone in SQL Server 2005
TINYINT might not be big enough. There are literally hundreds of timezones around the world, because each little location wants to feel important and decide that their daylight savings changes at noon the day after everyone else, etc. Are database currently shows 245 distinct time zones. That will fit in a TINYINT, but barely.
Dec
1
comment Query driving a view and actual view not returning same results
Is it a materialized view?
Dec
1
comment SELECT STATMENT
The INNER JOINs will make a project with only two testers not show up. Probably not a good idea.