Forum Replies Created

Viewing 15 posts - 55,756 through 55,770 (of 59,067 total)

  • RE: Generating a List of Country/Regions

    Oh, yeah... if you want the actual "Region ID", you'll need to get Telcordia's "NNACL"... but I think that's only for the US and Canada.  Prepare to pay some $$...

  • RE: Generating a List of Country/Regions

    I'll second that on LincMad... been using his stuff for years and is one of the best places to find this type of free info.

    If you need something to pay...

  • RE: Update values with random values

    Heh... also hacked one for Peter's method... slowed it down just a bit but it's still faster than the traditional method...

    --===== Peter's method of generating random numbers from...

  • RE: Update values with random values

    Hacked a fix for the zero distribution problem on the traditional method...

    --===== Traditional method of generating random numbers from -5 to +5

     SELECT SUM(CASE WHEN r = -5...

  • RE: Update values with random values

    Couldn't resist... simple integer rounding gives zero twice the number of hits using both methods... everything else has a pretty good distirubtion... if anyone wants to take a crack at...

  • RE: Update values with random values

    Peter, I gotta say it again... nice job... I was a bit concerned about distribution of the numbers so I compared your method against the traditional method... both have the...

  • RE: Update values with random values

    Heh... no problem James... short naps are what get me through the day

  • RE: Update values with random values

    Percent James... he needs the /100 to turn it into the decimal equivelent of percent so it can be used as a multiplier...

     

  • RE: Update values with random values

    Close Peter... and nicely done, but I believe you need this instead...

    SELECT 1 + (CHECKSUM(NEWID()) % 6) / 100.0

    ...yours gave a range of .96 to 1.04... above gives range of .95...

  • RE: How to trace Deadlock in SQL Server 2000

    Heh... look at the original post... no need to put these in startup (although that's a good idea!).

  • RE: Export of data without Headers

    No, no... just add SET NOCOUNT ON...

    osql -E -d pubs -q "SET NOCOUNT ON select * from dbo.authors" >junk.txt -h-1

    You could also do it in a file using the...

  • RE: Warning

    To further the explantion...

    You cannot put indexes on views unless they are specifically designed to be "Indexed Views".  There's a long list of requirements to make an Indexed View in...

  • RE: Export of data without Headers

    And, yes... BCP will also create output without headers.

  • RE: Export of data without Headers

    As Christoper suggests, you may want to create the report (in T-SQL, possible as a sproc) and have OSQL run it... to suppress the headers, use the -h-1 parameter in the...

  • RE: using sort_in_tempdb when rebuilding indexes

    Heh... Not having nearly the bad day that you will if you keep trying unverified commands on your database (production or not)   That's...

Viewing 15 posts - 55,756 through 55,770 (of 59,067 total)