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 gkittelson 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. joxa83

    CHECK_SUM returns same value for diff. inputs

    I solved case sensitive comparison just the way you did but I do not understand chechsum. Thanx anyway
  2. 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...
  3. joxa83

    stored procedure with two result sets

    No No proc I gave is just similar to my problem.As I said I have one procedure wich I can not change, then that proc returns two set, then I need second set for some calculations in my proc, than I need data from exactly that procedure wich returns two sets.
  4. joxa83

    stored procedure with two result sets

    that is the problem.i can't make two procedures I need to use existing proc wich returns two sets.Then I need to insert second set into some temp table to make some calculations.It means I can't use front end apps or or create two procs.
  5. joxa83

    stored procedure with two result sets

    that is not solution.orders table and Employees tabel do not have same shema.Besides all that how do you intend to substract data from Employees table using result of stored proc?????
  6. 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...
  7. 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