in

SQL Server Community Blogs

Voices of the SQL Server Community

Browse by Tags

Sorry, but there are no more tags available to filter with.
  • Generate Random Numbers

    This procedure will display n random numbers selected from specified range Pass Starting Number, Ending Number and the number of numbers you want to select randomly Create Procedure RandomNumbers (@min bigint, @max bigint, @count int) as Set Nocount On Declare @t table(num bigint) Declare @start bigint...
    Posted to Madhivanan (Weblog) by Madhivanan on 08-27-2007
Page 1 of 1 (1 items)
Powered by Community Server (Commercial Edition), by Telligent Systems