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

  1. use master
  2. go
  3. /*
  4. ** Drop all existing PB system procedures 
  5. */
  6. drop proc sp_pbcolumn
  7. go
  8. drop proc sp_pbdb
  9. go
  10. drop proc sp_pbindex
  11. go
  12. drop proc sp_pbproc
  13. go
  14. drop proc sp_pbhelprotect
  15. go
  16. drop proc sp_pbtable
  17. go
  18. drop proc sp_pbtext
  19. go
  20. drop proc sp_pbprimarykey
  21. go
  22. drop proc sp_pbforeignkey
  23. go
  24. drop proc sp_pbfktable
  25. go
  26. /*
  27. **  1 - PB stored procedure that retrieves column info
  28. **     from the catalog
  29. */
  30. create proc sp_pbcolumn @id int as
  31.       select colid, status, type, length, name, usertype
  32.              from dbo.syscolumns  where id = @id
  33. go
  34.  /*
  35.  **  2 - PB stored procedure that retrieves database list
  36.  **     from the catalog
  37.  */
  38. create proc sp_pbdb as
  39.      select name from dbo.sysdatabases
  40. go
  41.  
  42. /*
  43. **  3 - PB stored procedure that retrieves index info
  44. **     from the catalog
  45. */
  46. create procedure sp_pbindex
  47. @objname varchar(92)                    /* the table to check for indexes */
  48. as
  49. declare @objid int                      /* the object id of the table */
  50. declare @indid int                      /* the index id of an index */
  51. declare @key1 varchar(30)               /* first key  */
  52. declare @key2 varchar(30)               /* second key  */
  53. declare @key3 varchar(30)               /* third key  */
  54. declare @key4 varchar(30)               /* fourth key  */
  55. declare @key5 varchar(30)               /* ...  */
  56. declare @key6 varchar(30)
  57. declare @key7 varchar(30)
  58. declare @key8 varchar(30)
  59. declare @key9 varchar(30)               /* ...  */
  60. declare @key10 varchar(30)
  61. declare @key11 varchar(30)
  62. declare @key12 varchar(30)
  63. declare @key13 varchar(30)               /* ...  */
  64. declare @key14 varchar(30)
  65. declare @key15 varchar(30)
  66. declare @key16 varchar(30)
  67.  
  68. declare @unique smallint                /* index is unique */
  69. declare @clustered  smallint            /* index is clustered */
  70.  
  71. /*
  72. **  Check to see the the table exists and initialize @objid.
  73. */
  74. select @objid = object_id(@objname)
  75.  
  76. /*
  77. **  Table doesn't exist so return.
  78. */
  79. if @objid is NULL
  80. begin
  81.        return
  82. end
  83.  
  84. /*
  85. **  See if the object has any indexes.
  86. **  Since there may be more than one entry in sysindexes for the object,
  87. **  this select will set @indid to the index id of the first index.
  88. */
  89. select @indid = min(indid)
  90.        from sysindexes
  91.              where id = @objid
  92.                     and indid > 0
  93.                     and indid < 255
  94.  
  95. /*
  96. **  If no indexes, return.
  97. */
  98. if @indid is NULL
  99. begin
  100.        return
  101. end
  102.  
  103. /*
  104. **  Now check out each index, figure out it's type and keys and
  105. **  save the info in a temporary table that we'll print out at the end.
  106. */
  107. create table #spindtab
  108. (
  109.        index_name      varchar(30),
  110.        index_num       int,
  111.        index_key1      varchar(30) NULL,
  112.        index_key2      varchar(30) NULL,
  113.        index_key3      varchar(30) NULL,
  114.        index_key4      varchar(30) NULL,
  115.        index_key5      varchar(30) NULL,
  116.        index_key6      varchar(30) NULL,
  117.        index_key7      varchar(30) NULL,
  118.        index_key8      varchar(30) NULL,
  119.        index_key9      varchar(30) NULL,
  120.        index_key10     varchar(30) NULL,
  121.        index_key11     varchar(30) NULL,
  122.        index_key12     varchar(30) NULL,
  123.        index_key13     varchar(30) NULL,
  124.        index_key14     varchar(30) NULL,
  125.        index_key15     varchar(30) NULL,
  126.        index_key16     varchar(30) NULL,
  127.        index_unique    smallint,
  128.        index_clustered smallint
  129. )
  130.  
  131. while @indid != NULL
  132. begin
  133.  
  134.        /*
  135.        **  First we'll figure out what the keys are.
  136.        */
  137.        declare @i int
  138.        declare @thiskey varchar(30)
  139.        declare @lastindid int
  140.  
  141.        select @i = 1
  142.  
  143.        set nocount on
  144.  
  145.        while @i <= 16
  146.        begin
  147.              select @thiskey = index_col(@objname, @indid, @i)
  148.  
  149.              if @thiskey = NULL
  150.              begin
  151.                     goto keysdone
  152.              end
  153.  
  154.              if @i = 1
  155.              begin
  156.                 select @key1 = index_col(@objname, @indid, @i)
  157.              end
  158.              else
  159.              if @i = 2
  160.              begin
  161.                 select @key2 = index_col(@objname, @indid, @i)
  162.              end
  163.              else
  164.              if @i = 3
  165.              begin
  166.                 select @key3 = index_col(@objname, @indid, @i)
  167.              end
  168.              else
  169.              if @i = 4
  170.              begin
  171.                 select @key4 = index_col(@objname, @indid, @i)
  172.              end
  173.              else
  174.              if @i = 5
  175.              begin
  176.                 select @key5 = index_col(@objname, @indid, @i)
  177.              end
  178.              else
  179.              if @i = 6
  180.              begin
  181.                 select @key6 = index_col(@objname, @indid, @i)
  182.              end
  183.              else
  184.              if @i = 7
  185.              begin
  186.                 select @key7 = index_col(@objname, @indid, @i)
  187.              end
  188.              else
  189.              if @i = 8
  190.              begin
  191.                 select @key8 = index_col(@objname, @indid, @i)
  192.              end
  193.              else
  194.              if @i = 9
  195.              begin
  196.                 select @key9 = index_col(@objname, @indid, @i)
  197.              end
  198.              else
  199.              if @i = 10
  200.              begin
  201.                 select @key10 = index_col(@objname, @indid, @i)
  202.              end
  203.              else
  204.              if @i = 11
  205.              begin
  206.                 select @key11 = index_col(@objname, @indid, @i)
  207.              end
  208.              else
  209.              if @i = 12
  210.              begin
  211.                 select @key12 = index_col(@objname, @indid, @i)
  212.              end
  213.              else
  214.              if @i = 13
  215.              begin
  216.                 select @key13 = index_col(@objname, @indid, @i)
  217.              end
  218.              else
  219.              if @i = 14
  220.              begin
  221.                 select @key14 = index_col(@objname, @indid, @i)
  222.              end
  223.              else
  224.              if @i = 15
  225.              begin
  226.                 select @key15 = index_col(@objname, @indid, @i)
  227.              end
  228.              else
  229.              if @i = 16
  230.              begin
  231.                 select @key16 = index_col(@objname, @indid, @i)
  232.              end
  233.  
  234.              /*
  235.              **  Increment @i so it will check for the next key.
  236.              */
  237.              select @i = @i + 1
  238.  
  239.        end
  240.  
  241.  
  242.        /*
  243.        **  When we get here we now have all the keys.
  244.        */
  245.        keysdone:
  246.              set nocount off
  247.  
  248.        /*
  249.        **  Figure out if it's a  clustered or nonclustered index.
  250.        */
  251.        if @indid = 1
  252.          select @clustered = 1
  253.  
  254.        if @indid > 1
  255.          select @clustered = 0
  256.  
  257.        /*
  258.        **  Now we'll check out the status bits for this index
  259.        */
  260.  
  261.        /*
  262.        **  See if the index is unique (0x02).
  263.        */
  264.        if exists (select *
  265.              from master.dbo.spt_values v, sysindexes i
  266.                     where i.status & v.number = v.number
  267.                           and v.type = "I"
  268.                           and v.number = 2
  269.                           and i.id = @objid
  270.                           and i.indid = @indid)
  271.          select @unique = 1
  272.        else
  273.          select @unique = 0
  274.  
  275.        /*
  276.        **  Now we have all the needed info for the index so we'll add
  277.        **  the goods to the temporary table.
  278.        */
  279.        insert into #spindtab
  280.              select name, @i - 1, @key1, @key2, @key3, @key4,
  281.                    @key5, @key6, @key7, @key8, @key9,
  282.                    @key10, @key11, @key12, @key13, @key14,
  283.                    @key15, @key16, @unique, @clustered
  284.                     from sysindexes
  285.                           where id = @objid
  286.                                 and indid = @indid
  287.        /*
  288.        **  Now move @indid to the next index.
  289.        */
  290.        select @lastindid = @indid
  291.        select @indid = NULL
  292.        select @indid = min(indid)
  293.              from sysindexes
  294.                     where id = @objid
  295.                           and indid > @lastindid
  296.                           and indid < 255
  297. end
  298.  
  299. /*
  300. **  Now print out the contents of the temporary index table.
  301. */
  302. select index_name, index_num, index_key1, index_key2,
  303.       index_key3, index_key4, index_key5, index_key6,
  304.       index_key7, index_key8, index_key9, index_key10,
  305.       index_key11, index_key12, index_key13, index_key14,
  306.       index_key15, index_key16, index_unique, index_clustered
  307.        from #spindtab
  308.  
  309. drop table #spindtab
  310. go
  311. /*
  312. **  4 - PB stored procedure that retrieves proc info
  313. **     from the catalog
  314. */
  315. create proc sp_pbproc
  316.           @procid int = NULL ,
  317.           @procnumber smallint = NULL  as
  318.           if @procid = null
  319.             begin
  320.              select o.id, o.name, o.uid, user_name(o.uid),
  321.              p.number from dbo.sysobjects o, dbo.sysprocedures p
  322.                where o.type = 'P' and p.sequence = 0 and o.id = p.id
  323.             end
  324.           else
  325.             begin
  326.              select name, type, length, colid from dbo.syscolumns
  327.              where (id = @procid and number = @procnumber)
  328.             end
  329.           return
  330. go
  331. /*
  332. **  5 - PB stored procedure that retrieves security info
  333. **     from the catalog
  334. */
  335. create procedure sp_pbhelprotect
  336.             @name varchar(92)         /* name of object or user to check */
  337.             as declare @low int       /* range of userids to check */
  338.             declare @high int
  339.             declare @objid int        /* id of @name if object */
  340.         /* There are two cases handled by this procedure.
  341.         If the first parameter  is an object (table, view, procedure)
  342.         then @name is taken as an object  name and the procedure will
  343.         figure out permissions for the object.
  344.         If the first parameter is not one of the objects
  345.         mentioned it will be taken as user name and all
  346.         the permissions for the user or group name will be shown. */
  347.         /* **  Check to see if it's an object. */
  348.  
  349.         if exists (select *  from dbo.sysobjects
  350.             where id = object_id(@name)
  351.             and (sysstat & 7 = 1    /* system table */
  352.             or sysstat & 7 = 2      /* view */
  353.             or sysstat & 7 = 3      /* user table */
  354.             or sysstat & 7 = 4))    /* procedure */
  355.  
  356.             begin
  357.  
  358.         /*  This is the case where we will show the
  359.            various permissions for an object, possibly restricted by
  360.            a particular user.  */
  361.              select type = substring(b.name, 1, 6), action = a.name,
  362.                    pbuser = substring(user_name(p.uid), 1, 15),
  363.                    column = substring(isnull(col_name(id, c.number),
  364.                           "All"), 1, 31)
  365.                from sysprotects p, master.dbo.spt_values c,
  366.                    master.dbo.spt_values a, master.dbo.spt_values b
  367.                 where convert(tinyint, substring(isnull(p.columns, 0x1),
  368.                      c.low, 1)) & c.high != 0
  369.                      and c.number <=
  370.                      (select count(*) from dbo.syscolumns
  371.                         where id = object_id(@name))
  372.                             and a.type = "T"
  373.                             and a.number = p.action
  374.                             and b.type = "T"
  375.                             and b.number = p.protecttype
  376.                             and p.id = object_id(@name)
  377.                         order by type, action, pbuser, column
  378.                return
  379.             end
  380.  
  381.         /* Since @name is not an object let's try it as a user. */
  382.  
  383.         select @low = uid, @high = uid
  384.            from dbo.sysusers where name = @name
  385.         /*  Now we have the user so run the same
  386.            protection query as before but restrict on user and
  387.            not on object. */
  388.         select distinct type = substring(b.name, 1, 6), action = a.name,
  389.          object = substring(isnull(object_name(p.id), ""), 1, 15),
  390.          column = substring(isnull(col_name(id, c.number), "All"), 1, 10)
  391.          from sysprotects p, master.dbo.spt_values c,
  392.             master.dbo.spt_values a, master.dbo.spt_values b
  393.            where convert(tinyint, substring(isnull(p.columns, 0x1),
  394.                    c.low, 1))
  395.             & c.high != 0
  396.             and c.number <= 255  and a.type = "T"
  397.             and a.number = p.action
  398.             and b.type = "T"
  399.             and b.number = p.protecttype
  400.             and p.uid = @low
  401.            order by type, object, column, action
  402.         return
  403. go
  404. /*
  405. **  6 - PB stored procedure that retrieves table info
  406. **     from the catalog
  407. */
  408.  
  409. create procedure sp_pbtable
  410.       @tblname varchar(60) = NULL as
  411.       declare @objid int
  412.  
  413.       if @tblname = null
  414.         select name, id, type, uid, user_name(uid) from sysobjects where
  415.            (type = 'S' or type = 'U' or type = 'V')
  416.       else
  417.         begin
  418.           select @objid = object_id(@tblname)
  419.           select name, id, type, uid, user_name(uid) from sysobjects
  420.              where id = @objid
  421.         end
  422.       return
  423. go
  424. /*
  425. **  7 - PB stored procedure that retrieves comments info
  426. **     from the catalog
  427. */
  428.  
  429. create procedure sp_pbtext
  430.       @objid  int ,
  431.       @number smallint = NULL
  432.       as
  433.       if (@number = NULL)
  434.         select text  from dbo.syscomments where id = @objid
  435.       else
  436.         select text  from dbo.syscomments where
  437.             (id = @objid and number = @number)
  438.       return
  439. go
  440. /*
  441. ** 8 - PB stored procedure that retrieves primary key info
  442. **     from the catalog
  443. */
  444. create procedure sp_pbprimarykey
  445. @tabname varchar(92)                    /* the table to check for indexes */
  446. as
  447. declare @tabid int                      /* the object id of the table */
  448. /*
  449. **  Check to see the the table exists and initialize @objid.
  450. */
  451. select @tabid = object_id(@tabname)
  452.  
  453. /*
  454. **  Table doesn't exist so return.
  455. */
  456. if @tabid is NULL
  457.    begin
  458.       return
  459.    end
  460. else
  461. /*
  462. **  See if the object has a primary key
  463. */
  464.    begin
  465.       select k.keycnt,
  466.        objectkey1 = col_name(k.id, key1),
  467.        objectkey2 = col_name(k.id, key2),
  468.        objectkey3 = col_name(k.id, key3),
  469.        objectkey4 = col_name(k.id, key4),
  470.        objectkey5 = col_name(k.id, key5),
  471.        objectkey6 = col_name(k.id, key6),
  472.        objectkey7 = col_name(k.id, key7),
  473.        objectkey8 = col_name(k.id, key8)
  474.        from syskeys k, master.dbo.spt_values v
  475.              where  k.type = v.number and v.type =  'K'
  476.              and k.type = 1 and k.id = @tabid
  477.       return
  478.    end
  479. go
  480. /*
  481. ** 9 - PB stored procedure that retrieves foreign key info
  482. **     from the catalog
  483. */
  484. create procedure sp_pbforeignkey
  485. @tabname varchar(92)                    /* the table to check for indexes */
  486. as
  487. declare @tabid int                      /* the object id of the table */
  488. /*
  489. **  Check to see the the table exists and initialize @objid.
  490. */
  491. select @tabid = object_id(@tabname)
  492. /*
  493. **  Table doesn't exist so return.
  494. */
  495. if @tabid is NULL
  496. begin
  497.            return
  498. end
  499. else
  500. /*
  501. **  See if the object has any foreign keys
  502. */
  503. begin
  504. select k.keycnt, OBJECT_NAME(k.depid), 
  505.            (select USER_NAME(o.uid) from dbo.sysobjects o 
  506.                  where o.id = @tabid),
  507.            objectkey1 = col_name(k.id, key1),
  508.            objectkey2 = col_name(k.id, key2),
  509.            objectkey3 = col_name(k.id, key3),
  510.            objectkey4 = col_name(k.id, key4),
  511.            objectkey5 = col_name(k.id, key5),
  512.            objectkey6 = col_name(k.id, key6),
  513.            objectkey7 = col_name(k.id, key7),
  514.            objectkey8 = col_name(k.id, key8)
  515.            from syskeys k, master.dbo.spt_values v
  516.                          where  k.type = v.number and v.type =  'K'
  517.                          and k.type = 2 and k.id = @tabid
  518. return
  519. end
  520. go
  521. /*
  522. **  10 - PB stored procedure that retrieves table info
  523. **       from foreign keys referencing the current table
  524. */
  525. create procedure sp_pbfktable
  526.       @tblname varchar(60) = NULL as
  527.       declare @objid int
  528.  
  529.       if @tblname = null
  530.         return
  531.       else
  532.         begin
  533.           select @objid = object_id(@tblname)
  534.           select name, id, type, uid, user_name(uid) from sysobjects
  535.              where id in (select k.id from syskeys k where k.depid =
  536.             @objid) 
  537.         end
  538.       return
  539. go
  540. grant execute on sp_pbcolumn to public
  541. go
  542. grant execute on sp_pbdb to public
  543. go
  544. grant execute on sp_pbindex to public
  545. go
  546. grant execute on sp_pbproc to public
  547. go
  548. grant execute on sp_pbhelprotect to public
  549. go
  550. grant execute on sp_pbtable to public
  551. go
  552. grant execute on sp_pbtext to public
  553. go
  554. grant execute on sp_pbprimarykey to public
  555. go
  556. grant execute on sp_pbforeignkey to public
  557. go
  558. grant execute on sp_pbfktable to public
  559. go
  560.