Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. iaresean

    Select rows with first row of a related table

    Hi r937; Well just about any 2 tables with a 1-to-many relationship will do. Say for arguments sake I have a table of People, and another table of Jobs. I want to select all the people from the people table along with the first job that they did. Thanks again; Sean. [peace]
  2. iaresean

    Select rows with first row of a related table

    Hi All; Been a while since I have visited Tek-Tips, but I small SQL problem that has been bothering me. I need to select a set from a table and include the first row of a related set of data from another table. Does anyone know of an elegant statement that SQL Server 2005 may provide to solve...
  3. iaresean

    Restricting Internet downloads on my wireless network.

    Hi All; I have a small wireless network at home and I am trying to set a download cap on one of the machines in my network that is getting some download abuse. I have full access to the router and machines. Is there any tools out there (preferably free!) that could help me achieve this...
  4. iaresean

    Generic Search Stored Procedure

    Hi SQLSister, Wow, I can see that you have had some bad experiences with this before. You can rest assured that this is not going to be for any high usage front end components. It is merely to power a simple backend list, that I believe will have at most 2 people ever using it - there is...
  5. iaresean

    Generic Search Stored Procedure

    Hi Chance; Yes I did come across this, but this isn't exactly what I am looking for. My requirements are fairly different. Sean. [peace]
  6. iaresean

    Generic Search Stored Procedure

    :-( Should I go for a temp table rather? Sean. [peace]
  7. iaresean

    Generic Search Stored Procedure

    Sorry, forgot to change the last command 'PRINT' to 'EXEC'. Please do so to get the stored proc to work. Regards; Sean. [peace]
  8. iaresean

    Generic Search Stored Procedure

    Cool, thanks ca8msm. I used some of your logic (fetching the columns), and managed to create my own procedure. Managed to learn some things in the process. Thanks for the guidance all the same. :-) CREATE PROCEDURE sp_SearchTable ( @TableName nvarchar(100), @SearchStr nvarchar(100)...
  9. iaresean

    Generic Search Stored Procedure

    Hi All; Does anyone know of (or know how to make) a generic search stored procedure. I really need a procedure that will allow me to pass it a table name along with a search string. Using the search string the stored procedure will search through any string type columns (varchar, nvarchar...
  10. iaresean

    Enterprise Library 3.0 released!

    Hey, I did post a link to the project. But, LOL, it looks like codeplex currently has an ASP.NET error they need to resolve. :-D Hectic. You can download it here in the mean time: http://www.microsoft.com/downloads/details.aspx?FamilyID=62ef5f79-daf2-43af-9897-d926f03b9e60&DisplayLang=en It...
  11. iaresean

    Enterprise Library 3.0 released!

    This message is targeted at ca8msm, the person who introduced me to the Microsoft Patterns and Practices Enterprise Library. What a wonderful addition to my programming arsenal it has been! My coding has grown so much and I can now easily incorporate standards based enterprise ready solutions...
  12. iaresean

    Return group of words/characters around the found search term.

    ca8msm - Wow, seems like whereever I go a tip from you is sure to follow. :-D Thanks for the advice, I will certainly do some reading up about this DLL. ---------- AlexCuse - I look forward to hearing from gmmastros, if he is in the mood of sharing his wisdom. :-) Unfortunately this...
  13. iaresean

    Return group of words/characters around the found search term.

    Thanks alot! I will certainly put your logic to the test. Yeah the string manipulation would be alot easier if SQL Server 2000 had built in Regular Expression support. :-) Thanks again; Sean. [peace]
  14. iaresean

    Return group of words/characters around the found search term.

    Ok, I think I might be able to rustle up something. For interests sake, how would I do it using a varchar data type? :-D Sean. [peace]
  15. iaresean

    Return group of words/characters around the found search term.

    Hi All; I have written a basic search stored procedure to search through content areas of my website contained within columns of type 'text'. What I am trying to do however is return to return a grouping of words around the matched text to display as a teaser on the frontend. So if one...
  16. iaresean

    Ultimate Image Manipulation

    Hi All; I am trying to build myself the perfect Image manipulation script based on my re-occurring requirements within my company. I have incorporated a few good image scripts (Including the free BetterImageProcessor). The last requirement I would like to satisfy for my script is this: I...
  17. iaresean

    Implementing a Currency Converter in my 2.0 site.

    Unfortunately not. :-( The banner add will most likely include an offsite link, and the results page is hosted by xe.com too. How I wish it weren't so though. :-) Sean. [peace]
  18. iaresean

    Implementing a Currency Converter in my 2.0 site.

    Hi All; Does anyone have any good experience with implementing a free currency converter into their site? I am looking for a solution that preferably won't require me to have any off site links, and I would like the results to stay in my site. I have been to XE.COM and OANDA.COM, however...
  19. iaresean

    Replacing Nulls with a temp value.

    Thank you. Sean. [peace]

Part and Inventory Search

Back
Top