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 derfloh 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: joxa83
  • Content: Threads
  • Order by date
  1. joxa83

    CHECK_SUM returns same value for diff. inputs

    I was performing some case sensitive comparsions and as one of options was to use check sum, anyway I conluded that CHECK_SUM and BINARY_CHECK sum functions return same value for different inputs.As far as I know those functions are like hash functions and CHECKSUM applied over any two lists of...
  2. joxa83

    stored procedure with two result sets

    Is there possible two fill table with second result set returned by stored proc.For instance create proc test as begin select *from orders select *from Employees end insert into sometable exec test So I want to fill table 'sometable' with result set 'select *from Employees'. There by...
  3. joxa83

    rand function problem

    I need to call rand functino within another function but server raises an error.For example I can't create followng function create function dbo.test() returns float as begin declare @i float select @i = rand() return @i end

Part and Inventory Search

Back
Top