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 dencom 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: *

  • Users: NeilO123
  • Content: Threads
  • Order by date
  1. NeilO123

    Passing results to a variable

    Help to a begginer I am trying to pass the results of a SELECT LEN to a variable and then display the results of the variable, but I must have the code wrong as an example: USE AdventureWorks; GO DECLARE @varLen int SET @varlen = SELECT LEN(FirstName) SELECT @varLen FROM Person.Contact GO Any...
  2. NeilO123

    Can a store procedure be written in c#

    Can a store procedure be written in c# or Visual Basic using Visual Studio 2005 against a SQL Server 2005? I need to do a column parsing into other columns within the same row, in a multirow table. I would like to know, if I can convert my code into store procedure. If its possible, are there...

Part and Inventory Search

Back
Top