home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a063 / 21.img / PBSYBRT.SQL < prev    next >
Encoding:
Text File  |  1993-09-14  |  8.1 KB  |  348 lines

  1. use master
  2. go
  3. /*
  4. ** Drop all existing PB system procedures 
  5. */
  6. drop proc sp_pbindex
  7. go
  8. drop proc sp_pbtable
  9. go
  10. drop proc sp_pbprimarykey
  11. go
  12. /*
  13. /*
  14. **  1 - PB stored procedure that retrieves index info
  15. **     from the catalog
  16. */
  17. create procedure sp_pbindex
  18. @objname varchar(92)                    /* the table to check for indexes */
  19. as
  20. declare @objid int                      /* the object id of the table */
  21. declare @indid int                      /* the index id of an index */
  22. declare @key1 varchar(30)               /* first key  */
  23. declare @key2 varchar(30)               /* second key  */
  24. declare @key3 varchar(30)               /* third key  */
  25. declare @key4 varchar(30)               /* fourth key  */
  26. declare @key5 varchar(30)               /* ...  */
  27. declare @key6 varchar(30)
  28. declare @key7 varchar(30)
  29. declare @key8 varchar(30)
  30. declare @key9 varchar(30)               /* ...  */
  31. declare @key10 varchar(30)
  32. declare @key11 varchar(30)
  33. declare @key12 varchar(30)
  34. declare @key13 varchar(30)               /* ...  */
  35. declare @key14 varchar(30)
  36. declare @key15 varchar(30)
  37. declare @key16 varchar(30)
  38.  
  39. declare @unique smallint                /* index is unique */
  40. declare @clustered  smallint            /* index is clustered */
  41.  
  42. /*
  43. **  Check to see the the table exists and initialize @objid.
  44. */
  45. select @objid = object_id(@objname)
  46.  
  47. /*
  48. **  Table doesn't exist so return.
  49. */
  50. if @objid is NULL
  51. begin
  52.        return
  53. end
  54.  
  55. /*
  56. **  See if the object has any indexes.
  57. **  Since there may be more than one entry in sysindexes for the object,
  58. **  this select will set @indid to the index id of the first index.
  59. */
  60. select @indid = min(indid)
  61.        from sysindexes
  62.              where id = @objid
  63.                     and indid > 0
  64.                     and indid < 255
  65.  
  66. /*
  67. **  If no indexes, return.
  68. */
  69. if @indid is NULL
  70. begin
  71.        return
  72. end
  73.  
  74. /*
  75. **  Now check out each index, figure out it's type and keys and
  76. **  save the info in a temporary table that we'll print out at the end.
  77. */
  78. create table #spindtab
  79. (
  80.        index_name      varchar(30),
  81.        index_num       int,
  82.        index_key1      varchar(30) NULL,
  83.        index_key2      varchar(30) NULL,
  84.        index_key3      varchar(30) NULL,
  85.        index_key4      varchar(30) NULL,
  86.        index_key5      varchar(30) NULL,
  87.        index_key6      varchar(30) NULL,
  88.        index_key7      varchar(30) NULL,
  89.        index_key8      varchar(30) NULL,
  90.        index_key9      varchar(30) NULL,
  91.        index_key10     varchar(30) NULL,
  92.        index_key11     varchar(30) NULL,
  93.        index_key12     varchar(30) NULL,
  94.        index_key13     varchar(30) NULL,
  95.        index_key14     varchar(30) NULL,
  96.        index_key15     varchar(30) NULL,
  97.        index_key16     varchar(30) NULL,
  98.        index_unique    smallint,
  99.        index_clustered smallint
  100. )
  101.  
  102. while @indid != NULL
  103. begin
  104.  
  105.        /*
  106.        **  First we'll figure out what the keys are.
  107.        */
  108.        declare @i int
  109.        declare @thiskey varchar(30)
  110.        declare @lastindid int
  111.  
  112.        select @i = 1
  113.  
  114.        set nocount on
  115.  
  116.        while @i <= 16
  117.        begin
  118.              select @thiskey = index_col(@objname, @indid, @i)
  119.  
  120.              if @thiskey = NULL
  121.              begin
  122.                     goto keysdone
  123.              end
  124.  
  125.              if @i = 1
  126.              begin
  127.                 select @key1 = index_col(@objname, @indid, @i)
  128.              end
  129.              else
  130.              if @i = 2
  131.              begin
  132.                 select @key2 = index_col(@objname, @indid, @i)
  133.              end
  134.              else
  135.              if @i = 3
  136.              begin
  137.                 select @key3 = index_col(@objname, @indid, @i)
  138.              end
  139.              else
  140.              if @i = 4
  141.              begin
  142.                 select @key4 = index_col(@objname, @indid, @i)
  143.              end
  144.              else
  145.              if @i = 5
  146.              begin
  147.                 select @key5 = index_col(@objname, @indid, @i)
  148.              end
  149.              else
  150.              if @i = 6
  151.              begin
  152.                 select @key6 = index_col(@objname, @indid, @i)
  153.              end
  154.              else
  155.              if @i = 7
  156.              begin
  157.                 select @key7 = index_col(@objname, @indid, @i)
  158.              end
  159.              else
  160.              if @i = 8
  161.              begin
  162.                 select @key8 = index_col(@objname, @indid, @i)
  163.              end
  164.              else
  165.              if @i = 9
  166.              begin
  167.                 select @key9 = index_col(@objname, @indid, @i)
  168.              end
  169.              else
  170.              if @i = 10
  171.              begin
  172.                 select @key10 = index_col(@objname, @indid, @i)
  173.              end
  174.              else
  175.              if @i = 11
  176.              begin
  177.                 select @key11 = index_col(@objname, @indid, @i)
  178.              end
  179.              else
  180.              if @i = 12
  181.              begin
  182.                 select @key12 = index_col(@objname, @indid, @i)
  183.              end
  184.              else
  185.              if @i = 13
  186.              begin
  187.                 select @key13 = index_col(@objname, @indid, @i)
  188.              end
  189.              else
  190.              if @i = 14
  191.              begin
  192.                 select @key14 = index_col(@objname, @indid, @i)
  193.              end
  194.              else
  195.              if @i = 15
  196.              begin
  197.                 select @key15 = index_col(@objname, @indid, @i)
  198.              end
  199.              else
  200.              if @i = 16
  201.              begin
  202.                 select @key16 = index_col(@objname, @indid, @i)
  203.              end
  204.  
  205.              /*
  206.              **  Increment @i so it will check for the next key.
  207.              */
  208.              select @i = @i + 1
  209.  
  210.        end
  211.  
  212.  
  213.        /*
  214.        **  When we get here we now have all the keys.
  215.        */
  216.        keysdone:
  217.              set nocount off
  218.  
  219.        /*
  220.        **  Figure out if it's a  clustered or nonclustered index.
  221.        */
  222.        if @indid = 1
  223.          select @clustered = 1
  224.  
  225.        if @indid > 1
  226.          select @clustered = 0
  227.  
  228.        /*
  229.        **  Now we'll check out the status bits for this index
  230.        */
  231.  
  232.        /*
  233.        **  See if the index is unique (0x02).
  234.        */
  235.        if exists (select *
  236.              from master.dbo.spt_values v, sysindexes i
  237.                     where i.status & v.number = v.number
  238.                           and v.type = "I"
  239.                           and v.number = 2
  240.                           and i.id = @objid
  241.                           and i.indid = @indid)
  242.          select @unique = 1
  243.        else
  244.          select @unique = 0
  245.  
  246.        /*
  247.        **  Now we have all the needed info for the index so we'll add
  248.        **  the goods to the temporary table.
  249.        */
  250.        insert into #spindtab
  251.              select name, @i - 1, @key1, @key2, @key3, @key4,
  252.                    @key5, @key6, @key7, @key8, @key9,
  253.                    @key10, @key11, @key12, @key13, @key14,
  254.                    @key15, @key16, @unique, @clustered
  255.                     from sysindexes
  256.                           where id = @objid
  257.                                 and indid = @indid
  258.        /*
  259.        **  Now move @indid to the next index.
  260.        */
  261.        select @lastindid = @indid
  262.        select @indid = NULL
  263.        select @indid = min(indid)
  264.              from sysindexes
  265.                     where id = @objid
  266.                           and indid > @lastindid
  267.                           and indid < 255
  268. end
  269.  
  270. /*
  271. **  Now print out the contents of the temporary index table.
  272. */
  273. select index_name, index_num, index_key1, index_key2,
  274.       index_key3, index_key4, index_key5, index_key6,
  275.       index_key7, index_key8, index_key9, index_key10,
  276.       index_key11, index_key12, index_key13, index_key14,
  277.       index_key15, index_key16, index_unique, index_clustered
  278.        from #spindtab
  279.  
  280. drop table #spindtab
  281. go
  282. /*
  283. **  2 - PB stored procedure that retrieves table info
  284. **     from the catalog
  285. */
  286.  
  287. create procedure sp_pbtable
  288.       @tblname varchar(60) = NULL as
  289.       declare @objid int
  290.  
  291.       if @tblname = null
  292.         select name, id, type, uid, user_name(uid) from sysobjects where
  293.            (type = 'S' or type = 'U' or type = 'V')
  294.       else
  295.         begin
  296.           select @objid = object_id(@tblname)
  297.           select name, id, type, uid, user_name(uid) from sysobjects
  298.              where id = @objid
  299.         end
  300.       return
  301. go
  302. /*
  303. ** 3 - PB stored procedure that retrieves primary key info
  304. **     from the catalog
  305. */
  306. create procedure sp_pbprimarykey
  307. @tabname varchar(92)                    /* the table to check for indexes */
  308. as
  309. declare @tabid int                      /* the object id of the table */
  310. /*
  311. **  Check to see the the table exists and initialize @objid.
  312. */
  313. select @tabid = object_id(@tabname)
  314.  
  315. /*
  316. **  Table doesn't exist so return.
  317. */
  318. if @tabid is NULL
  319.    begin
  320.       return
  321.    end
  322. else
  323. /*
  324. **  See if the object has a primary key
  325. */
  326.    begin
  327.       select k.keycnt,
  328.        objectkey1 = col_name(k.id, key1),
  329.        objectkey2 = col_name(k.id, key2),
  330.        objectkey3 = col_name(k.id, key3),
  331.        objectkey4 = col_name(k.id, key4),
  332.        objectkey5 = col_name(k.id, key5),
  333.        objectkey6 = col_name(k.id, key6),
  334.        objectkey7 = col_name(k.id, key7),
  335.        objectkey8 = col_name(k.id, key8)
  336.        from syskeys k, master.dbo.spt_values v
  337.              where  k.type = v.number and v.type =  'K'
  338.              and k.type = 1 and k.id = @tabid
  339.       return
  340.    end
  341. go
  342. grant execute on sp_pbindex to public
  343. go
  344. grant execute on sp_pbtable to public
  345. go
  346. grant execute on sp_pbprimarykey to public
  347. go
  348.