Jeremiah Peschka

1,088
reputation
66 views

Registered User

name Jeremiah Peschka
member for 1 year
seen Nov 23 at 18:09
website
location Columbus, OH
age 31
Jeremiah Peschka is a SQL Server developer in the Columbus, OH area with HMB Information System Developers. Jeremiah has broad IT experience in systems administration, web design, application development, and database development spread across diverse platforms. In his current role, Jeremiah specializes in developing solutions based on the SQL Server platform. Jeremiah blogs at http://facility9.com and is currently the Group Leader for CBusPASS - the Columbus chapter of PASS. facility9.com twitter
Nov
24
accepted Efficient way to Query a Delimited Varchar Field in SQL
Sep
17
awarded  Yearling
Jul
28
comment A strange sql bug (multipart identifier) about sql server
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.
Jul
15
comment Efficient way to Query a Delimited Varchar Field in SQL
Installation instructions can be found here: msdn.microsoft.com/en-us/library/… And here's a big list of "how to" topics on FTS from Microsoft: msdn.microsoft.com/en-us/library/…
Jul
15
comment Efficient way to Query a Delimited Varchar Field in SQL
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.
Jul
15
answered Efficient way to Query a Delimited Varchar Field in SQL
Jul
15
comment Efficient way to Query a Delimited Varchar Field in SQL
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.