home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / a / a561 / 1.ddi / INSTCAT.SQL < prev    next >
Encoding:
Text File  |  1993-01-03  |  91.6 KB  |  2,792 lines

  1. /* 
  2. NOTE:  you MUST change the last row inserted into MSserver_info
  3. to be version number of this file.  the convention is VV.vvvv, where
  4. VV is major version number ("00" until we ship), and vvvv is minor
  5. version number in the form of month and day (mmdd) of the date you 
  6. check in this file.  add 12 to the month to keep in sync with the
  7. driver version numbers.  e.g. checking in on feb 5 would mean setting
  8. the value to 00.1405.
  9. NOTE:  The version number will be set automatically when you run
  10.        BUILD VER from the root of the SLM tree.
  11. */
  12.  
  13. /****************************************************************************/
  14. /* This portion sets up the ability to perform all the functions in this    */
  15. /* script                                                                    */
  16. /****************************************************************************/
  17. use master
  18. go
  19. dump tran master with truncate_only
  20. go
  21.  
  22. if exists (select * from sysobjects
  23.            where name = 'sp_configure' and sysstat & 7 = 4)
  24. begin
  25.     execute sp_configure 'update',1
  26. end
  27. reconfigure with override
  28. go
  29. if (exists (select * from sysobjects where name = 'MSdatatype_info'))
  30.     drop table MSdatatype_info
  31. go
  32. if (exists (select * from sysobjects where name = 'MSdatatype_info_ext'))
  33.     drop table MSdatatype_info_ext
  34. go
  35. if (exists (select * from sysobjects where name = 'MStable_types'))
  36.     drop table MStable_types
  37. go
  38. if (exists (select * from sysobjects where name = 'MSserver_info'))
  39.     drop table MSserver_info
  40. go
  41. if (exists (select * from sysobjects where name = 'sp_tables'))
  42.     drop proc sp_tables
  43. go
  44. if (exists (select * from sysobjects where name = 'sp_statistics'))
  45.     drop proc sp_statistics
  46. go
  47. if (exists (select * from sysobjects where name = 'sp_columns'))
  48.     drop proc sp_columns
  49. go
  50. if (exists (select * from sysobjects where name = 'sp_fkeys'))
  51.     drop proc sp_fkeys
  52. go
  53. if (exists (select * from sysobjects where name = 'sp_pkeys'))
  54.     drop proc sp_pkeys
  55. dump tran master with truncate_only
  56. go
  57.  
  58. go
  59. if (exists (select * from sysobjects where name = 'sp_stored_procedures'))
  60.     drop proc sp_stored_procedures
  61. go
  62. if (exists (select * from sysobjects where name = 'sp_sproc_columns'))
  63.     drop proc sp_sproc_columns
  64. go
  65. if (exists (select * from sysobjects where name = 'sp_table_privileges'))
  66.     drop proc sp_table_privileges
  67. go
  68. if (exists (select * from sysobjects where name = 'sp_column_privileges'))
  69.     drop proc sp_column_privileges
  70. go
  71. if (exists (select * from sysobjects where name = 'sp_server_info'))
  72.     drop proc sp_server_info
  73. go
  74. if (exists (select * from sysobjects where name = 'sp_datatype_info'))
  75.     drop proc sp_datatype_info
  76. go
  77. if (exists (select * from sysobjects where name = 'sp_special_columns'))
  78.     drop proc sp_special_columns
  79. go
  80. if (exists (select * from sysobjects where name = 'sp_databases'))
  81.     drop proc sp_databases
  82. go
  83.  
  84. dump tran master with truncate_only
  85. go
  86.  
  87. print "creating table MSdatatype_info_ext"
  88. go
  89. create table MSdatatype_info_ext (user_type  smallint     not null,
  90.                             create_params    varchar(32)  null)
  91. go
  92.  
  93. grant select on MSdatatype_info_ext to public
  94. go
  95.  
  96.  
  97. insert into MSdatatype_info_ext
  98. /* CHAR      user_type, create_params */
  99. values           (1,    "max length" )
  100.  
  101. insert into MSdatatype_info_ext
  102. /* VARCHAR   user_type, create_params */
  103. values           (2,    "max length" )
  104.  
  105. insert into MSdatatype_info_ext
  106. /* BINARY    user_type, create_params */
  107. values           (3,    "max length" )
  108.  
  109. insert into MSdatatype_info_ext
  110. /* VARBINARY user_type, create_params */
  111. values           (4,    "max length" )
  112.  
  113. insert into MSdatatype_info_ext
  114. /* SYSNAME   user_type, create_params */
  115. values           (18,   "max length" )
  116. go
  117.  
  118. print "creating table MSdatatype_info"
  119. go
  120. create table MSdatatype_info (ss_dtype         tinyint      not null,
  121.                             type_name          varchar(32)  not null,
  122.                             data_type          smallint     not null,
  123.                             data_precision     int          null,
  124.                             numeric_scale      smallint     null,
  125.                             numeric_radix      smallint     null,
  126.                             length             int          null,
  127.                             literal_prefix     varchar(32)  null,
  128.                             literal_suffix     varchar(32)  null,
  129.                             create_params      varchar(32)  null,
  130.                             nullable           smallint     not null,
  131.                             case_sensitive     smallint     not null,
  132.                             searchable         smallint     not null,
  133.                             unsigned_attribute smallint     null,
  134.                             money              smallint     not null,
  135.                             auto_increment     smallint     null,
  136.                             local_type_name    varchar(128) not null,
  137.                             aux                int          null)
  138. go
  139.  
  140. grant select on MSdatatype_info to public
  141. go
  142.  
  143. /* Get case sensitivity */
  144. if 'A' = 'A'
  145. begin
  146. declare @case smallint
  147.  
  148. select @case = 0
  149. select @case = 1 where 'a' != 'A'
  150.  
  151. insert into MSdatatype_info
  152. /* ss_type,name,   data_type,prec,scale,rdx, len, prf, suf, cp,          nul,case,srch,unsigned,money,auto, local,                       aux */
  153. values (45,"binary",-2,      null,null, null,null,"0x",null,"max length",1,  0,   2,   null,    0,    null, /* Local Binary */ "binary", 0)
  154.  
  155. insert into MSdatatype_info
  156. /* ss_type,name, data_type, prec,scale,rdx,len,  prf, suf, cp,  nul, case,srch,unsigned,money,auto, local,                 aux */
  157. values (50,"bit",-7,        1,   0,    2,  null, null,null,null,0,   0,   2,   null,    0,    null, /* Local Bit */ "bit", 0)
  158.  
  159. insert into MSdatatype_info
  160. /* ss_type,name,  data_type,prec,scale,rdx, len, prf, suf, cp,          nul,case,    srch,unsigned,money,auto, local,                   aux */
  161. values (47,"char",1,        null,null, null,null,"'", "'", "max length",1,  @case,   3,   null,    0,    null, /* Local Char */ "char", 0)
  162.  
  163. insert into MSdatatype_info
  164. /* ss_type,name,      data_type,prec,scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto, local,                           aux */
  165. values (61,"datetime",11,       23,  3,    10, 16,  "'", "'", null, 1,  0,   3,   null,    0,    null, /* Local Datetime */ "datetime", 0)
  166.  
  167. insert into MSdatatype_info
  168. /* ss_type,name,           data_type,prec,scale,rdx,len, prf, suf, cp,  nul, case,srch,unsigned,money,auto, local,                                     aux */
  169. values (58,"smalldatetime",11,       16,  0,    10, 16,  "'", "'", null, 1,   0,   3,   null,    0,    null, /* Local Smalldatetime */ "smalldatetime", 0)
  170.  
  171. insert into MSdatatype_info  /* sql server type is "datetimn" */
  172. /* ss_type, name,      data_type,prec, scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto, local,                           aux */
  173. values (111,"smalldatetime",0,    0,   0,    10,  0,  "'", "'", null, 1,  0,   3,   null,    0,    null, /* Local Datetimn */ "datetime", null)
  174.  
  175. insert into MSdatatype_info
  176. /* ss_type, name,  data_type,prec,scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                     aux */
  177. values (62,"float",6,        15,  null, 10, null,null,null,null,1,  0,   2,   0,       0,    0,   /* Local Float */ "float", 0)
  178.  
  179. insert into MSdatatype_info  /* sql server type is "floatn" */
  180. /* ss_type, name,             data_type,prec,scale,rdx,len,  prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                                   aux */
  181. values (109,"float        real",0,        0,  null, 10, 0,   null,null,null, 1,  0,   2,   0,       0,    0, /* Local RealFloat */ "real      float", null)
  182.  
  183. insert into MSdatatype_info
  184. /* ss_type, name,  data_type,prec,scale,rdx,len,  prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                   aux */
  185. values (59, "real",7,        7,   null, 10, null, null,null,null, 1,  0,   2,   0,       0,    0,   /* Local Real */ "real", 0)
  186.  
  187. insert into MSdatatype_info
  188. /* ss_type, name,        data_type,prec, scale,rdx,len,  prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                               aux */
  189. values(122, "smallmoney",3,        10,   4,    10, null, "$", null,null, 1,  0,   2,   0,       1,    0,   /* Local Smallmoney */ "smallmoney", 0)
  190.  
  191. insert into MSdatatype_info
  192. /* ss_type, name,   data_type,prec, scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                 aux */
  193. values (56, "int",  4,        10,   0,    10, null,null,null,null, 1,  0,   2,   0,       0,    0,   /* Local Int */ "int", 0)
  194.  
  195. insert into MSdatatype_info  /* sql server type is "intn" */
  196. /* ss_type, name,                data_type,prec,scale,rdx,len, prf, suf, cp,   nul,case,srch,unsigned,money,auto,local,                                 aux */
  197. values (38, "smallint     tinyint",0,      0,   0,    10,  0,  null,null,null,  1,  0,   2,   0,       0,    0,   /* Local Intn */ "tinyint   smallint", null)
  198.  
  199. insert into MSdatatype_info
  200. /* ss_type, name,    data_type,prec,scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                     aux */
  201. values (60, "money", 3,        19,  4,    10, null,"$", null,null, 1,  0,   2,   0,       1,    0,   /* Local Money */ "money", 0)
  202.  
  203. insert into MSdatatype_info   /* sql server type is "moneyn" */
  204. /* ss_type, name,        data_type,prec,scale,rdx,len, prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                                aux */
  205. values (110,"smallmoney",  0,        0,  4,    10, 0,  "$", null,null, 1,  0,   2,   0,       1,    0,   /* Local Moneyn */ "smallmoneymoney", null)
  206.  
  207. insert into MSdatatype_info
  208. /* ss_type, name,      data_type,prec,scale,rdx, len, prf, suf, cp,  nul,case,srch,unsigned,money,auto,local,                           aux */
  209. values (52, "smallint", 5,        5,   0,    10, null,null,null,null, 1,  0,   2,   0,       0,    0,   /* Local Smallint */ "smallint", 0)
  210.  
  211. insert into MSdatatype_info
  212. /* ss_type,name,  data_type,prec,      scale,rdx,  len,       prf, suf,cp,  nul,case,    srch,unsigned,money,auto, local,                   aux */
  213. values (35,"text",-1,       2147483647,null, null, 2147483647,"'", "'",null, 1, @case,    1,  null,    0,    null, /* Local Text */ "text", 0)
  214.  
  215. insert into MSdatatype_info
  216. /* ss_type,name,       data_type,prec,scale,rdx, len, prf, suf,  cp,          nul,case,srch,unsigned,money,auto, local,                             aux */
  217. values (37,"varbinary",-3,       null,null, null,null,"0x",null, "max length", 1,  0,   2,  null,    0,    null, /* Local Varbinary */ "varbinary", 0)
  218.  
  219. insert into MSdatatype_info
  220. /* ss_type, name,     data_type,prec, scale,rdx,len, prf, suf,  cp,  nul,case,srch,unsigned,money,auto,local,                         aux */
  221. values (48, "tinyint",-6,       3,    0,    10, null,null,null, null, 1,  0,   2,   1,       0,    0,   /* Local Tinyint */ "tinyint", 0)
  222.  
  223. insert into MSdatatype_info
  224. /* ss_type,name,     data_type,prec,scale,rdx, len, prf, suf, cp,          nul,case, srch,unsigned,money,auto, local,                         aux */
  225. values (39,"varchar",12,       null,null, null,null,"'", "'", "max length", 1, @case, 3,   null,    0,    null, /* Local Varchar */ "varchar", 0)
  226.  
  227. insert into MSdatatype_info
  228. /* ss_type,name,   data_type,prec,      scale,rdx, len,       prf, suf, cp,  nul,case,srch,unsigned,money,auto, local,                     aux */
  229. values (34,"image",-4,       2147483647,null, null,2147483647,"0x",null,null,1,  0,   1,   null,    0,    null, /* Local Image */ "image", 0)
  230. end
  231. go
  232.  
  233. print "creating table MStable_types"
  234. go
  235. create table MStable_types (ss_type char(1),sag_type varchar(32))
  236. go
  237.  
  238. insert into MStable_types
  239.     values ('S','SYSTEM TABLE')
  240. insert into MStable_types
  241.     values ('U','TABLE')
  242. insert into MStable_types
  243.     values ('V','VIEW')
  244. go
  245.  
  246. dump tran master with truncate_only
  247. go
  248.  
  249. print "creating table MSserver_info"
  250. go
  251. create table MSserver_info (attribute_id      int,
  252.                           attribute_name  varchar(60),
  253.                           attribute_value varchar(255))
  254. go
  255.  
  256. insert into MSserver_info
  257.     values (1,"DBMS_NAME","Microsoft SQL SERVER")
  258. insert into MSserver_info
  259.     values (2,"DBMS_VER",@@version)
  260. insert into MSserver_info
  261.     values (6,"DBE_NAME","")
  262. insert into MSserver_info
  263.     values (10,"OWNER_TERM","owner")
  264. insert into MSserver_info
  265.     values (11,"TABLE_TERM","table")
  266. insert into MSserver_info
  267.     values (12,"MAX_OWNER_NAME_LENGTH","30")
  268. insert into MSserver_info
  269.     values (16,"IDENTIFIER_CASE","MIXED")
  270. insert into MSserver_info
  271.     values (15,"COLUMN_LENGTH","30")
  272. insert into MSserver_info
  273.     values (13,"TABLE_LENGTH","30")
  274. insert into MSserver_info
  275.     values (100,"USERID_LENGTH","30")
  276. insert into MSserver_info
  277.     values (17,"TX_ISOLATION","2")
  278. insert into MSserver_info
  279.     values (18,"COLLATION_SEQ","")
  280. insert into MSserver_info
  281.     values (14,"MAX_QUAL_LENGTH","30")
  282. insert into MSserver_info
  283.     values (101,"QUALIFIER_TERM","database")
  284. insert into MSserver_info
  285.     values (19,"SAVEPOINT_SUPPORT","Y")
  286. insert into MSserver_info
  287.     values (20,"MULTI_RESULT_SETS","Y")
  288. insert into MSserver_info
  289.     values (102,"NAMED_TRANSACTIONS","Y")
  290. insert into MSserver_info
  291.     values (103,"SPROC_AS_LANGUAGE","Y")
  292. insert into MSserver_info
  293.     values (103,"REMOTE_SPROC","Y")
  294. insert into MSserver_info
  295.     values (22,"ACCESSIBLE_TABLES","Y")
  296. insert into MSserver_info
  297.     values (104,"ACCESSIBLE_SPROC","Y")
  298. insert into MSserver_info
  299.     values (105,"MAX_INDEX_COLS","16")
  300. insert into MSserver_info
  301.     values (106,"RENAME_TABLE","Y")
  302. insert into MSserver_info
  303.     values (107,"RENAME_COLUMN","Y")
  304. insert into MSserver_info
  305.     values (108,"DROP_COLUMN","N")
  306. insert into MSserver_info
  307.     values (109,"INCREASE_COLUMN_LENGTH","N")
  308. insert into MSserver_info
  309.     values (110,"DDL_IN_TRANSACTION","N")
  310. insert into MSserver_info
  311.     values (111,"DESCENDING_INDEXES","N")
  312. insert into MSserver_info
  313.     values (112,"SP_RENAME","Y")
  314. insert into MSserver_info
  315.     values (500,"SYS_SPROC_VERSION","01.00.2101")
  316. go
  317.  
  318. grant select on MSserver_info to public
  319. go
  320.  
  321. print "creating sp_tables"
  322. go
  323.  
  324. create procedure sp_tables(@table_name        varchar(32)  = null,
  325.                            @table_owner     varchar(32)  = null,
  326.                            @table_qualifier varchar(32)  = null,
  327.                            @table_type        varchar(100) = null)
  328. as
  329.     declare @type1 char(1),
  330.             @type2 char(1),
  331.             @type3 char(1),
  332.             @tableindex int
  333.  
  334.  
  335.             /* Special feature #1:  enumerate databases when owner and name
  336.                  are blank but qualifier is explicitly '%'.  */
  337.         if @table_qualifier = '%' and 
  338.              @table_owner = '' and 
  339.              @table_name = ''
  340.             begin
  341.                 select
  342.             table_qualifier = name,
  343.             table_owner=null,
  344.             table_name=null,
  345.             table_type = 'Database',
  346.             remarks = convert(varchar(254),null)
  347.              from master..sysdatabases
  348.             end
  349.             /* Special feature #2:  enumerate owners when qualifier and name
  350.                  are blank but owner is explicitly '%'.  */
  351.         else if @table_qualifier = '' and 
  352.                       @table_owner = '%' and 
  353.                         @table_name = ''
  354.             begin
  355.                 select distinct
  356.             table_qualifier = null,
  357.             table_owner=user_name(uid),
  358.             table_name=null,
  359.             table_type = 'Owner',
  360.             remarks = convert(varchar(254),null)
  361.              from sysobjects
  362.             end
  363.         else  /* end of special features -- do normal processing */
  364.             begin
  365.     if @table_qualifier is not null
  366.     begin
  367.         if db_name() != @table_qualifier
  368.         begin
  369.     if @table_qualifier = ''
  370.     begin
  371.         /* in this case, we need to return an empty result set */
  372.         /* because the user has requested a database with an empty name */
  373.         select @table_name = ''
  374.         select @table_owner = ''
  375.     end else
  376.     begin
  377.                 print "Table qualifier must be name of current database"
  378.                 return
  379.     end
  380.         end
  381.     end
  382.     if @table_type is null
  383.     begin
  384.         select @type1 = 'U'
  385.         select @type2 = 'V'
  386.         select @type3 = 'S'
  387.     end
  388.     else
  389.     begin
  390.         if (charindex("'TABLE'",@table_type) != 0)
  391.             select @type1 = 'U'
  392.         else
  393.             select @type1 = 'X'
  394.         if (charindex("'SYSTEM TABLE'",@table_type) != 0)
  395.             select @type2 = 'S'
  396.         else
  397.             select @type2 = 'X'
  398.         if (charindex("'VIEW'",@table_type) != 0)
  399.             select @type3 = 'V'
  400.         else
  401.             select @type3 = 'X'
  402.     end
  403.     
  404.     if @table_name is null
  405.     begin
  406.         select @table_name = '%'
  407.     end 
  408.     else begin
  409.         if (@table_owner is null) and (charindex('%', @table_name) = 0)
  410.         begin
  411.             if exists (select * from sysobjects 
  412.                         where uid = user_id()
  413.                         and name = @table_name
  414.                         and (type = 'U' or type = 'V' or type = 'S'))
  415.             begin
  416.                 select @table_owner = user_name()
  417.             end
  418.         end
  419.     end
  420.     if @table_owner is null
  421.         select @table_owner = '%'
  422.     select
  423.         table_qualifier = db_name(),
  424.         table_owner=user_name(o.uid),
  425.         table_name=o.name,
  426.         table_type = t.sag_type,
  427.         remarks = convert(varchar(254),null)
  428.     from
  429.         sysusers u,sysobjects o,master.dbo.MStable_types t
  430.     where
  431.         o.name like @table_name
  432.         and user_name(o.uid) like @table_owner
  433.         and o.type = t.ss_type
  434.         and ( o.type = @type1 or o.type = @type2 or o.type = @type3)
  435.         and u.uid=user_id() /* constrain sysusers uid for use in subquery */
  436.         and (suser_id()=1    /* User is the System Administrator */
  437.              or o.uid=user_id()   /* User created the object */
  438.              /* here's the magic... select the highest precedence of permissions in the order (user,group,public)  */
  439.              or ((select max(((sign(uid)*abs(uid-16383))*2)+(protecttype&1))
  440.                   from sysprotects p
  441.                   /* outer join to correlate with all rows in sysobjects */
  442.                   where p.id =* o.id
  443.                       /* get rows for public,current user,user's group */
  444.                       and (p.uid=0 or p.uid=user_id() or p.uid=*u.gid)
  445.                       /* check for SELECT,EXECUTE privilege */
  446.                       and (action in (193,224)))&1     /* more magic...normalize GRANT */
  447.                 )=1    /* final magic...compare Grants    */
  448.             )
  449.     order by table_type, table_qualifier, table_owner, table_name
  450.         end
  451. go
  452.  
  453. grant execute on sp_tables to public
  454. go
  455.  
  456. dump tran master with truncate_only
  457. go
  458.  
  459. print "creating sp_statistics"
  460. go
  461.  
  462. dump tran master with truncate_only
  463. go
  464.  
  465.  
  466. CREATE PROCEDURE sp_statistics (@table_name      varchar(32),
  467.                              @table_owner      varchar(32) = null,
  468.                              @table_qualifier varchar(32) = null,
  469.                              @index_name      varchar(32) = '%',
  470.                              @is_unique       char(1) = 'N')
  471. AS
  472.     DECLARE @indid                int
  473.     DECLARE @lastindid            int
  474.     DECLARE @table_id            int
  475.     DECLARE @full_table_name    char(70)
  476.     if @table_qualifier is not null
  477.     begin
  478.         if db_name() != @table_qualifier
  479.         begin
  480.             print "Table qualifier must be name of current database"
  481.             return
  482.         end
  483.     end
  484.     if @@trancount != 0
  485.     begin
  486.         raiserror 20001 "stored procedure sp_statistics can not be run while in a transaction"
  487.         return
  488.     end
  489.     create table #TmpIndex( table_qualifier varchar(32),
  490.                             table_owner     varchar(32),
  491.                             table_name      varchar(32),
  492.                             index_qualifier varchar(32) null,
  493.                             index_name      varchar(32) null,
  494.                             non_unique      smallint null,
  495.                             type            smallint,
  496.                             seq_in_index    smallint null,
  497.                             column_name     varchar(32) null,
  498.                             collation       char(1) null,
  499.                             remarks         varchar(255) null,
  500.                             index_id        int null,
  501.                             cardinality     int null,
  502.                             pages           int null,
  503.                             status          smallint)
  504.     if @table_owner is null
  505.     begin
  506.         SELECT @full_table_name = @table_name
  507.     end
  508.     else
  509.     begin
  510.         SELECT @full_table_name = @table_owner + '.' + @table_name
  511.     end
  512.     SELECT @table_id = object_id(@full_table_name)
  513.     SELECT    @indid=min(indid)
  514.     FROM sysindexes
  515.     WHERE id=@table_id
  516.         AND indid > 0
  517.         AND indid < 255
  518.     
  519.     WHILE @indid != NULL
  520.     BEGIN
  521.         INSERT #TmpIndex
  522.         SELECT
  523.             DB_NAME(),                               /* table_qualifier */
  524.             USER_NAME(o.uid),                        /* table_owner     */
  525.             o.name,                                  /* table_name      */
  526.             null,                                    /* index_qualifier */
  527.             x.name,                                  /* index_name      */
  528.             0,                                       /* non_unique      */
  529.             1,                                       /* type            */
  530.             colid,                                   /* seq_in_index    */
  531.             INDEX_COL(@full_table_name,indid,colid), /* column_name     */
  532.             "A",                                     /* collation       */
  533.             "",                                      /* remarks         */
  534.             @indid,                                  /* index_id        */
  535.             x.rows,                                  /* cardinality     */
  536.             x.dpages,                                /* pages           */
  537.             x.status                                 /* status          */
  538.         FROM sysindexes x,syscolumns c,sysobjects o
  539.         WHERE x.id=@table_id
  540.             AND x.id = o.id
  541.             AND x.id=c.id
  542.             AND c.colid<keycnt+ (x.status&16)/16
  543.             AND x.indid=@indid
  544.         /*
  545.         **    Now move @indid to the next index.
  546.         */
  547.         SELECT @lastindid = @indid
  548.         SELECT @indid = NULL
  549.         SELECT @indid = min(indid)
  550.         FROM sysindexes
  551.         WHERE id = @table_id
  552.             AND indid > @lastindid
  553.             AND indid < 255
  554.     END
  555.    
  556.     UPDATE #TmpIndex
  557.         SET non_unique = 1
  558.         WHERE  status&0x2 != 2
  559.     UPDATE #TmpIndex
  560.         SET type = 3, cardinality = NULL, pages = NULL
  561.         WHERE  index_id > 1
  562.  
  563.  
  564.      /* now add row for table statistics */
  565.  
  566.  
  567.       INSERT #TmpIndex  
  568.         SELECT
  569.             DB_NAME(),          /* table_qualifier */
  570.             USER_NAME(o.uid),   /* table_owner     */
  571.             o.name,             /* table_name      */
  572.             null,               /* index_qualifier */ 
  573.             null,               /* index_name      */
  574.             null,               /* non_unique      */
  575.             0,                  /* type            */
  576.             null,               /* seq_in_index    */
  577.             null,               /* column_name     */
  578.             null,               /* collation       */
  579.             "",                 /* remarks         */
  580.             0,                  /* index_id        */
  581.             x.rows,             /* cardinality     */
  582.             x.dpages,           /* pages           */
  583.             0                   /* status          */
  584.         FROM sysindexes x, sysobjects o
  585.         WHERE o.id=@table_id
  586.             AND x.id = o.id
  587.             AND (x.indid=0 or x.indid=1)
  588.  
  589.  
  590.     if @is_unique != 'Y'
  591.         SELECT
  592.             table_qualifier, 
  593.             table_owner,     
  594.             table_name,       
  595.             non_unique,       
  596.             index_qualifier, 
  597.             index_name,       
  598.             type,             
  599.             seq_in_index,     
  600.             column_name,     
  601.             collation,
  602.             cardinality,     
  603.             pages             
  604.          FROM #TmpIndex       
  605.         WHERE index_name like @index_name or index_name is null   
  606.         ORDER BY non_unique,type,index_name,seq_in_index         
  607.     else
  608.         SELECT
  609.             table_qualifier,
  610.             table_owner,
  611.             table_name,
  612.             non_unique,
  613.             index_qualifier,
  614.             index_name,
  615.             type,
  616.             seq_in_index,
  617.             column_name,
  618.             collation,
  619.             cardinality,
  620.             pages
  621.         FROM #TmpIndex
  622.         WHERE (non_unique = 0 or non_unique is NULL)
  623.             and (index_name like @index_name or index_name is null)
  624.         ORDER BY non_unique,type,index_name,seq_in_index
  625.     DROP TABLE #TmpIndex
  626. go
  627.  
  628. grant execute on sp_statistics to public
  629. go
  630.  
  631. dump tran master with truncate_only
  632. go
  633.  
  634. print "creating sp_columns"
  635. go
  636.  
  637. /* this is the version for servers  without support for UNION */
  638. CREATE PROCEDURE sp_columns (@table_name varchar(32),
  639.                              @table_owner varchar(32) = null,
  640.                              @table_qualifier varchar(32) = null,
  641.                              @column_name varchar(32) = null )
  642. AS
  643.     if @column_name is null
  644.         select @column_name = '%'
  645.     DECLARE @full_table_name    char(70)
  646.     DECLARE @table_id int
  647.     if @table_qualifier is not null
  648.     begin
  649.         if db_name() != @table_qualifier
  650.         begin
  651.             print "Table qualifier must be name of current database"
  652.             return
  653.         end
  654.     end
  655.         if @table_name is null
  656.         begin
  657.             select @table_name='%'
  658.         end
  659.     if @table_owner is null
  660.     begin
  661.         SELECT @full_table_name = @table_name
  662.     end
  663.     else
  664.     begin
  665.         SELECT @full_table_name = @table_owner + '.' + @table_name
  666.     end
  667.     SELECT @table_id = 0
  668.     SELECT @table_id = object_id(@full_table_name)
  669.     if ((charindex('%',@full_table_name) = 0) and
  670.        (charindex('_',@full_table_name) = 0)  and
  671.     @table_id != 0)  
  672.     begin
  673.     /* this block is for the case where there is no pattern
  674.              matching required for the table name */
  675.     SELECT
  676.             table_qualifier = DB_NAME(),
  677.             table_owner = USER_NAME(o.uid),
  678.             table_name = o.name,
  679.             column_name = c.name,
  680.             data_type=d.data_type+convert(smallint,
  681.                         isnull(d.aux, 
  682.                         ascii(substring("666AAA@@@CB??GG",
  683.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  684.                         -60)),
  685.             type_name=rtrim(substring(d.type_name, 
  686.                     1+isnull(d.aux, 
  687.                     ascii(substring("III<<<MMMI<<A<A",
  688.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  689.                     1))-60), 13)),
  690.             precision=isnull(d.data_precision, convert(int,c.length))
  691.                 +isnull(d.aux, convert(int,
  692.                 ascii(substring("???AAAFFFCKFOLS",
  693.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  694.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  695.                     isnull(d.aux,
  696.                     ascii(substring("AAA<BB<DDDHJSPP",
  697.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  698.                     1))-64)),
  699.             scale = d.numeric_scale +convert(smallint,
  700.                     isnull(d.aux,
  701.                     ascii(substring("<<<<<<<<<<<<<<?",
  702.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  703.                     1))-60)),
  704.             radix=d.numeric_radix,
  705.             nullable=convert(smallint, convert(bit, c.status&8)),
  706.             remarks = c.name,
  707.             ss_data_type = c.type
  708.         FROM
  709.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  710.         WHERE
  711.             o.id=@table_id
  712.             AND c.id = o.id
  713.             AND c.type = d.ss_dtype
  714.         AND c.usertype *= t.usertype
  715.             AND c.name like @column_name
  716.         
  717.     end else
  718.     begin
  719.         if @table_owner is null
  720.             select @table_owner = '%'
  721.                 /* this block is for the case where there IS pattern
  722.              matching done on the table name */
  723.         SELECT
  724.             table_qualifier = DB_NAME(),
  725.             table_owner = USER_NAME(o.uid),
  726.             table_name = o.name,
  727.             column_name = c.name,
  728.             data_type=d.data_type+convert(smallint,
  729.                         isnull(d.aux, 
  730.                         ascii(substring("666AAA@@@CB??GG",
  731.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  732.                         -60)),
  733.         type_name=rtrim(substring(d.type_name, 
  734.                     1+isnull(d.aux, 
  735.                     ascii(substring("III<<<MMMI<<A<A",
  736.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  737.                     1))-60), 13)),
  738.             precision=isnull(d.data_precision, convert(int,c.length))
  739.                 +isnull(d.aux, convert(int,
  740.                 ascii(substring("???AAAFFFCKFOLS",
  741.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  742.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  743.                     isnull(d.aux,
  744.                     ascii(substring("AAA<BB<DDDHJSPP",
  745.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  746.                     1))-64)),
  747.             scale = d.numeric_scale +convert(smallint,
  748.                     isnull(d.aux,
  749.                     ascii(substring("<<<<<<<<<<<<<<?",
  750.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  751.                     1))-60)),
  752.             radix=d.numeric_radix,
  753.             nullable=convert(smallint, convert(bit, c.status&8)),
  754.             remarks = null,
  755.             ss_data_type = c.type,
  756.             c.colid
  757.         FROM
  758.             syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  759.  
  760.         WHERE
  761.             o.name like @table_name
  762.             AND user_name(o.uid) like @table_owner
  763.             AND c.id = o.id
  764.         AND c.usertype *= t.usertype
  765.             AND c.type = d.ss_dtype
  766.             AND o.type != 'P'
  767.             AND c.name like @column_name
  768.         ORDER BY table_qualifier, table_owner, table_name, colid
  769.     end
  770. go
  771.  
  772.  
  773. /* if this is a 4.2 or later SQL Server, then we want to delete the stored
  774. procedure we just created, and create a new one which uses UNION
  775. (this fixes some bugs involving UDT names and char NULL datatype
  776. names)
  777. */
  778.  
  779. if  (charindex('1.1', @@version) = 0 
  780.     and charindex('4.0', @@version) = 0)
  781. begin
  782.     drop proc sp_columns
  783.     dump tran master with truncate_only
  784. end
  785. else
  786. begin
  787.     print ""
  788.     print ""
  789.     print "Installing catalog procedures on a 1.x or 4.0 server:"
  790.     print "Ignore the following error messages"
  791.     print ""
  792.     print ""
  793. end
  794. go
  795.  
  796.  
  797.  
  798. /* this is the version for servers which support UNION */
  799. CREATE PROCEDURE sp_columns (@table_name varchar(32),
  800.                              @table_owner varchar(32) = null,
  801.                              @table_qualifier varchar(32) = null,
  802.                              @column_name varchar(32) = null )
  803. AS
  804.     if @column_name is null
  805.         select @column_name = '%'
  806.     DECLARE @full_table_name    char(70)
  807.     DECLARE @table_id int
  808.     if @table_qualifier is not null
  809.     begin
  810.         if db_name() != @table_qualifier
  811.         begin
  812.             print "Table qualifier must be name of current database"
  813.             return
  814.         end
  815.     end
  816.         if @table_name is null
  817.         begin
  818.             select @table_name='%'
  819.         end
  820.     if @table_owner is null
  821.     begin
  822.         SELECT @full_table_name = @table_name
  823.     end
  824.     else
  825.     begin
  826.         SELECT @full_table_name = @table_owner + '.' + @table_name
  827.     end
  828.     SELECT @table_id = 0
  829.     SELECT @table_id = object_id(@full_table_name)
  830.     if ((charindex('%',@full_table_name) = 0) and
  831.        (charindex('_',@full_table_name) = 0)  and
  832.     @table_id != 0)  
  833.     begin
  834.     /* this block is for the case where there is no pattern
  835.              matching required for the table name */
  836.     SELECT
  837.             table_qualifier = DB_NAME(),
  838.             table_owner = USER_NAME(o.uid),
  839.             table_name = o.name,
  840.             column_name = c.name,
  841.             data_type=d.data_type+convert(smallint,
  842.                         isnull(d.aux, 
  843.                         ascii(substring("666AAA@@@CB??GG",
  844.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  845.                         -60)),
  846.             type_name=rtrim(substring(d.type_name, 
  847.                     1+isnull(d.aux, 
  848.                     ascii(substring("III<<<MMMI<<A<A",
  849.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  850.                     1))-60), 13)),
  851.             precision=isnull(d.data_precision, convert(int,c.length))
  852.                 +isnull(d.aux, convert(int,
  853.                 ascii(substring("???AAAFFFCKFOLS",
  854.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  855.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  856.                     isnull(d.aux,
  857.                     ascii(substring("AAA<BB<DDDHJSPP",
  858.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  859.                     1))-64)),
  860.             scale = d.numeric_scale +convert(smallint,
  861.                     isnull(d.aux,
  862.                     ascii(substring("<<<<<<<<<<<<<<?",
  863.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  864.                     1))-60)),
  865.             radix=d.numeric_radix,
  866.             nullable=convert(smallint, convert(bit, c.status&8)),
  867.             remarks = c.name,
  868.             ss_data_type = c.type,
  869.             colid = c.colid
  870.         FROM
  871.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  872.         WHERE
  873.             o.id=@table_id
  874.             AND c.id = o.id
  875.             AND c.type = d.ss_dtype
  876.             AND c.name like @column_name
  877.             AND d.ss_dtype IN (111, 109, 38, 110)
  878.     UNION
  879.  SELECT
  880.             table_qualifier = DB_NAME(),
  881.             table_owner = USER_NAME(o.uid),
  882.             table_name = o.name,
  883.             column_name = c.name,
  884.             data_type=d.data_type+convert(smallint,
  885.                         isnull(d.aux, 
  886.                         ascii(substring("666AAA@@@CB??GG",
  887.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  888.                         -60)),
  889.             type_name=t.name,
  890.             precision=isnull(d.data_precision, convert(int,c.length))
  891.                 +isnull(d.aux, convert(int,
  892.                 ascii(substring("???AAAFFFCKFOLS",
  893.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  894.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  895.                     isnull(d.aux,
  896.                     ascii(substring("AAA<BB<DDDHJSPP",
  897.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  898.                     1))-64)),
  899.             scale = d.numeric_scale +convert(smallint,
  900.                     isnull(d.aux,
  901.                     ascii(substring("<<<<<<<<<<<<<<?",
  902.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  903.                     1))-60)),
  904.             radix=d.numeric_radix,
  905.             nullable=convert(smallint, convert(bit, c.status&8)),
  906.             remarks = c.name,
  907.             ss_data_type = c.type,
  908.              colid = c.colid
  909.         FROM
  910.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  911.         WHERE
  912.             o.id=@table_id
  913.             AND c.id = o.id
  914.             AND c.type = d.ss_dtype
  915.            AND c.usertype *= t.usertype
  916.            AND c.name like @column_name
  917.           AND d.ss_dtype NOT IN (111, 109, 38, 110)  
  918.           ORDER BY colid      
  919.     end else
  920.     begin
  921.         if @table_owner is null
  922.             select @table_owner = '%'
  923.                 /* this block is for the case where there IS pattern
  924.              matching done on the table name */
  925.     SELECT
  926.             table_qualifier = DB_NAME(),
  927.             table_owner = USER_NAME(o.uid),
  928.             table_name = o.name,
  929.             column_name = c.name,
  930.             data_type=d.data_type+convert(smallint,
  931.                         isnull(d.aux, 
  932.                         ascii(substring("666AAA@@@CB??GG",
  933.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  934.                         -60)),
  935.             type_name=rtrim(substring(d.type_name, 
  936.                     1+isnull(d.aux, 
  937.                     ascii(substring("III<<<MMMI<<A<A",
  938.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  939.                     1))-60), 13)),
  940.             precision=isnull(d.data_precision, convert(int,c.length))
  941.                 +isnull(d.aux, convert(int,
  942.                 ascii(substring("???AAAFFFCKFOLS",
  943.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  944.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  945.                     isnull(d.aux,
  946.                     ascii(substring("AAA<BB<DDDHJSPP",
  947.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  948.                     1))-64)),
  949.             scale = d.numeric_scale +convert(smallint,
  950.                     isnull(d.aux,
  951.                     ascii(substring("<<<<<<<<<<<<<<?",
  952.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  953.                     1))-60)),
  954.             radix=d.numeric_radix,
  955.             nullable=convert(smallint, convert(bit, c.status&8)),
  956.             remarks = c.name,
  957.             ss_data_type = c.type,
  958.             colid = c.colid
  959.         FROM
  960.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  961.         WHERE
  962.             o.name like @table_name
  963.             AND user_name(o.uid) like @table_owner
  964.             AND o.id = c.id
  965.             AND c.type = d.ss_dtype
  966.             AND o.type != 'P'
  967.             AND c.name like @column_name
  968.             AND d.ss_dtype IN (111, 109, 38, 110)
  969.     UNION
  970.  SELECT
  971.             table_qualifier = DB_NAME(),
  972.             table_owner = USER_NAME(o.uid),
  973.             table_name = o.name,
  974.             column_name = c.name,
  975.             data_type=d.data_type+convert(smallint,
  976.                         isnull(d.aux, 
  977.                         ascii(substring("666AAA@@@CB??GG",
  978.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  979.                         -60)),
  980.             type_name=t.name,
  981.             precision=isnull(d.data_precision, convert(int,c.length))
  982.                 +isnull(d.aux, convert(int,
  983.                 ascii(substring("???AAAFFFCKFOLS",
  984.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  985.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  986.                     isnull(d.aux,
  987.                     ascii(substring("AAA<BB<DDDHJSPP",
  988.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  989.                     1))-64)),
  990.             scale = d.numeric_scale +convert(smallint,
  991.                     isnull(d.aux,
  992.                     ascii(substring("<<<<<<<<<<<<<<?",
  993.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  994.                     1))-60)),
  995.             radix=d.numeric_radix,
  996.             nullable=convert(smallint, convert(bit, c.status&8)),
  997.             remarks = c.name,
  998.             ss_data_type = c.type,
  999.             colid = c.colid
  1000.         FROM
  1001.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1002.         WHERE
  1003.           o.name like @table_name
  1004.             AND user_name(o.uid) like @table_owner
  1005.             AND o.id = c.id
  1006.             AND c.type = d.ss_dtype
  1007.            AND c.usertype *= t.usertype
  1008.             AND o.type != 'P'
  1009.            AND c.name like @column_name
  1010.           AND d.ss_dtype NOT IN (111, 109, 38, 110)        
  1011.           ORDER BY table_owner, table_name, colid
  1012.         end
  1013.  
  1014.     
  1015. go
  1016.  
  1017. grant execute on sp_columns to public
  1018. go
  1019.  
  1020. dump tran master with truncate_only
  1021. go
  1022. print "creating sp_fkeys"
  1023. go
  1024.  
  1025. CREATE PROCEDURE sp_fkeys( @pktable_name      varchar(32) = null,
  1026.                            @pktable_owner      varchar(32) = null,
  1027.                            @pktable_qualifier varchar(32) = null,
  1028.                            @fktable_name      varchar(32) = null,
  1029.                            @fktable_owner      varchar(32) = null,
  1030.                            @fktable_qualifier varchar(32) = null )
  1031. as
  1032.     declare     @order_by_pk int
  1033.     select  @order_by_pk = 0
  1034.  
  1035.     if (@pktable_name is null) and (@fktable_name is null)
  1036.     begin
  1037.         print "pk table name or fk table name must be given"
  1038.         return
  1039.     end
  1040.     if @fktable_qualifier is not null
  1041.     begin
  1042.         if db_name() != @fktable_qualifier
  1043.         begin
  1044.             print "Foreign Key Table qualifier must be name of current database"
  1045.             return
  1046.         end
  1047.     end
  1048.     if @pktable_qualifier is not null
  1049.     begin
  1050.         if db_name() != @pktable_qualifier
  1051.         begin
  1052.             print "Primary Key Table qualifier must be name of current database"
  1053.             return
  1054.         end
  1055.     end
  1056.  
  1057.     if @pktable_name is null
  1058.     begin
  1059.         select @pktable_name = '%'
  1060.         select @order_by_pk = 1
  1061.     end
  1062.     if @pktable_owner is null
  1063.         select @pktable_owner = '%'
  1064.     if @fktable_name is null
  1065.         select @fktable_name = '%'
  1066.     if @fktable_owner is null
  1067.         select @fktable_owner = '%'
  1068.  
  1069.     if @@trancount != 0
  1070.     begin
  1071.         raiserror 20001 "catalog procedure sp_fkeys can not be run in a transaction"
  1072.         return
  1073.     end
  1074.     create table #fkeys( pktable_qualifier varchar(32),
  1075.                          pktable_owner       varchar(32),
  1076.                          pktable_name       varchar(32),
  1077.                          pkcolumn_name      varchar(32),
  1078.                          fktable_qualifier varchar(32),
  1079.                          fktable_owner       varchar(32),
  1080.                          fktable_name       varchar(32),
  1081.                          fkcolumn_name       varchar(32),
  1082.                          key_seq           smallint)
  1083.     insert into #fkeys
  1084.         select
  1085.             db_name(),
  1086.             (select user_name(uid) from sysobjects o where o.id = k.depid),
  1087.             object_name(k.depid),
  1088.                  (    select name 
  1089.                     from syscolumns
  1090.                     where id = k.depid
  1091.                     and colid = k.depkey1),
  1092.     db_name(),
  1093.            (select user_name(uid) from sysobjects o where o.id = k.id),
  1094.             object_name(k.id),
  1095.                c.name,
  1096.             1
  1097.         from
  1098.             syskeys k,syscolumns c
  1099.         where
  1100.             c.id = k.id
  1101.             and k.type = 2
  1102.             and c.colid = key1
  1103.         if (@@rowcount    = 0)
  1104.             goto done
  1105.         insert into #fkeys
  1106.             select
  1107.                 db_name(),
  1108.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1109.                 object_name(k.depid),
  1110.                 (select name 
  1111.                     from syscolumns
  1112.                     where id = k.depid
  1113.                     and colid = k.depkey2),
  1114.                 db_name(),
  1115.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1116.                 object_name(k.id),
  1117.                 c.name,
  1118.                 2
  1119.             from
  1120.                 syskeys k,syscolumns c
  1121.             where
  1122.                 c.id = k.id
  1123.                 and k.type = 2
  1124.                 and c.colid = key2
  1125.         if (@@rowcount = 0)
  1126.             goto done
  1127.         insert into #fkeys
  1128.            select
  1129.                 db_name(),
  1130.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1131.                 object_name(k.depid),
  1132.                 (select name 
  1133.                     from syscolumns
  1134.                     where id = k.depid
  1135.                     and colid = k.depkey3),
  1136.                 db_name(),
  1137.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1138.                 object_name(k.id),
  1139.                 c.name,
  1140.                 3
  1141.             from
  1142.                 syskeys k,syscolumns c
  1143.             where
  1144.                 c.id = k.id
  1145.                 and k.type = 2
  1146.                 and c.colid = key3
  1147.         if (@@rowcount = 0)
  1148.             goto done
  1149.         insert into #fkeys
  1150.         select
  1151.                 db_name(),
  1152.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1153.                 object_name(k.depid),
  1154.                 (select name 
  1155.                     from syscolumns
  1156.                     where id = k.depid
  1157.                     and colid = k.depkey4),
  1158.                 db_name(),
  1159.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1160.                 object_name(k.id),
  1161.                 c.name,
  1162.                 4
  1163.             from
  1164.                 syskeys k,syscolumns c
  1165.             where
  1166.                 c.id = k.id
  1167.                 and k.type = 2
  1168.                 and c.colid = key4
  1169.         if (@@rowcount = 0)
  1170.             goto done
  1171.         insert into #fkeys
  1172.            select
  1173.                 db_name(),
  1174.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1175.                 object_name(k.depid),
  1176.                 (select name 
  1177.                     from syscolumns
  1178.                     where id = k.depid
  1179.                     and colid = k.depkey5),
  1180.                 db_name(),
  1181.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1182.                 object_name(k.id),
  1183.                 c.name,
  1184.                 5
  1185.             from
  1186.                 syskeys k,syscolumns c
  1187.             where
  1188.                 c.id = k.id
  1189.                 and k.type = 2
  1190.                 and c.colid = key5
  1191.  
  1192.         if (@@rowcount = 0)
  1193.             goto done
  1194.         insert into #fkeys
  1195.             select
  1196.                 db_name(),
  1197.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1198.                 object_name(k.depid),
  1199.                 (select name 
  1200.                     from syscolumns
  1201.                     where id = k.depid
  1202.                     and colid = k.depkey6),
  1203.                 db_name(),
  1204.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1205.                 object_name(k.id),
  1206.                 c.name,
  1207.                 6
  1208.             from
  1209.                 syskeys k,syscolumns c
  1210.             where
  1211.                 c.id = k.id
  1212.                 and k.type =2
  1213.                 and c.colid = key6
  1214.         if (@@rowcount = 0)
  1215.             goto done
  1216.         insert into #fkeys
  1217.             select
  1218.                 db_name(),
  1219.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1220.                 object_name(k.depid),
  1221.                 (select name 
  1222.                     from syscolumns
  1223.                     where id = k.depid
  1224.                     and colid = k.depkey7),
  1225.                 db_name(),
  1226.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1227.                 object_name(k.id),
  1228.                 c.name,
  1229.                 7
  1230.             from
  1231.                 syskeys k,syscolumns c
  1232.             where
  1233.                 c.id = k.id
  1234.                 and k.type = 2
  1235.                 and c.colid = key7
  1236.         if (@@rowcount    = 0)
  1237.             goto done
  1238.         insert into #fkeys
  1239.             select
  1240.                 db_name(),
  1241.                 (select user_name(uid) from sysobjects o where o.id = k.depid),
  1242.                 object_name(k.depid),
  1243.                 (select name 
  1244.                     from syscolumns
  1245.                     where id = k.depid
  1246.                     and colid = k.depkey8),
  1247.                 db_name(),
  1248.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1249.                 object_name(k.id),
  1250.                 c.name,
  1251.                 8
  1252.             from
  1253.                 syskeys k,syscolumns c
  1254.             where
  1255.                 c.id = k.id
  1256.                 and k.type = 2
  1257.                 and c.colid = key8
  1258.     done:
  1259.     if @order_by_pk = 1
  1260.         select
  1261.             pktable_qualifier,
  1262.             pktable_owner,
  1263.             pktable_name,
  1264.             pkcolumn_name,
  1265.             fktable_qualifier,
  1266.             fktable_owner,
  1267.             fktable_name,
  1268.             fkcolumn_name,
  1269.             key_seq,
  1270.             update_rule = convert(smallint, null),
  1271.     delete_rule = convert(smallint,null)
  1272.         from #fkeys
  1273.         where fktable_name like @fktable_name
  1274.             and fktable_owner like @fktable_owner
  1275.             and pktable_name  like @pktable_name
  1276.             and pktable_owner like @pktable_owner
  1277.         order by pktable_qualifier,pktable_owner,pktable_name, key_seq
  1278.     else
  1279.         select
  1280.             pktable_qualifier,
  1281.             pktable_owner,
  1282.             pktable_name,
  1283.             pkcolumn_name,
  1284.             fktable_qualifier,
  1285.             fktable_owner,
  1286.             fktable_name,
  1287.             fkcolumn_name,
  1288.             key_seq,
  1289.             update_rule = convert(smallint,null),
  1290.     delete_rule = convert(smallint,null)
  1291.         from #fkeys
  1292.         where fktable_name like @fktable_name
  1293.             and fktable_owner like @fktable_owner
  1294.             and pktable_name  like @pktable_name
  1295.             and pktable_owner like @pktable_owner
  1296.         order by fktable_qualifier,fktable_owner,fktable_name, key_seq
  1297.  
  1298. go
  1299.  
  1300. grant execute on sp_fkeys to public
  1301. go
  1302. dump tran master with truncate_only
  1303. go
  1304.  
  1305. print "creating sp_pkeys"
  1306. go
  1307.  
  1308. CREATE PROCEDURE sp_pkeys( @table_name    varchar(32),
  1309.                            @table_owner varchar(32) = null,
  1310.                            @table_qualifier varchar(32)= null )
  1311. as
  1312.     if @table_qualifier is not null
  1313.     begin
  1314.         if db_name() != @table_qualifier
  1315.         begin
  1316.             print "Table qualifier must be name of current database"
  1317.             return
  1318.         end
  1319.     end
  1320.     if @table_owner is null
  1321.         select @table_owner = '%'
  1322.     if @@trancount != 0
  1323.     begin
  1324.         raiserror 20001 "catalog procedure sp_pkeys can not be run in a transaction"
  1325.         return
  1326.     end
  1327.     create table #pkeys( table_qualifier varchar(32),
  1328.                          table_owner     varchar(32),
  1329.                          table_name      varchar(32),
  1330.                          column_name     varchar(32),
  1331.                          key_seq         smallint,
  1332.                          update_delete_rule smallint null )
  1333.     insert into #pkeys
  1334.         select
  1335.             db_name(),
  1336.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1337.             object_name(k.id),
  1338.             c.name,
  1339.             1,
  1340.             null
  1341.         from
  1342.             syskeys k,syscolumns c
  1343.         where
  1344.             c.id = k.id
  1345.             and k.type = 1
  1346.             and c.colid = k.key1
  1347.     if (@@rowcount = 0)
  1348.         goto done
  1349.     insert into #pkeys
  1350.         select
  1351.             db_name(),
  1352.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1353.             object_name(k.id),
  1354.             c.name,
  1355.             2,
  1356.             null
  1357.         from
  1358.             syskeys k,syscolumns c
  1359.         where
  1360.             c.id = k.id
  1361.             and k.type = 1
  1362.             and c.colid = key2
  1363.     if (@@rowcount = 0)
  1364.         goto done
  1365.     insert into #pkeys
  1366.         select
  1367.             db_name(),
  1368.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1369.             object_name(k.id),
  1370.             c.name,
  1371.             3,
  1372.             null
  1373.         from
  1374.             syskeys k,syscolumns c
  1375.         where
  1376.             c.id = k.id
  1377.             and k.type = 1
  1378.             and c.colid = key3
  1379.     if (@@rowcount = 0)
  1380.         goto done
  1381.     insert into #pkeys
  1382.         select
  1383.             db_name(),
  1384.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1385.             object_name(k.id),
  1386.             c.name,
  1387.             4,
  1388.             null
  1389.         from
  1390.             syskeys k,syscolumns c
  1391.         where
  1392.             c.id = k.id
  1393.             and k.type = 1
  1394.             and c.colid = key4
  1395.     if (@@rowcount = 0)
  1396.         goto done
  1397.     insert into #pkeys
  1398.         select
  1399.                 db_name(),
  1400.                 (select user_name(uid) from sysobjects o where o.id = k.id),
  1401.                 object_name(k.id),
  1402.                 c.name,
  1403.                 5,
  1404.             null
  1405.         from
  1406.             syskeys k,syscolumns c
  1407.         where
  1408.             c.id = k.id
  1409.             and k.type = 1
  1410.             and c.colid = key5
  1411.     if (@@rowcount = 0)
  1412.         goto done
  1413.     insert into #pkeys
  1414.         select
  1415.             db_name(),
  1416.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1417.             object_name(k.id),
  1418.             c.name,
  1419.             6,
  1420.             null
  1421.         from
  1422.             syskeys k,syscolumns c
  1423.         where
  1424.             c.id = k.id
  1425.             and k.type = 1
  1426.             and c.colid = key6
  1427.     if (@@rowcount = 0)
  1428.         goto done
  1429.     insert into #pkeys
  1430.         select
  1431.             db_name(),
  1432.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1433.             object_name(k.id),
  1434.             c.name,
  1435.             7,
  1436.             null
  1437.         from
  1438.             syskeys k,syscolumns c
  1439.         where
  1440.             c.id = k.id
  1441.             and k.type = 1
  1442.             and c.colid = key7
  1443.     if (@@rowcount = 0)
  1444.         goto done
  1445.     insert into #pkeys
  1446.         select
  1447.             db_name(),
  1448.             (select user_name(uid) from sysobjects o where o.id = k.id),
  1449.             object_name(k.id),
  1450.             c.name,
  1451.             8,
  1452.             null
  1453.         from
  1454.             syskeys k,syscolumns c
  1455.         where
  1456.             c.id = k.id
  1457.             and k.type = 1
  1458.             and c.colid = key8
  1459.     done:
  1460.     select 
  1461.             table_qualifier,
  1462.             table_owner,
  1463.             table_name,
  1464.             column_name,
  1465.             key_seq
  1466.             from #pkeys
  1467.     where table_name like  @table_name
  1468.     and table_owner like @table_owner
  1469.     order by table_qualifier, table_owner, table_name,key_seq
  1470. go
  1471.  
  1472. grant execute on sp_pkeys to public
  1473. go
  1474.  
  1475. dump tran master with truncate_only
  1476. go
  1477.  
  1478. print "creating sp_stored_procedures"
  1479. go
  1480.  
  1481. create procedure sp_stored_procedures( @sp_name      varchar(32) = null,
  1482.                                        @sp_owner     varchar(32) = null,
  1483.                                        @sp_qualifier varchar(32) = null)
  1484. as
  1485.     if @sp_qualifier is not null
  1486.     begin
  1487.         if db_name() != @sp_qualifier
  1488.         begin
  1489.             print "stored procedure qualifier must be name of current database"
  1490.             return
  1491.         end
  1492.     end
  1493.     
  1494.     if @sp_name is null
  1495.     begin
  1496.         select @sp_name = '%'
  1497.     end 
  1498.     else begin
  1499.         if (@sp_owner is null) and (charindex('%', @sp_name) = 0)
  1500.         begin
  1501.             if exists (select * from sysobjects 
  1502.                         where uid = user_id()
  1503.                         and name = @sp_name
  1504.                         and type = 'P')
  1505.             begin
  1506.                 select @sp_owner = user_name()
  1507.             end
  1508.         end
  1509.     end
  1510.     if @sp_owner is null
  1511.         select @sp_owner = '%'
  1512.  
  1513.     select distinct
  1514.             procedure_qualifier = db_name(),
  1515.             procedure_owner = user_name(o.uid),
  1516.             procedure_name = o.name +';'+ str(p.number),
  1517.             num_input_params = -1,
  1518.             num_output_params = -1,
  1519.             num_result_sets = -1,
  1520.             remarks = null
  1521.         from
  1522.             sysobjects o,sysprocedures p,sysusers u
  1523.         where
  1524.             o.name like @sp_name
  1525.             and user_name(o.uid) like @sp_owner
  1526.             and o.type = 'P'
  1527.             and p.id = o.id
  1528.             and u.uid=user_id()   /* constrain sysusers uid for use in subquery */
  1529.             and (suser_id()=1      /* User is the System Administrator */
  1530.                     or o.uid=user_id()     /* User created the object */
  1531.                     /* here's the magic... select the highest precedence of permissions in the order (user,group,public)  */
  1532.                     or ((select max(((sign(uid)*abs(uid-16383))*2)+(protecttype&1))
  1533.                          from sysprotects p
  1534.                          /* outer join to correlate with all rows in sysobjects */
  1535.                          where p.id =* o.id
  1536.                              /*  get rows for public,current user,user's group */
  1537.                              and (p.uid=0 or p.uid=user_id() or p.uid=*u.gid)
  1538.                              /* check for SELECT,EXECUTE privilege */
  1539.                              and (action in (193,224)))&1    /* more magic...normalize GRANT */
  1540.                         )=1    /* final magic...compare Grants    */
  1541.                 )
  1542.     order by procedure_qualifier, procedure_owner, procedure_name
  1543. go
  1544. grant execute on sp_stored_procedures to public
  1545. go
  1546.  
  1547. dump tran master with truncate_only
  1548. go
  1549.  
  1550.  
  1551. print "creating sp_sproc_columns"
  1552. go
  1553.  
  1554. go
  1555.  
  1556. /* this is the version for servers  without support for UNION */
  1557. CREATE PROCEDURE sp_sproc_columns (@procedure_name varchar(32),
  1558.                              @procedure_owner varchar(32) = null,
  1559.                              @procedure_qualifier varchar(32) = null,
  1560.                              @column_name varchar(32) = null )
  1561. AS
  1562.     if @column_name is null
  1563.         select @column_name = '%'
  1564.     DECLARE @full_procedure_name    char(70)
  1565.     DECLARE @procedure_id int
  1566.     if @procedure_qualifier is not null
  1567.     begin
  1568.         if db_name() != @procedure_qualifier
  1569.         begin
  1570.             print "Table qualifier must be name of current database"
  1571.             return
  1572.         end
  1573.     end
  1574.         if @procedure_name is null
  1575.         begin
  1576.             select @procedure_name='%'
  1577.         end
  1578.     if @procedure_owner is null
  1579.     begin
  1580.         SELECT @full_procedure_name = @procedure_name
  1581.     end
  1582.     else
  1583.     begin
  1584.         SELECT @full_procedure_name = @procedure_owner + '.' + @procedure_name
  1585.     end
  1586.     SELECT @procedure_id = 0
  1587.     SELECT @procedure_id = object_id(@full_procedure_name)
  1588.     if ((charindex('%',@full_procedure_name) = 0) and
  1589.        (charindex('_',@full_procedure_name) = 0)  and
  1590.     @procedure_id != 0)  
  1591.     begin
  1592.     /* this block is for the case where there is no pattern
  1593.              matching required for the table name */
  1594.     SELECT
  1595.             procedure_qualifier = DB_NAME(),
  1596.             procedure_owner = USER_NAME(o.uid),
  1597.             procedure_name = o.name,
  1598.             column_name = c.name,
  1599.             column_type = convert(smallint, 0),
  1600.             data_type=d.data_type+convert(smallint,
  1601.                         isnull(d.aux, 
  1602.                         ascii(substring("666AAA@@@CB??GG",
  1603.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1604.                         -60)),
  1605.             type_name=rtrim(substring(d.type_name, 
  1606.                     1+isnull(d.aux, 
  1607.                     ascii(substring("III<<<MMMI<<A<A",
  1608.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1609.                     1))-60), 13)),
  1610.             precision=isnull(d.data_precision, convert(int,c.length))
  1611.                 +isnull(d.aux, convert(int,
  1612.                 ascii(substring("???AAAFFFCKFOLS",
  1613.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1614.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1615.                     isnull(d.aux,
  1616.                     ascii(substring("AAA<BB<DDDHJSPP",
  1617.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1618.                     1))-64)),
  1619.             scale = d.numeric_scale +convert(smallint,
  1620.                     isnull(d.aux,
  1621.                     ascii(substring("<<<<<<<<<<<<<<?",
  1622.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1623.                     1))-60)),
  1624.             radix=d.numeric_radix,
  1625.             nullable=convert(smallint, convert(bit, c.status&8)),
  1626.             remarks = c.name,
  1627.             ss_data_type = c.type
  1628.         FROM
  1629.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1630.         WHERE
  1631.             o.id=@procedure_id
  1632.             AND c.id = o.id
  1633.             AND c.type = d.ss_dtype
  1634.             AND c.usertype *= t.usertype
  1635.             AND c.name like @column_name
  1636.         
  1637.     end else
  1638.     begin
  1639.         if @procedure_owner is null
  1640.             select @procedure_owner = '%'
  1641.                 /* this block is for the case where there IS pattern
  1642.              matching done on the table name */
  1643.         SELECT
  1644.             procedure_qualifier = DB_NAME(),
  1645.             procedure_owner = USER_NAME(o.uid),
  1646.             procedure_name = o.name,
  1647.             column_name = c.name,
  1648.             column_type = convert(smallint, 0),
  1649.             data_type=d.data_type+convert(smallint,
  1650.                         isnull(d.aux, 
  1651.                         ascii(substring("666AAA@@@CB??GG",
  1652.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1653.                         -60)),
  1654.         type_name=rtrim(substring(d.type_name, 
  1655.                     1+isnull(d.aux, 
  1656.                     ascii(substring("III<<<MMMI<<A<A",
  1657.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1658.                     1))-60), 13)),
  1659.             precision=isnull(d.data_precision, convert(int,c.length))
  1660.                 +isnull(d.aux, convert(int,
  1661.                 ascii(substring("???AAAFFFCKFOLS",
  1662.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1663.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1664.                     isnull(d.aux,
  1665.                     ascii(substring("AAA<BB<DDDHJSPP",
  1666.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1667.                     1))-64)),
  1668.             scale = d.numeric_scale +convert(smallint,
  1669.                     isnull(d.aux,
  1670.                     ascii(substring("<<<<<<<<<<<<<<?",
  1671.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1672.                     1))-60)),
  1673.             radix=d.numeric_radix,
  1674.             nullable=convert(smallint, convert(bit, c.status&8)),
  1675.             remarks = null,
  1676.             ss_data_type = c.type,
  1677.             c.colid
  1678.         FROM
  1679.             syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1680.  
  1681.         WHERE
  1682.             o.name like @procedure_name
  1683.             AND user_name(o.uid) like @procedure_owner
  1684.             AND c.id = o.id
  1685.         AND c.usertype *= t.usertype
  1686.             AND c.type = d.ss_dtype
  1687.             AND c.name like @column_name
  1688.         AND o.type = 'P'
  1689.         ORDER BY procedure_qualifier, procedure_owner, procedure_name, colid
  1690.     end
  1691. go
  1692.  
  1693.  
  1694. /* if this is a 4.2 or later SQL Server, then we want to delete the stored
  1695. procedure we just created, and create a new one which uses UNION
  1696. (this fixes some bugs involving UDT names and char NULL datatype
  1697. names)
  1698. */
  1699.  
  1700. if  (charindex('1.1', @@version) = 0 
  1701.     and charindex('4.0', @@version) = 0)
  1702. begin
  1703.     drop proc sp_sproc_columns
  1704.     dump tran master with truncate_only
  1705. end
  1706. else
  1707. begin
  1708.     print ""
  1709.     print ""
  1710.     print "Installing catalog procedures on a 1.x or 4.0 server:"
  1711.     print "Ignore the following error messages"
  1712.     print ""
  1713.     print ""
  1714. end
  1715. go
  1716.  
  1717.  
  1718.  
  1719. /* this is the version for servers which support UNION */
  1720. CREATE PROCEDURE sp_sproc_columns (@procedure_name varchar(32),
  1721.                              @procedure_owner varchar(32) = null,
  1722.                              @procedure_qualifier varchar(32) = null,
  1723.                              @column_name varchar(32) = null )
  1724. AS
  1725.     if @column_name is null
  1726.         select @column_name = '%'
  1727.     DECLARE @full_procedure_name    char(70)
  1728.     DECLARE @procedure_id int
  1729.     if @procedure_qualifier is not null
  1730.     begin
  1731.         if db_name() != @procedure_qualifier
  1732.         begin
  1733.             print "Table qualifier must be name of current database"
  1734.             return
  1735.         end
  1736.     end
  1737.         if @procedure_name is null
  1738.         begin
  1739.             select @procedure_name='%'
  1740.         end
  1741.     if @procedure_owner is null
  1742.     begin
  1743.         SELECT @full_procedure_name = @procedure_name
  1744.     end
  1745.     else
  1746.     begin
  1747.         SELECT @full_procedure_name = @procedure_owner + '.' + @procedure_name
  1748.     end
  1749.     SELECT @procedure_id = 0
  1750.     SELECT @procedure_id = object_id(@full_procedure_name)
  1751.     if ((charindex('%',@full_procedure_name) = 0) and
  1752.        (charindex('_',@full_procedure_name) = 0)  and
  1753.     @procedure_id != 0)  
  1754.     begin
  1755.     /* this block is for the case where there is no pattern
  1756.              matching required for the table name */
  1757.     SELECT
  1758.             procedure_qualifier = DB_NAME(),
  1759.             procedure_owner = USER_NAME(o.uid),
  1760.             procedure_name = o.name,
  1761.             column_name = c.name,
  1762.             column_type = convert(smallint, 0),
  1763.             data_type=d.data_type+convert(smallint,
  1764.                         isnull(d.aux, 
  1765.                         ascii(substring("666AAA@@@CB??GG",
  1766.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1767.                         -60)),
  1768.             type_name=rtrim(substring(d.type_name, 
  1769.                     1+isnull(d.aux, 
  1770.                     ascii(substring("III<<<MMMI<<A<A",
  1771.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1772.                     1))-60), 13)),
  1773.             precision=isnull(d.data_precision, convert(int,c.length))
  1774.                 +isnull(d.aux, convert(int,
  1775.                 ascii(substring("???AAAFFFCKFOLS",
  1776.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1777.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1778.                     isnull(d.aux,
  1779.                     ascii(substring("AAA<BB<DDDHJSPP",
  1780.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1781.                     1))-64)),
  1782.             scale = d.numeric_scale +convert(smallint,
  1783.                     isnull(d.aux,
  1784.                     ascii(substring("<<<<<<<<<<<<<<?",
  1785.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1786.                     1))-60)),
  1787.             radix=d.numeric_radix,
  1788.             nullable=convert(smallint, convert(bit, c.status&8)),
  1789.             remarks = c.name,
  1790.             ss_data_type = c.type,
  1791.             colid = c.colid
  1792.         FROM
  1793.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1794.         WHERE
  1795.             o.id=@procedure_id
  1796.             AND c.id = o.id
  1797.             AND c.type = d.ss_dtype
  1798.             AND c.name like @column_name
  1799.             AND d.ss_dtype IN (111, 109, 38, 110)
  1800.     UNION
  1801.  SELECT
  1802.             procedure_qualifier = DB_NAME(),
  1803.             procedure_owner = USER_NAME(o.uid),
  1804.             procedure_name = o.name,
  1805.             column_name = c.name,
  1806.             column_type = convert(smallint, 0),
  1807.             data_type=d.data_type+convert(smallint,
  1808.                         isnull(d.aux, 
  1809.                         ascii(substring("666AAA@@@CB??GG",
  1810.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1811.                         -60)),
  1812.             type_name=t.name,
  1813.             precision=isnull(d.data_precision, convert(int,c.length))
  1814.                 +isnull(d.aux, convert(int,
  1815.                 ascii(substring("???AAAFFFCKFOLS",
  1816.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1817.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1818.                     isnull(d.aux,
  1819.                     ascii(substring("AAA<BB<DDDHJSPP",
  1820.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1821.                     1))-64)),
  1822.             scale = d.numeric_scale +convert(smallint,
  1823.                     isnull(d.aux,
  1824.                     ascii(substring("<<<<<<<<<<<<<<?",
  1825.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1826.                     1))-60)),
  1827.             radix=d.numeric_radix,
  1828.             nullable=convert(smallint, convert(bit, c.status&8)),
  1829.             remarks = c.name,
  1830.             ss_data_type = c.type,
  1831.              colid = c.colid
  1832.         FROM
  1833.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1834.         WHERE
  1835.             o.id=@procedure_id
  1836.             AND c.id = o.id
  1837.             AND c.type = d.ss_dtype
  1838.            AND c.usertype *= t.usertype
  1839.            AND c.name like @column_name
  1840.           AND d.ss_dtype NOT IN (111, 109, 38, 110)  
  1841.           ORDER BY colid      
  1842.     end else
  1843.     begin
  1844.         if @procedure_owner is null
  1845.             select @procedure_owner = '%'
  1846.                 /* this block is for the case where there IS pattern
  1847.              matching done on the table name */
  1848.     SELECT
  1849.             procedure_qualifier = DB_NAME(),
  1850.             procedure_owner = USER_NAME(o.uid),
  1851.             procedure_name = o.name,
  1852.             column_name = c.name,
  1853.             column_type = convert(smallint, 0),
  1854.             data_type=d.data_type+convert(smallint,
  1855.                         isnull(d.aux, 
  1856.                         ascii(substring("666AAA@@@CB??GG",
  1857.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1858.                         -60)),
  1859.             type_name=rtrim(substring(d.type_name, 
  1860.                     1+isnull(d.aux, 
  1861.                     ascii(substring("III<<<MMMI<<A<A",
  1862.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1863.                     1))-60), 13)),
  1864.             precision=isnull(d.data_precision, convert(int,c.length))
  1865.                 +isnull(d.aux, convert(int,
  1866.                 ascii(substring("???AAAFFFCKFOLS",
  1867.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1868.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1869.                     isnull(d.aux,
  1870.                     ascii(substring("AAA<BB<DDDHJSPP",
  1871.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1872.                     1))-64)),
  1873.             scale = d.numeric_scale +convert(smallint,
  1874.                     isnull(d.aux,
  1875.                     ascii(substring("<<<<<<<<<<<<<<?",
  1876.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1877.                     1))-60)),
  1878.             radix=d.numeric_radix,
  1879.             nullable=convert(smallint, convert(bit, c.status&8)),
  1880.             remarks = c.name,
  1881.             ss_data_type = c.type,
  1882.             colid = c.colid
  1883.         FROM
  1884.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1885.         WHERE
  1886.             o.name like @procedure_name
  1887.             AND user_name(o.uid) like @procedure_owner
  1888.             AND o.id = c.id
  1889.             AND c.type = d.ss_dtype
  1890.             AND c.name like @column_name
  1891.             AND o.type = 'P'
  1892.             AND d.ss_dtype IN (111, 109, 38, 110)
  1893.     UNION
  1894.  SELECT
  1895.             procedure_qualifier = DB_NAME(),
  1896.             procedure_owner = USER_NAME(o.uid),
  1897.             procedure_name = o.name,
  1898.             column_name = c.name,
  1899.             column_type = convert(smallint, 0),
  1900.             data_type=d.data_type+convert(smallint,
  1901.                         isnull(d.aux, 
  1902.                         ascii(substring("666AAA@@@CB??GG",
  1903.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  1904.                         -60)),
  1905.             type_name=t.name,
  1906.             precision=isnull(d.data_precision, convert(int,c.length))
  1907.                 +isnull(d.aux, convert(int,
  1908.                 ascii(substring("???AAAFFFCKFOLS",
  1909.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  1910.             length=isnull(d.length, convert(int,c.length)) +convert(int,
  1911.                     isnull(d.aux,
  1912.                     ascii(substring("AAA<BB<DDDHJSPP",
  1913.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1914.                     1))-64)),
  1915.             scale = d.numeric_scale +convert(smallint,
  1916.                     isnull(d.aux,
  1917.                     ascii(substring("<<<<<<<<<<<<<<?",
  1918.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  1919.                     1))-60)),
  1920.             radix=d.numeric_radix,
  1921.             nullable=convert(smallint, convert(bit, c.status&8)),
  1922.             remarks = c.name,
  1923.             ss_data_type = c.type,
  1924.             colid = c.colid
  1925.         FROM
  1926.         syscolumns c,sysobjects o,master.dbo.MSdatatype_info d, systypes t
  1927.         WHERE
  1928.           o.name like @procedure_name
  1929.             AND user_name(o.uid) like @procedure_owner
  1930.             AND o.id = c.id
  1931.             AND c.type = d.ss_dtype
  1932.            AND c.usertype *= t.usertype
  1933.         AND o.type = 'P'
  1934.            AND c.name like @column_name
  1935.           AND d.ss_dtype NOT IN (111, 109, 38, 110)        
  1936.           ORDER BY procedure_owner, procedure_name, colid
  1937.         end
  1938.  
  1939.     
  1940. go
  1941.  
  1942.  
  1943. grant execute on sp_sproc_columns to public
  1944. go
  1945.  
  1946.                 
  1947. print "creating sp_table_privileges"
  1948. go
  1949.  
  1950.  
  1951. CREATE PROCEDURE sp_table_privileges ( 
  1952.                         @table_name  varchar(32),
  1953.                         @table_owner varchar(32) = null,
  1954.                         @table_qualifier varchar(32)= null)
  1955. as        
  1956.  
  1957.     declare @table_id    int,
  1958.             @owner_id    int,
  1959.             @full_table_name char(70)
  1960.     
  1961.         
  1962.     if @table_qualifier is not null
  1963.     begin
  1964.         if db_name() != @table_qualifier
  1965.         begin
  1966.             print "Table qualifier must be name of current database"
  1967.             return
  1968.         end
  1969.     end
  1970.     if @table_owner is null
  1971.     begin
  1972.         SELECT @full_table_name = @table_name
  1973.     end
  1974.     else
  1975.     begin
  1976.         SELECT @full_table_name = @table_owner + '.' + @table_name
  1977.     end
  1978.     SELECT @table_id = object_id(@full_table_name)
  1979.     if @table_id = 0
  1980.     begin
  1981.         print "table not found"
  1982.         return
  1983.     end
  1984.  
  1985.     if @@trancount != 0
  1986.     begin
  1987.         raiserror 20001 "catalog procedure sp_table_privileges can not be run in a transaction"
  1988.         return
  1989.     end
  1990.     create table #table_privileges 
  1991.             (table_qualifier         varchar(32),
  1992.             table_owner         varchar(32),    
  1993.             table_name     varchar(32),
  1994.             grantor            varchar(32),
  1995.             grantee            varchar(32),
  1996.             select_privilege    int,
  1997.              insert_privilege    int,
  1998.              update_privilege    int,
  1999.              delete_privilege    int,
  2000.     is_grantable     varchar(3),
  2001.              uid                 int,
  2002.             gid                 int)
  2003.  
  2004.     insert into #table_privileges
  2005.     select distinct db_name(),
  2006.         user_name(o.uid),
  2007.         o.name,
  2008.         user_name(o.uid),
  2009.         u.name,
  2010.         0,
  2011.         0,
  2012.         0,
  2013.         0,
  2014.         'no',
  2015.         u.uid,
  2016.         u.gid
  2017.     from sysusers u, sysobjects o
  2018.     where o.id = @table_id
  2019.     and u.uid != u.gid
  2020.     
  2021.     /* 
  2022.     ** now add row for table owner
  2023.     */    
  2024.     if exists (
  2025.         select * 
  2026.             from #table_privileges
  2027.             where grantor = grantee)
  2028.     begin
  2029.         update #table_privileges
  2030.             set select_privilege = 1,
  2031.                update_privilege = 1,
  2032.                 insert_privilege = 1,
  2033.                  delete_privilege = 1,
  2034.        is_grantable = 'yes'
  2035.               where grantor = grantee
  2036.     end
  2037.     else 
  2038.     begin
  2039.         insert into #table_privileges
  2040.         select  db_name(),
  2041.             user_name(o.uid),
  2042.             o.name,
  2043.             user_name(o.uid),
  2044.             user_name(o.uid),
  2045.             1,
  2046.             1,
  2047.             1,
  2048.             1,
  2049.             'yes',
  2050.             o.uid,
  2051.             u.gid
  2052.         from sysobjects o, sysusers u
  2053.         where o.id = @table_id
  2054.         and u.uid = o.uid
  2055.     end     
  2056.              
  2057.     update #table_privileges 
  2058.         set select_privilege = 1 
  2059.         where exists (select * from sysprotects
  2060.             where id = @table_id
  2061.             and (#table_privileges.uid = uid
  2062.                 or #table_privileges.gid = uid
  2063.                 or uid = 0)
  2064.             and protecttype = 205
  2065.             and action = 193)
  2066.         and not exists (select * from sysprotects
  2067.             where id = @table_id
  2068.             and (#table_privileges.uid = uid
  2069.                 or #table_privileges.gid = uid
  2070.                 or uid = 0)
  2071.             and protecttype = 206
  2072.             and action = 193)
  2073.  
  2074.  
  2075.     update #table_privileges 
  2076.         set insert_privilege = 1 
  2077.         where exists (select * from sysprotects 
  2078.             where id = @table_id
  2079.             and (#table_privileges.uid = uid
  2080.                 or #table_privileges.gid = uid
  2081.                 or uid = 0)
  2082.             and protecttype = 205
  2083.             and action = 195)
  2084.         and not exists (select * from sysprotects
  2085.             where id = @table_id
  2086.             and (#table_privileges.uid = uid
  2087.                 or #table_privileges.gid = uid
  2088.                 or uid = 0)
  2089.             and protecttype = 206
  2090.             and action = 195)
  2091.  
  2092.     update #table_privileges 
  2093.         set delete_privilege = 1 
  2094.         where exists (select * from sysprotects 
  2095.             where id = @table_id
  2096.             and (#table_privileges.uid = uid
  2097.                 or #table_privileges.gid = uid
  2098.                 or uid = 0)
  2099.             and protecttype = 205
  2100.             and action = 196)
  2101.         and not exists (select * from sysprotects
  2102.             where id = @table_id
  2103.             and (#table_privileges.uid = uid
  2104.                 or #table_privileges.gid = uid
  2105.                 or uid = 0)
  2106.             and protecttype = 206
  2107.             and action = 196)
  2108.  
  2109.   
  2110.  
  2111.  
  2112.     update #table_privileges 
  2113.         set update_privilege = 1 
  2114.         where exists (select * from sysprotects 
  2115.             where id = @table_id
  2116.             and (#table_privileges.uid = uid
  2117.                 or #table_privileges.gid = uid
  2118.                 or uid = 0)
  2119.             and protecttype = 205
  2120.             and action = 197)
  2121.         and not exists (select * from sysprotects
  2122.             where id = @table_id
  2123.             and (#table_privileges.uid = uid
  2124.                 or #table_privileges.gid = uid
  2125.                 or uid = 0)
  2126.             and protecttype = 206
  2127.             and action = 197)
  2128.  
  2129.     create table #table_priv2
  2130.     (table_qualifier         varchar(32),
  2131.             table_owner         varchar(32),    
  2132.             table_name     varchar(32),
  2133.             grantor            varchar(32),
  2134.             grantee            varchar(32),
  2135.             privilege             varchar(32),
  2136.     is_grantable     varchar(3))
  2137.  
  2138.      insert into #table_priv2
  2139.      select 
  2140.      table_qualifier,
  2141.             table_owner,
  2142.             table_name,
  2143.             grantor,
  2144.             grantee,
  2145.             'SELECT',
  2146.     is_grantable
  2147.     from #table_privileges
  2148.     where select_privilege = 1
  2149.  
  2150.  
  2151.      insert into #table_priv2
  2152.      select 
  2153.      table_qualifier,
  2154.             table_owner,
  2155.             table_name,
  2156.             grantor,
  2157.             grantee,
  2158.             'INSERT',
  2159.     is_grantable
  2160.     from #table_privileges
  2161.     where insert_privilege = 1
  2162.  
  2163.  
  2164.      insert into #table_priv2
  2165.      select 
  2166.      table_qualifier,
  2167.             table_owner,
  2168.             table_name,
  2169.             grantor,
  2170.             grantee,
  2171.             'DELETE',
  2172.     is_grantable
  2173.     from #table_privileges
  2174.     where delete_privilege = 1
  2175.  
  2176.  
  2177.      insert into #table_priv2
  2178.      select 
  2179.      table_qualifier,
  2180.             table_owner,
  2181.             table_name,
  2182.             grantor,
  2183.             grantee,
  2184.             'UPDATE',
  2185.     is_grantable
  2186.     from #table_privileges
  2187.     where update_privilege = 1
  2188.  
  2189.  
  2190.     select * from #table_priv2
  2191.     order by privilege
  2192. go
  2193. grant execute on sp_table_privileges to public
  2194. go
  2195. dump tran master with truncate_only
  2196. go
  2197.                
  2198. print "creating sp_column_privileges"
  2199. go
  2200.  
  2201.  
  2202. CREATE PROCEDURE sp_column_privileges ( 
  2203.                         @table_name  varchar(32),
  2204.                         @table_owner varchar(32) = null,
  2205.                         @table_qualifier varchar(32)= null,
  2206.                         @column_name varchar(32) = null)
  2207. as        
  2208.  
  2209.     declare @table_id    int,
  2210.         @owner_id    int
  2211.     DECLARE @full_table_name    char(70)
  2212.  
  2213.     declare @low int            /* range of userids to check */
  2214.     declare @high int
  2215.     declare @objid int            /* id of @name if object */
  2216.     declare @owner_name varchar(32)
  2217.  
  2218.     select @low = 0, @high = 32767
  2219.  
  2220.     if @column_name is null
  2221.         select @column_name = '%'
  2222.  
  2223.     if @table_qualifier is not null
  2224.     begin
  2225.         if db_name() != @table_qualifier
  2226.         begin
  2227.             print "Table qualifier must be name of current database"
  2228.             return
  2229.         end
  2230.     end
  2231.     if @table_owner is null
  2232.     begin
  2233.         SELECT @full_table_name = @table_name
  2234.     end
  2235.     else
  2236.     begin
  2237.         SELECT @full_table_name = @table_owner + '.' + @table_name
  2238.     end
  2239.     select @table_id = 0    
  2240.     select @table_id = object_id(@full_table_name) 
  2241.     if @table_id = 0
  2242.     begin
  2243.         print "table not found"
  2244.         return
  2245.     end
  2246.  
  2247.     if @@trancount != 0
  2248.     begin
  2249.         raiserror 20001 "catalog procedure sp_column_privileges can not be run in a transaction"
  2250.         return
  2251.     end
  2252.  
  2253.     /*
  2254.     ** We need to create a table which will contain a row for every row to
  2255.     ** be returned to the client.  
  2256.     */
  2257.  
  2258.     create table #column_privileges 
  2259.             (table_qualifier     varchar(32),
  2260.             table_owner         varchar(32),    
  2261.             table_name         varchar(32),
  2262.             column_name         varchar(32),
  2263.             grantor            varchar(32),
  2264.             grantee            varchar(32),
  2265.             select_privilege    int,
  2266.             select_grantable    int,
  2267.             insert_privilege    int,
  2268.             insert_grantable    int,
  2269.             update_privilege    int,
  2270.             update_grantable    int,
  2271.             delete_privilege    int,
  2272.             delete_grantable    int,
  2273.             references_privilege    int null,
  2274.             references_grantable    int null,
  2275.             uid                 int,
  2276.             gid                 int,
  2277.             is_grantable    varchar(3))
  2278.  
  2279. /* 
  2280. ** insert a row for the table owner (who has all permissions)
  2281. */
  2282.     select @owner_name = (select user_name(uid) 
  2283.                             from sysobjects 
  2284.                                 where id = @table_id)
  2285.  
  2286.  
  2287.     insert into #column_privileges
  2288.     select
  2289.             db_name(),
  2290.             @owner_name,
  2291.             @table_name,
  2292.             name,
  2293.             @owner_name,
  2294.             @owner_name,
  2295.             1,
  2296.             1,
  2297.             1,
  2298.             1,
  2299.             1,
  2300.             1,
  2301.             1,
  2302.             1,
  2303.             null,
  2304.             null,
  2305.             user_id(@owner_name),
  2306.             0,
  2307.     'yes'
  2308.         from syscolumns 
  2309.         where id = @table_id
  2310.  
  2311. /* 
  2312. ** now stick a row in the table for every user in the database        
  2313. ** we will need to weed out those who have no permissions later
  2314. ** (and yes this is a cartesion product: the uid field in sysprotects
  2315. ** can also have a group id, in which case we need to extend those 
  2316. ** privileges to all group members).
  2317. */
  2318.     
  2319.     insert into #column_privileges
  2320.     select distinct 
  2321.         db_name(),
  2322.         user_name(o.uid),
  2323.         @table_name,
  2324.         c.name,
  2325.         user_name(o.uid),
  2326.         u.name,
  2327.         0,
  2328.         0,
  2329.         0,
  2330.         0,
  2331.         0,
  2332.         0,
  2333.         0,
  2334.         0,
  2335.         null,
  2336.         null,
  2337.         u.uid,
  2338.         u.gid,
  2339.         'no'
  2340.     from sysusers u, syscolumns c, sysobjects o
  2341.     where o.id = @table_id
  2342.         and c.id = o.id
  2343.         and u.gid != u.uid
  2344.         and u.name != @owner_name
  2345.  
  2346.     /*
  2347.     ** we need to create another temporary table to contain all the various
  2348.     ** protection information for the table in question
  2349.     */
  2350.     create table #protects (uid smallint,
  2351.                             action tinyint,
  2352.                             protecttype tinyint,
  2353.                             name    varchar(32))
  2354.     insert into #protects
  2355.     select  p.uid,
  2356.             p.action,
  2357.             p.protecttype,
  2358.             isnull(col_name(id, c.number), "All")
  2359.         from sysprotects p, master.dbo.spt_values c,
  2360.                 master.dbo.spt_values a, master.dbo.spt_values b
  2361.             where convert(tinyint, substring(isnull(p.columns, 0x1), c.low, 1))
  2362.                 & c.high != 0
  2363.                 and c.number <=
  2364.                     (select count(*)
  2365.                         from syscolumns
  2366.                         where id = @table_id)
  2367.                 and a.type = "T"
  2368.                 and a.number = p.action
  2369.                 and b.type = "T"
  2370.                 and b.number = p.protecttype
  2371.                 and p.id = @table_id
  2372.                 and p.uid between @low and @high
  2373.  
  2374.  
  2375.     update #column_privileges 
  2376.         set select_privilege = 1 
  2377.         where exists 
  2378.             (select * from #protects
  2379.             where protecttype = 205
  2380.             and action = 193
  2381.             and ( name = #column_privileges.column_name
  2382.                   or name = 'All')
  2383.             and ( uid = 0 
  2384.                   or uid = #column_privileges.gid
  2385.                   or uid = #column_privileges.uid))
  2386.         and not exists (select * from #protects
  2387.             where protecttype = 206
  2388.             and action = 193
  2389.             and ( name = #column_privileges.column_name
  2390.                   or name = 'All')
  2391.             and ( uid = 0 
  2392.                   or uid = #column_privileges.gid
  2393.                   or uid = #column_privileges.uid))
  2394.  
  2395.   
  2396.           
  2397.     update #column_privileges 
  2398.         set insert_privilege = 1 
  2399.         where exists (select * from #protects 
  2400.             where protecttype = 205
  2401.             and action = 195
  2402.             and ( name = #column_privileges.column_name
  2403.                   or name = 'All')
  2404.             and  ( uid = 0 
  2405.                   or uid = #column_privileges.gid
  2406.                   or uid = #column_privileges.uid))
  2407.         and not exists (select * from #protects
  2408.             where protecttype = 206
  2409.             and action = 195
  2410.             and ( name = #column_privileges.column_name
  2411.                   or name = 'All')
  2412.             and ( uid = 0 
  2413.                   or uid = #column_privileges.gid
  2414.                   or uid = #column_privileges.uid))
  2415.  
  2416.  
  2417.             
  2418.     update #column_privileges 
  2419.         set insert_privilege = 1 
  2420.         where exists (select * from #protects 
  2421.             where protecttype = 205
  2422.             and action = 196
  2423.             and ( name = #column_privileges.column_name
  2424.                   or name = 'All')
  2425.             and ( uid = 0 
  2426.                   or uid = #column_privileges.gid
  2427.                   or uid = #column_privileges.uid))
  2428.         and not exists (select * from #protects
  2429.             where protecttype = 206
  2430.             and action = 196
  2431.             and ( name = #column_privileges.column_name
  2432.                   or name = 'All')
  2433.             and ( uid = 0 
  2434.                   or uid = #column_privileges.gid
  2435.                   or uid = #column_privileges.uid))
  2436.  
  2437.  
  2438.     update #column_privileges
  2439.         set update_privilege = 1 
  2440.         where exists (select * from #protects 
  2441.             where protecttype = 205
  2442.             and action = 197
  2443.             and ( name = #column_privileges.column_name
  2444.                   or name = 'All')
  2445.             and ( uid = 0 
  2446.                   or uid = #column_privileges.gid
  2447.                   or uid = #column_privileges.uid))
  2448.         and not exists (select * from #protects
  2449.             where protecttype = 206
  2450.             and action = 197
  2451.             and ( name = #column_privileges.column_name
  2452.                   or name = 'All')
  2453.             and ( uid = 0 
  2454.                   or uid = #column_privileges.gid
  2455.                   or uid = #column_privileges.uid))
  2456.  
  2457. create table #column_priv2
  2458.     (table_qualifier         varchar(32),
  2459.             table_owner         varchar(32),    
  2460.             table_name     varchar(32),
  2461.     column_name varchar(32),
  2462.             grantor            varchar(32),
  2463.             grantee            varchar(32),
  2464.             privilege             varchar(32),
  2465.     is_grantable     varchar(3))
  2466.  
  2467.   insert into #column_priv2
  2468.      select 
  2469.      table_qualifier,
  2470.             table_owner,
  2471.             table_name,
  2472.             column_name,
  2473.             grantor,
  2474.             grantee,
  2475.             'SELECT',
  2476.     is_grantable
  2477.     from #column_privileges
  2478.     where select_privilege = 1
  2479.  
  2480.  
  2481.      insert into #column_priv2
  2482.      select 
  2483.      table_qualifier,
  2484.             table_owner,
  2485.             table_name,
  2486.             column_name,
  2487.             grantor,
  2488.             grantee,
  2489.             'INSERT',
  2490.     is_grantable
  2491.     from #column_privileges
  2492.     where insert_privilege = 1
  2493.  
  2494.  
  2495.      insert into #column_priv2
  2496.      select 
  2497.      table_qualifier,
  2498.             table_owner,
  2499.             table_name,
  2500.             column_name,
  2501.             grantor,
  2502.             grantee,
  2503.             'DELETE',
  2504.     is_grantable
  2505.     from #column_privileges
  2506.     where delete_privilege = 1
  2507.  
  2508.  
  2509.      insert into #column_priv2
  2510.      select 
  2511.      table_qualifier,
  2512.             table_owner,
  2513.             table_name,
  2514.             column_name,
  2515.             grantor,
  2516.             grantee,
  2517.             'UPDATE',
  2518.     is_grantable
  2519.     from #column_privileges
  2520.     where update_privilege = 1
  2521.  
  2522.  
  2523.     select * from #column_priv2
  2524.      order by column_name, privilege        
  2525. go
  2526.  
  2527. go
  2528. grant execute on sp_column_privileges to public
  2529. go
  2530. dump tran master with truncate_only
  2531. go
  2532.  
  2533.  
  2534. print "creating sp_server_info"
  2535. if (exists (select * from sysobjects where name = 'sp_server_info'))
  2536. begin
  2537.     drop proc sp_server_info
  2538. end
  2539. go
  2540.  
  2541. create proc sp_server_info (@attribute_id  int = null)
  2542. as
  2543.     if @attribute_id is not null
  2544.         select *
  2545.         from master.dbo.MSserver_info
  2546.         where attribute_id = @attribute_id
  2547.     else
  2548.         select *
  2549.         from master.dbo.MSserver_info
  2550.  
  2551. go
  2552.  
  2553. grant execute on sp_server_info to public
  2554. go
  2555.  
  2556. print "creating sp_datatype_info"
  2557. if (exists (select * from sysobjects where name = 'sp_datatype_info'))
  2558. begin
  2559.     drop proc sp_datatype_info
  2560. end
  2561. go
  2562.  
  2563. /* the messiness of 'data_type' was to get around the problem of
  2564. returning the correct lengths for user defined types.  the join
  2565. on the type name ensures all user defined types are returned, but
  2566. this puts a null in the data_type column.  by forcing an embedded
  2567. select and correlating it with the current row in systypes, we get
  2568. the correct data_type mapping even for user defined types  (kwg) */
  2569.  
  2570. create proc sp_datatype_info (@data_type int = 0)
  2571. as
  2572.     if @data_type = 0
  2573.         select
  2574.             type_name = t.name,
  2575.             d.data_type,
  2576.             precision=isnull(d.data_precision, convert(int,t.length)),
  2577.             d.literal_prefix,
  2578.             d.literal_suffix,
  2579.             e.create_params,
  2580.             d.nullable,
  2581.             d.case_sensitive,
  2582.             d.searchable,
  2583.              d.unsigned_attribute,
  2584.              d.money,
  2585.              d.auto_increment,
  2586.              d.local_type_name
  2587.         from master.dbo.MSdatatype_info d, master.dbo.MSdatatype_info_ext e, systypes t
  2588.         where d.ss_dtype = t.type and
  2589.       t.usertype *= e.user_type and
  2590.           t.type not in (111,109,38,110)  /* get rid of nullable types */
  2591.         order by d.data_type, type_name
  2592.     else
  2593.         select
  2594.             type_name = t.name,
  2595.             d.data_type,
  2596.             precision=isnull(d.data_precision, convert(int,t.length)),
  2597.             d.literal_prefix,
  2598.             d.literal_suffix,
  2599.             e.create_params,
  2600.             d.nullable,
  2601.             d.case_sensitive,
  2602.             d.searchable,
  2603.              d.unsigned_attribute,
  2604.              d.money,
  2605.              d.auto_increment,
  2606.              d.local_type_name
  2607.         from master.dbo.MSdatatype_info d, master.dbo.MSdatatype_info_ext e, systypes t
  2608.         where data_type = @data_type and
  2609.              d.ss_dtype = t.type and
  2610.       t.usertype *= e.user_type and
  2611.           t.type not in (111,109,38,110)
  2612. go
  2613.  
  2614. grant execute on sp_datatype_info to public
  2615. go
  2616.  
  2617. dump tran master with truncate_only
  2618. go
  2619.  
  2620. print "creating sp_special_columns"
  2621. if (exists (select * from sysobjects where name = 'sp_special_columns'))
  2622. begin
  2623.     drop proc sp_special_columns
  2624. end
  2625. go
  2626.  
  2627. dump tran master with truncate_only
  2628. go
  2629.  
  2630.  
  2631. CREATE PROCEDURE sp_special_columns (@table_name      varchar(32),
  2632.                              @table_owner      varchar(32) = null,
  2633.                              @table_qualifier varchar(32) = null,
  2634.                              @col_type       char(1) = 'R')
  2635. AS
  2636.     DECLARE @indid                int
  2637.     DECLARE @table_id            int
  2638.     DECLARE @full_table_name    char(70)
  2639.     DECLARE @msg          char(70)
  2640.  
  2641.     if @table_qualifier is not null
  2642.     begin
  2643.         if db_name() != @table_qualifier
  2644.         begin
  2645.             print "Table qualifier must be name of current database"
  2646.             return
  2647.         end
  2648.     end
  2649.     if @table_owner is null
  2650.     begin
  2651.         SELECT @full_table_name = @table_name
  2652.     end
  2653.     else
  2654.     begin
  2655.         SELECT @full_table_name = @table_owner + '.' + @table_name
  2656.     end
  2657.     SELECT @table_id = object_id(@full_table_name)
  2658.     
  2659.   /* if we just need ROWVER, just run that query */
  2660.     if @col_type = 'V'
  2661.   BEGIN
  2662.     SELECT   
  2663.         scope = 0,
  2664.         column_name = c.name,
  2665.         data_type=d.data_type+convert(smallint,
  2666.                         isnull(d.aux, 
  2667.                         ascii(substring("666AAA@@@CB??GG",
  2668.                         2*(d.ss_dtype%35+1)+2-8/c.length,1))
  2669.                         -60)),
  2670.     type_name=t.name,
  2671.         precision=isnull(d.data_precision, convert(int,c.length))
  2672.                 +isnull(d.aux, convert(int,
  2673.                 ascii(substring("???AAAFFFCKFOLS",
  2674.                 2*(d.ss_dtype%35+1)+2-8/c.length,1))-60)),
  2675.         length=isnull(d.length, convert(int,c.length)) +convert(int,
  2676.                     isnull(d.aux,
  2677.                     ascii(substring("AAA<BB<DDDHJSPP",
  2678.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  2679.                     1))-64)),
  2680.         scale = d.numeric_scale +convert(smallint,
  2681.                     isnull(d.aux,
  2682.                     ascii(substring("<<<<<<<<<<<<<<?",
  2683.                     2*(d.ss_dtype%35+1)+2-8/c.length,
  2684.                     1))-60))
  2685.       FROM
  2686.             systypes t,syscolumns c,  master.dbo.MSdatatype_info d
  2687.       WHERE
  2688.           c.id=@table_id
  2689.           AND c.type = d.ss_dtype
  2690.       AND c.usertype = 80 
  2691.       AND t.usertype = 80 
  2692.     RETURN
  2693.   END
  2694.   /* now find the id of the 'best' index for this table */
  2695.  
  2696.   SELECT @indid = (
  2697.     SELECT MIN(indid) 
  2698.       FROM sysindexes
  2699.           WHERE  status&2 = 2
  2700.       AND id = @table_id
  2701.       AND indid > 0)
  2702.  
  2703.    SELECT
  2704.       scope = 0,
  2705.       column_name = INDEX_COL(@full_table_name,indid,c.colid),
  2706.       data_type=d.data_type+convert(smallint,
  2707.                         isnull(d.aux, 
  2708.                         ascii(substring("666AAA@@@CB??GG",
  2709.                         2*(d.ss_dtype%35+1)+2-8/c2.length,1))
  2710.                         -60)),
  2711.       type_name=rtrim(substring(d.type_name, 
  2712.                     1+isnull(d.aux, 
  2713.                     ascii(substring("III<<<MMMI<<A<A",
  2714.                     2*(d.ss_dtype%35+1)+2-8/c2.length,
  2715.                     1))-60), 13)),
  2716.       precision=isnull(d.data_precision, convert(int,c2.length))
  2717.                 +isnull(d.aux, convert(int,
  2718.                 ascii(substring("???AAAFFFCKFOLS",
  2719.                 2*(d.ss_dtype%35+1)+2-8/c2.length,1))-60)),
  2720.       length=isnull(d.length, convert(int,c2.length)) +convert(int,
  2721.                     isnull(d.aux,
  2722.                     ascii(substring("AAA<BB<DDDHJSPP",
  2723.                     2*(d.ss_dtype%35+1)+2-8/c2.length,
  2724.                     1))-64)),
  2725.       scale = d.numeric_scale +convert(smallint,
  2726.                     isnull(d.aux,
  2727.                     ascii(substring("<<<<<<<<<<<<<<?",
  2728.                     2*(d.ss_dtype%35+1)+2-8/c2.length,
  2729.                     1))-60))
  2730.     FROM sysindexes x,syscolumns c, master.dbo.MSdatatype_info d, systypes t, syscolumns c2
  2731.     WHERE x.id=@table_id
  2732.         AND c2.name = INDEX_COL(@full_table_name,@indid,c.colid)
  2733.         AND c2.id =x.id
  2734.         AND c.id = x.id
  2735.         AND c.colid<keycnt+ (x.status&16)/16
  2736.         AND x.indid=@indid
  2737.       AND c2.type = d.ss_dtype
  2738.      AND c2.usertype *= t.usertype
  2739.       
  2740. go  
  2741. grant execute on sp_special_columns to public
  2742. go
  2743.  
  2744.  
  2745.  
  2746.  
  2747. print "creating sp_databases"
  2748. if (exists (select * from sysobjects where name = 'sp_databases'))
  2749. begin
  2750.     drop proc sp_databases
  2751. end
  2752. go
  2753.  
  2754. create procedure sp_databases
  2755.         as
  2756.         create table #databases ( database_name varchar(32),
  2757.                                   size int)
  2758.         insert into #databases                          
  2759.         select  name,
  2760.             (select sum(size) from master.dbo.sysusages
  2761.           where dbid = d.dbid )
  2762.         from master.dbo.sysdatabases d
  2763.         select database_name, database_size = size*2, remarks = null
  2764.         from #databases
  2765. go
  2766. grant execute on sp_databases to public
  2767. go
  2768.  
  2769. dump tran master with truncate_only
  2770. go
  2771.  
  2772.  
  2773.  
  2774.  
  2775.  
  2776.  
  2777. /*******************************************************************************/
  2778. /* This portion returns everything back to normal                   */
  2779. /*******************************************************************************/
  2780. use master
  2781. go
  2782.  
  2783. if exists (select * from sysobjects
  2784.            where name = 'sp_configure' and sysstat & 7 = 4)
  2785. begin
  2786.     execute sp_configure 'update',0
  2787. end
  2788. reconfigure with override
  2789. go
  2790. checkpoint
  2791. go
  2792.