sql 2008: Alternatives to "master..spt_values"

  • We have a developer who needs to run this query from a stored proc:

    >>>

    select number from master..spt_values where type='P'

    >>>

    Assuming he needs this information are there any alternatives to directly accessing the master databse?

    (That approach seems dangerous and may not work with later verisons of sql.)

    TIA,

    Barkingdog

  • Select ROW_NUMBER () OVER (ORDER BY column_id) AS Number from sys.columns

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply