home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / SQLING.EXE / Disk1 / data1.cab / Program_Executable_Files / 70diffproc.sql next >
Encoding:
Text File  |  1999-05-24  |  293.1 KB  |  5,222 lines

  1. use master
  2. go
  3. exec sp_configure 'allow updates', 1
  4. reconfigure with override
  5. go
  6. if object_id('helpsql') is null
  7. begin
  8.     create table helpsql(command varchar(30), ordering tinyint, helptext varchar(80))
  9.     create index helpsqli on helpsql(command)
  10. end else exec ('delete helpsql')
  11. GO
  12. declare @name sysname
  13. declare cr cursor for select name from master..sysdatabases
  14. open cr
  15. fetch next from cr into @name
  16. while @@fetch_status=0 begin
  17.     exec ('if object_id('''+@name+'..syskeys'') is null create table '+@name+'..syskeys(id int not null, type smallint not null, depid int null, keycnt int null, size int null, key1 int null,
  18.     key2 int null, key3 int null,  key4 int null, key5 int null, key6 int null, key7 int null, key8 int null, depkey1 int null,
  19.     depkey2 int null, depkey3 int null, depkey4 int null, depkey5 int null, depkey6 int null, depkey7 int null, depkey8 int null, unique (id, type, depid, key1, key2, key3, key4, key5, key6, key7, key8))')
  20.     exec ('update '+@name+'..sysobjects set xtype=''S'' where name=''syskeys''')
  21.     fetch next from cr into @name
  22. end
  23. close cr
  24. deallocate cr
  25. GO
  26. IF (SELECT COUNT(*) FROM sysobjects WHERE name='sp_helpsql')>0 DROP PROCEDURE dbo.sp_helpsql
  27. GO
  28. CREATE PROC sp_helpsql
  29. @in_command varchar(30) = NULL
  30. AS
  31. DECLARE @num_commands tinyint
  32. DECLARE @original_command varchar(30)
  33. /*******************************************************************/
  34. /*  sp_helpsql gives help on SQL commands supported by SQL Server  */
  35. /*      4 situations are covered:                                  */
  36. /*          1. No additional parameters                            */
  37. /*             Returns: Help on how to use sp_helpsql              */
  38. /*          2. Partial parameter input by the user                 */
  39. /*             Returns: The name of all commands that begin with   */
  40. /*                      the string input by the user.  The user    */
  41. /*                      can resubmit the request for help with     */
  42. /*                      the correct command name.                  */
  43. /*          3. A unique parameter passed from the user             */
  44. /*             Returns: A brief definition and syntax on command.  */
  45. /*          4. A parameter which does not match any help commands. */
  46. /*             return:  No help available for command: parameter   */
  47. /*******************************************************************/
  48.  
  49. /* first deal with no parameter passed, which means to simply give */
  50. /* usage syntax and help                                           */
  51. IF @in_command IS NULL
  52.     BEGIN
  53.     PRINT ' '
  54.      PRINT 'sp_helpsql supplies help on Transact-SQL statements, server-supplied stored '
  55.         PRINT '    procedures, and the following special topics: '
  56.     PRINT ' '
  57.     PRINT '         Comments              Expression            Variables'
  58.     PRINT '         Control of Flow       Functions             Wildcards'
  59.     PRINT '         Cursors               Operators'
  60.     PRINT '         Datatypes             Transactions'
  61.     PRINT ' '
  62.     PRINT 'Syntax:  sp_helpsql [''topic'']'
  63.     PRINT ' '
  64.     PRINT ' '
  65.     PRINT 'For parameter options and syntax restrictions, see the Books On-line.'
  66.     PRINT ' '
  67.     /* all done, so leave now */
  68.     RETURN
  69.     END
  70. ELSE
  71.     BEGIN
  72.     SELECT @original_command = @in_command
  73.     SELECT @in_command = UPPER(@in_command)
  74.     /* see if we got a unique hit on command */
  75.     SELECT @num_commands = COUNT(DISTINCT command) FROM master..helpsql WHERE
  76.         UPPER(command) LIKE @in_command
  77.     IF @num_commands = 1
  78.         BEGIN
  79.         SELECT 'Transact-SQL Syntax Help' = ('  ' + helptext)
  80.             FROM master..helpsql
  81.                 WHERE UPPER(command) LIKE @in_command
  82.             ORDER BY ordering
  83.         RETURN
  84.         END
  85.     ELSE
  86.     /* what was input did not get a direct hit, so now look for a part */
  87.     /* of a command as input */
  88.     SELECT @in_command = @in_command + '%'
  89.     SELECT @num_commands = COUNT(DISTINCT command) FROM master..helpsql WHERE
  90.         UPPER(command) LIKE @in_command
  91.     /* if num_command > 1 then more than 1 command has been found*/
  92.     IF @num_commands > 1
  93.         BEGIN
  94.         PRINT ' '
  95.         PRINT 'You have entered a non-unique topic.  More information can be obtained'
  96.         PRINT 'for the following topics:'
  97.         PRINT ' '
  98.         SELECT DISTINCT 'Transact-SQL command' = command FROM master..helpsql WHERE
  99.             UPPER(command) LIKE @in_command
  100.         RETURN
  101.         END
  102.     ELSE
  103.     /* if num_command = 1 then give help for that 1 command */
  104.     IF @num_commands = 1
  105.         BEGIN
  106.         SELECT 'Transact-SQL Syntax Help' = ('  ' + helptext)
  107.             FROM master..helpsql
  108.                 WHERE UPPER(command) LIKE @in_command
  109.             ORDER BY ordering
  110.         RETURN
  111.         END
  112.     ELSE
  113.     /* if we got here we have no help on the command requested by the */
  114.     /* user                                                           */
  115.         BEGIN
  116.         DECLARE @nohelp varchar(72)
  117.         SELECT @nohelp = 'No help available for ' + @original_command
  118.         PRINT @nohelp
  119.         RETURN
  120.         END
  121.     END
  122. GO
  123. IF (SELECT COUNT(*) FROM sysobjects WHERE name='sp_dropkey')>0 DROP PROCEDURE dbo.sp_dropkey
  124. GO
  125. CREATE PROCEDURE sp_dropkey @keytype varchar(10), @tabname varchar(92), @deptabname varchar(92) = null AS
  126.  
  127. declare @id int                /* id of @tabname */
  128. declare @uid smallint            /* owner of @tabname */
  129. declare @depid int            /* id of related table */
  130. declare @depuid smallint        /* owner of @related table */
  131. declare @dbname varchar(30)
  132. declare @db varchar(30), @s varchar(1000)
  133. select @db=db_name(dbid) from master..sysprocesses where spid=@@spid
  134.  
  135. /*
  136. **  First make sure that the key type is ok.
  137. */
  138. if lower(@keytype) not in ('primary', 'foreign', 'common')
  139.     begin
  140.         raiserror(15145,-1,-1)
  141.         return (1)
  142.     end
  143.  
  144. /*
  145. **  Check to see that the tabname is local.
  146. */
  147. if @tabname like '%.%.%'
  148.     and substring(@tabname, 1, charindex('.', @tabname) - 1) <> db_name()
  149.     begin
  150.         raiserror(15078,-1,-1)
  151.         return (1)
  152.     end
  153.  
  154. if @deptabname like '%.%.%'
  155.     and substring(@deptabname, 1, charindex('.', @deptabname) - 1) <> db_name()
  156.     begin
  157.         raiserror(15078,-1,-1)
  158.         return (1)
  159.     end
  160.  
  161. /*
  162. **  Get the ids of the @tabname and @deptabname.
  163. */
  164. select @id = id, @depid = object_id(@deptabname), @uid = uid
  165.         from sysobjects
  166.             where id = object_id(@tabname)
  167. if @id is null
  168.     begin
  169.         select @dbname = db_name()
  170.         raiserror(15009,-1,-1,@tabname,@dbname)
  171.         return (1)
  172.     end
  173.  
  174. if @uid <> user_id()
  175.     begin
  176.         raiserror(15146,-1,-1)
  177.         return (1)
  178.     end
  179.  
  180. /*
  181. **  If primary key, just drop it.
  182. */
  183. if lower(@keytype) = 'primary'
  184.     begin
  185.         select @s='delete from '+@db+'..syskeys where id = '+convert(varchar, @id)+ ' and type = 1'
  186.         exec (@s)
  187.  
  188.         if @@rowcount = 0
  189.             begin
  190.                 raiserror(15147,-1,-1)
  191.                 return (1)
  192.             end
  193.  
  194.         else
  195.             print 'Primary key for the table or view dropped.'
  196.  
  197.         /*
  198.         **  Check to see if there are any foreign keys dependent on the
  199.         **  primary key.  If so -- drop them.
  200.         */
  201.         select @s='delete from '+@db+'..syskeys where depid = '+convert(varchar, @id)+' and type = 2'
  202.         exec (@s)
  203.  
  204.         if @@rowcount <> 0
  205.             print 'Dependent foreign keys were also dropped.'
  206.  
  207.         return (0)
  208.     end
  209.  
  210. /*
  211. **  It's either a foreign or common key so we need to verify the
  212. **  existence of the @deptabname.
  213. */
  214. if @depid is null
  215.     begin
  216.         /*
  217.         **  Was the @deptabname supplied?
  218.         */
  219.         if @deptabname is null
  220.             begin
  221.                 raiserror(15148,-1,-1)
  222.                 return (1)
  223.             end
  224.  
  225.         /*
  226.         **  It was supplied but it doesn't exist.
  227.         */
  228.         raiserror(15081,-1,-1)
  229.         return (1)
  230.     end
  231.  
  232.  
  233. /*
  234. **  If foreign key, get rid of it.
  235. */
  236. if lower(@keytype) = 'foreign'
  237.     begin
  238.         /*
  239.         **  Get rid of the foreign key entry.
  240.         */
  241.         select @s='delete from '+@db+'..syskeys where type = 2 and id = '+convert(varchar, @id)+' and depid = '+convert(varchar, @depid)
  242.         exec (@s)
  243.  
  244.         if @@rowcount = 0
  245.             begin
  246.                 raiserror(15149,-1,-1)
  247.                 return (1)
  248.             end
  249.  
  250.         print 'Foreign key dropped.'
  251.  
  252.         return (0)
  253.     end
  254.  
  255. /*
  256. **  Key type must be common so just get rid of the common keys
  257. **  with the right ids and depids.  Since whenever a common key is defined
  258. **  it is added to both of the tables involved, we'll get rid of both of
  259. **  those entries.
  260. */
  261. delete from syskeys
  262.     where type = 3
  263.         and id = @id
  264.         and depid = @depid
  265.  
  266. if @@rowcount = 0
  267.     begin
  268.         raiserror(15150,-1,-1)
  269.         return (1)
  270.     end
  271.  
  272. return (0)
  273. GO
  274. IF OBJECT_ID('sp_foreignkey') IS NOT NULL DROP PROC sp_foreignkey
  275. GO
  276. CREATE PROCEDURE sp_foreignkey @tabname nvarchar(512), @pktabname nvarchar(92), @col1 sysname, @col2 sysname = NULL, @col3 sysname = NULL, @col4 sysname = NULL, @col5 sysname = NULL, @col6 sysname = NULL, @col7 sysname = NULL, @col8 sysname = NULL
  277. AS
  278.  
  279. declare @s nvarchar(4000)
  280. declare @objida int    /* id of table we are doing */
  281. declare @objidb int    /* id of table with primary key */
  282. declare @uid smallint    /* id of owner of the table */
  283. declare @cnt    int    /* how many columns are in foreign key */
  284.  
  285. declare @pkey1 int    /* colids of the foreign key */
  286. declare @pkey2 int
  287. declare @pkey3 int
  288. declare @pkey4 int
  289. declare @pkey5 int
  290. declare @pkey6 int
  291. declare @pkey7 int
  292. declare @pkey8 int
  293.  
  294. declare @fkey1 int    /* colids of the primary key */
  295. declare @fkey2 int
  296. declare @fkey3 int
  297. declare @fkey4 int
  298. declare @fkey5 int
  299. declare @fkey6 int
  300. declare @fkey7 int
  301. declare @fkey8 int
  302.  
  303. /*
  304. **  Check to see that the tabname is local.
  305. */
  306. if @tabname like '%.%.%'
  307.     and substring(@tabname, 1, charindex('.', @tabname) - 1) <> db_name()
  308.     begin
  309.         raiserror('Foreign Object db must be same like current db.', 15, 1)
  310.         return (1)
  311.     end
  312.  
  313. if @pktabname like '%.%.%'
  314.     and substring(@pktabname, 1, charindex('.', @pktabname) - 1) <> db_name()
  315.     begin
  316.         raiserror('Primary Object db must be same like current db.', 15, 1)
  317.         return (1)
  318.     end
  319.  
  320. select @objida = id, @uid = uid
  321.     from sysobjects
  322.         where id = object_id(@tabname)
  323.  
  324. if @objida is NULL
  325.     begin
  326.         raiserror ('Table %s Not Found.', 15, 1, @tabname)
  327.         return (1)
  328.     end
  329.  
  330. select @objidb = id
  331.     from sysobjects
  332.         where id = object_id(@pktabname)
  333.  
  334. if @objidb is NULL
  335.     begin
  336.         raiserror ('Table %s Not Found.', 15, 1, @pktabname)
  337.         return (1)
  338.     end
  339.  
  340. /*
  341. **  Now check to see that the foreign key columns exist.
  342. */
  343. select @cnt = 1, @fkey1 = colid
  344.     from syscolumns
  345.         where name = @col1
  346.             and id = @objida
  347. if @fkey1 is null
  348.     begin
  349.         raiserror('Column %s doesn''t exist.', 15, 1, @col1)
  350.         return (1)
  351.     end
  352.  
  353. if @col2 IS NOT NULL
  354.     begin
  355.         select @cnt = @cnt + 1, @fkey2 = colid
  356.             from syscolumns
  357.             where name = @col2
  358.             and id = @objida
  359.  
  360.         if @fkey2 is NULL
  361.             begin
  362.                 raiserror('Column %s doesn''t exist.', 15, 1, @col2)
  363.                 return (1)
  364.             end
  365.     end
  366. else goto foreign_ok
  367.  
  368. if @col3 IS NOT NULL
  369.     begin
  370.         select @cnt = @cnt + 1, @fkey3 = colid
  371.             from syscolumns
  372.             where name = @col3
  373.             and id = @objida
  374.  
  375.         if @fkey3 is NULL
  376.             begin
  377.                 raiserror('Column %s doesn''t exist.', 15, 1, @col3)
  378.                 return (1)
  379.             end
  380.     end
  381. else goto foreign_ok
  382.  
  383. if @col4 IS NOT NULL
  384.     begin
  385.         select @cnt = @cnt + 1, @fkey4 = colid
  386.             from syscolumns
  387.             where name = @col4
  388.             and id = @objida
  389.  
  390.         if @fkey4 is NULL
  391.             begin
  392.                 raiserror('Column %s doesn''t exist.', 15, 1, @col4)
  393.                 return (1)
  394.             end
  395.     end
  396. else goto foreign_ok
  397.  
  398. if @col5 IS NOT NULL
  399.     begin
  400.         select @cnt = @cnt + 1, @fkey5 = colid
  401.             from syscolumns
  402.             where name = @col5
  403.             and id = @objida
  404.  
  405.         if @fkey5 is NULL
  406.             begin
  407.                 raiserror('Column %s doesn''t exist.', 15, 1, @col5)
  408.                 return (1)
  409.             end
  410.     end
  411. else goto foreign_ok
  412.  
  413. if @col6 IS NOT NULL
  414.     begin
  415.         select @cnt = @cnt + 1, @fkey6 = colid
  416.             from syscolumns
  417.             where name = @col6
  418.             and id = @objida
  419.  
  420.         if @fkey6 is NULL
  421.             begin
  422.                 raiserror('Column %s doesn''t exist.', 15, 1, @col6)
  423.                 return (1)
  424.             end
  425.     end
  426. else goto foreign_ok
  427.  
  428. if @col7 IS NOT NULL
  429.     begin
  430.         select @cnt = @cnt + 1, @fkey7 = colid
  431.             from syscolumns
  432.             where name = @col7
  433.             and id = @objida
  434.  
  435.         if @fkey7 is NULL
  436.             begin
  437.                 raiserror('Column %s doesn''t exist.', 15, 1, @col7)
  438.                 return (1)
  439.             end
  440.     end
  441. else goto foreign_ok
  442.  
  443. if @col8 IS NOT NULL
  444.     begin
  445.         select @cnt = @cnt + 1, @fkey8 = colid
  446.             from syscolumns
  447.             where name = @col8
  448.             and id = @objida
  449.  
  450.         if @fkey8 is NULL
  451.             begin
  452.                 raiserror('Column %s doesn''t exist.', 15, 1, @col8)
  453.                 return (1)
  454.             end
  455.     end
  456.  
  457.  
  458. /*
  459. **  If we made it this far then all the columns for the foreign key are ok.
  460. */
  461. foreign_ok:
  462.  
  463. /*
  464. **  Now let's check out the primary key that the foreign key is on.
  465. **  There must be the same number of columns in the key and the
  466. **  base types of the columns must agree.
  467. */
  468. declare @db sysname
  469. select @db=db_name()
  470.  
  471. create table #tmp (key1 int null, key2 int null, key3 int null, key4 int null, key5 int null, key6 int null, key7 int null, key8 int null)
  472. select @s=N'insert #tmp select key1, key2, key3, key4, key5, key6, key7, key8 from '+@db+N'..syskeys where id = '+convert(nvarchar, @objidb)+
  473.         N' and type = 1 and keycnt = '+convert(nvarchar, @cnt)
  474. exec (@s)
  475.  
  476. select @pkey1 = key1, @pkey2 = key2, @pkey3 = key3, @pkey4 = key4,
  477.     @pkey5 = key5, @pkey6 = key6, @pkey7 = key7, @pkey8 = key8
  478.         from #tmp
  479. drop table #tmp
  480.  
  481. /*
  482. **  If @pkey1 is null then there is no such primary key or the number of
  483. **  columns in the primary key are not the same as the number of columns
  484. **  in the foreign key.
  485. */
  486. if @pkey1 is null
  487. begin
  488.     if exists (select * from syskeys where id = @objidb and type = 1)
  489.         raiserror('Primary key does not exist with the same number of columns as the foreign key.', 15, 1)
  490.     else
  491.         raiserror('Primary key does not exist.', 15, 1)
  492.  
  493.     return (1)
  494. end
  495.  
  496. /*
  497. **  Everything is consistent so add the foreign key to syskeys.
  498. */
  499. doinsert:
  500.  
  501. select @s=N'insert '+@db+N'..syskeys (id, type, depid, keycnt, size, key1, key2, key3, key4, key5,
  502.     key6, key7, key8, depkey1, depkey2, depkey3, depkey4, depkey5,
  503.     depkey6, depkey7, depkey8)
  504. values ('+convert(nvarchar, @objida)+N', 2, '+convert(nvarchar, @objidb)+N', '+convert(nvarchar, @cnt)+N', 0, '+convert(nvarchar, @fkey1)+N', '
  505.     +convert(nvarchar, isnull(@fkey2, 0))+N', '+convert(nvarchar, isnull(@fkey3, 0))+N', '+convert(nvarchar, isnull(@fkey4, 0))+N', '+convert(nvarchar, isnull(@fkey5, 0))+N', '+
  506.     convert(nvarchar, isnull(@fkey6, 0))+N', '+convert(nvarchar, isnull(@fkey7, 0))+N', '+convert(nvarchar, isnull(@fkey8, 0))+N', '+convert(nvarchar, @pkey1)+N', '+
  507.     convert(nvarchar, @pkey2)+N', '+convert(nvarchar, @pkey3)+N', '+convert(nvarchar, @pkey4)+N', '+convert(nvarchar, @pkey5)+','+
  508.     convert(nvarchar, @pkey6)+N', '+convert(nvarchar, @pkey7)+N', '+convert(nvarchar, @pkey8)+N')'
  509. exec (@s)
  510.  
  511. print 'New foreign key added.'
  512.  
  513. return (0)
  514. GO
  515. IF OBJECT_ID('sp_primarykey') IS NOT NULL DROP PROC sp_primarykey
  516. GO
  517. CREATE PROCEDURE sp_primarykey @tabname nvarchar(512), @col1 sysname, @col2 sysname = NULL, @col3 sysname = NULL, @col4 sysname = NULL, @col5 sysname = NULL, @col6 sysname = NULL, @col7 sysname = NULL, @col8 sysname = NULL
  518. AS
  519.  
  520. declare @objid int            /* object id of the table */
  521. declare @uid smallint            /* owner id of the object */
  522. declare @cnt smallint            /* howmany columns in key */
  523. declare @key1 smallint            /* colids of the columns in the key */
  524. declare @key2 smallint
  525. declare @key3 smallint
  526. declare @key4 smallint
  527. declare @key5 smallint
  528. declare @key6 smallint
  529. declare @key7 smallint
  530. declare @key8 smallint
  531. declare @dbname sysname
  532.  
  533. select @key1=0, @key2=0, @key3=0, @key4=0, @key5=0, @key6=0, @key7=0, @key8=0
  534. /*
  535. **  Check to see that the tabname is local.
  536. */
  537. if @tabname like '%.%.%' and
  538.     substring(@tabname, 1, charindex('.', @tabname) - 1) <> db_name()
  539.     begin
  540.         raiserror('Object db must be same like current db.', 15, 1)
  541.         return (1)
  542.     end
  543.  
  544. /*
  545. **  See if we can find the object.  It must be a system table, user table,
  546. **  or view.  The low 4 bits of sysobjects.sysstat indicate what the
  547. **  object type is -- it's more reliable than using sysobjects.type which
  548. **  could change.
  549. */
  550. declare @db sysname
  551. select @db=db_name()
  552. select @objid = id, @uid = uid
  553.     from sysobjects
  554.         where id = object_id(@tabname)
  555. if @objid is NULL
  556.     begin
  557.         raiserror ('Table %s Not Found.', 15, 1, @tabname)
  558.         return (1)
  559.     end
  560.  
  561. /*
  562. **  Now check out each column argument to verify its existence.
  563. */
  564. select @cnt = 1, @key1 = colid
  565.     from syscolumns
  566.         where name = @col1
  567.             and id = @objid
  568. if @key1 is NULL
  569.     begin
  570.         raiserror('Column %s doesn''t exist.', 15, 1, @col1)
  571.         return (1)
  572.     end
  573.  
  574. if @col2 IS NOT NULL
  575.     begin
  576.         select @cnt = @cnt + 1, @key2 = colid
  577.             from syscolumns
  578.             where name = @col2
  579.             and id = @objid
  580.  
  581.         if @key2 is NULL
  582.             begin
  583.                 raiserror('Column %s doesn''t exist.', 15, 1, @col2)
  584.                 return (1)
  585.             end
  586.     end
  587. else goto doinsert
  588.  
  589. if @col3 IS NOT NULL
  590.     begin
  591.         select @cnt = @cnt + 1, @key3 = colid
  592.             from syscolumns
  593.             where name = @col3
  594.             and id = @objid
  595.  
  596.         if @key3 is NULL
  597.             begin
  598.                 raiserror('Column %s doesn''t exist.', 15, 1, @col3)
  599.                 return (1)
  600.             end
  601.     end
  602. else goto doinsert
  603.  
  604. if @col4 IS NOT NULL
  605.     begin
  606.         select @cnt = @cnt + 1, @key4 = colid
  607.             from syscolumns
  608.             where name = @col4
  609.             and id = @objid
  610.  
  611.         if @key4 is NULL
  612.             begin
  613.                 raiserror('Column %s doesn''t exist.', 15, 1, @col4)
  614.                 return (1)
  615.             end
  616.     end
  617. else goto doinsert
  618.  
  619. if @col5 IS NOT NULL
  620.     begin
  621.         select @cnt = @cnt + 1, @key5 = colid
  622.             from syscolumns
  623.             where name = @col5
  624.             and id = @objid
  625.  
  626.         if @key5 is NULL
  627.             begin
  628.                 raiserror('Column %s doesn''t exist.', 15, 1, @col5)
  629.                 return (1)
  630.             end
  631.     end
  632. else goto doinsert
  633.  
  634. if @col6 IS NOT NULL
  635.     begin
  636.         select @cnt = @cnt + 1, @key6 = colid
  637.             from syscolumns
  638.             where name = @col6
  639.             and id = @objid
  640.  
  641.         if @key6 is NULL
  642.             begin
  643.                 raiserror('Column %s doesn''t exist.', 15, 1, @col6)
  644.                 return (1)
  645.             end
  646.     end
  647. else goto doinsert
  648.  
  649. if @col7 IS NOT NULL
  650.     begin
  651.         select @cnt = @cnt + 1, @key7 = colid
  652.             from syscolumns
  653.             where name = @col7
  654.             and id = @objid
  655.  
  656.         if @key7 is NULL
  657.             begin
  658.                 raiserror('Column %s doesn''t exist.', 15, 1, @col7)
  659.                 return (1)
  660.             end
  661.     end
  662. else goto doinsert
  663.  
  664. if @col8 IS NOT NULL
  665.     begin
  666.         select @cnt = @cnt + 1, @key8 = colid
  667.             from syscolumns
  668.             where name = @col8
  669.             and id = @objid
  670.  
  671.         if @key8 is NULL
  672.             begin
  673.                 raiserror('Column %s doesn''t exist.', 15, 1, @col8)
  674.                 return (1)
  675.             end
  676.     end
  677.  
  678. doinsert:
  679. declare @s nvarchar(4000)
  680. select @s=N'insert into '+@db+N'..syskeys
  681.     (id, type, depid, keycnt, size, key1, key2, key3, key4, key5,
  682.         key6, key7, key8)
  683. values ('+convert(nvarchar, @objid)+N', 1, NULL,'+convert(nvarchar, @cnt)+N', 0, '+convert(nvarchar,  @key1)+N','+convert(nvarchar, @key2)+N','
  684. +convert(nvarchar, @key3)+N','+convert(nvarchar, @key4)+N','+convert(nvarchar, @key5)+N','+convert(nvarchar, @key6)+N','+convert(nvarchar, @key7)+N','
  685. +convert(nvarchar, @key8)+N')'
  686. exec (@s)
  687.  
  688. print 'New primary key added.'
  689. return (0)
  690. GO
  691. exec sp_configure 'allow updates', 0
  692. reconfigure with override
  693. go
  694. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 1, 'ALTER DATABASE Statement')
  695. GO
  696. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 2, 'Increases the amount of disk space allocated to a database.')
  697. GO
  698. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 3, '')
  699. GO
  700. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 4, 'ALTER DATABASE <database_name>')
  701. GO
  702. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 5, '     [ON {DEFAULT | <database_device>} [= <size>]')
  703. GO
  704. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 6, '          [, <database_device> [= <size>]]...]')
  705. GO
  706. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 7, '[FOR LOAD]')
  707. GO
  708. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER DATABASE', 8, 'test')
  709. GO
  710. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 1, 'ALTER TABLE Statement')
  711. GO
  712. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 2, 'Adds new columns or constraints to an existing table.')
  713. GO
  714. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 3, '')
  715. GO
  716. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 4, 'ALTER TABLE <database>.[<owner>.]<table_name>')
  717. GO
  718. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 5, '[WITH {CHECK | NOCHECK}]')
  719. GO
  720. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 6, '{{CHECK | NOCHECK} CONSTRAINT')
  721. GO
  722. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 7, '{<constraint_name> | ALL} |')
  723. GO
  724. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 8, '[ADD')
  725. GO
  726. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 9, '     {<col_name> <column_properties> [<column_constraints>]')
  727. GO
  728. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 10, '     | [[,] <table_constraint>]}')
  729. GO
  730. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 11, '          [, {<next_col_name> | <next_table_constraint>}]...]')
  731. GO
  732. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 12, '|')
  733. GO
  734. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 13, '[DROP CONSTRAINT]')
  735. GO
  736. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 14, '     <constraint_name> [, <constraint_name2>]...]}')
  737. GO
  738. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 15, '')
  739. GO
  740. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 16, '<column_properties> =')
  741. GO
  742. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 17, '     <datatype> [NULL | IDENTITY[(<seed>, <increment>)]]')
  743. GO
  744. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 18, '')
  745. GO
  746. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 19, '<column_constraints> =')
  747. GO
  748. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 20, '  For a column-level constraint:')
  749. GO
  750. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 20, '    [CONSTRAINT <constraint_name> ]')
  751. GO
  752. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 21, '    {PRIMARY KEY [CLUSTERED | NONCLUSTERED][ (<col_name>)]')
  753. GO
  754. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 22, '         | UNIQUE [CLUSTERED | NONCLUSTERED] [(<col_name>)]')
  755. GO
  756. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 23, '               [WITH FILLFACTOR = <fillfactor> ]')
  757. GO
  758. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 24, '         | FOREIGN KEY [(<col_name>)]')
  759. GO
  760. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 25, '               REFERENCES [(<ref_col>)][NOT FOR REPLICATION]')
  761. GO
  762. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 26, '         | CHECK [NOT FOR REPLICATION] (<expression>)}')
  763. GO
  764. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 27, '<table_constraints> =')
  765. GO
  766. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 28, '  For a table-level constraint:')
  767. GO
  768. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 29, '     [CONSTRAINT <constraint_name> ]')
  769. GO
  770. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 30, '          {PRIMARY KEY [CLUSTERED | NONCLUSTERED]')
  771. GO
  772. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 31, '               (<col_name> [, <col_name2> [..., <col_name16>]])')
  773. GO
  774. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 32, '          | UNIQUE [CLUSTERED | NONCLUSTERED]')
  775. GO
  776. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 33, '               (<col_name> [, <col_name2> [..., <col_name16>]])')
  777. GO
  778. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 34, '               [WITH FILLFACTOR = <fillfactor>]')
  779. GO
  780. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 35, '          | FOREIGN KEY (<col_name> [, <col_name2> [..., <col_name16>]])')
  781. GO
  782. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 36, '               REFERENCES [<owner>.]<ref_table> (<ref_col>')
  783. GO
  784. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 37, '                    [, <ref_col2> [..., <ref_col16>]])')
  785. GO
  786. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 38, '               [NOT FOR REPLICATION]')
  787. GO
  788. INSERT master..helpsql(command, ordering, helptext) VALUES ('ALTER TABLE', 39, '          | CHECK [NOT FOR REPLICATION] (<expression>)}')
  789. GO
  790. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 1, 'CASE Expression')
  791. GO
  792. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 2, 'The CASE expression allows SQL expressions to be simplified for')
  793. GO
  794. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 3, 'conditional values. The CASE expression in SQL Server 6.0 is ANSI')
  795. GO
  796. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 4, 'SQL-92-compliant and allowed anywhere an expression is used.')
  797. GO
  798. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 5, '')
  799. GO
  800. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 6, 'Simple CASE expression:')
  801. GO
  802. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 7, '     CASE <expression>')
  803. GO
  804. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 8, '          WHEN <expression1> THEN <expression1>')
  805. GO
  806. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 9, '          [[WHEN <expression2> THEN <expression2>] [...]]')
  807. GO
  808. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 10, '          [ELSE <expressionN>]')
  809. GO
  810. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 11, '     END')
  811. GO
  812. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 12, '')
  813. GO
  814. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 13, 'Searched CASE expression:')
  815. GO
  816. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 14, '     CASE')
  817. GO
  818. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 15, '          WHEN <Boolean_expression1> THEN <expression1>')
  819. GO
  820. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 16, '          [[WHEN <Boolean_expression2> THEN <expression2> ] [...]]')
  821. GO
  822. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 17, '          [ELSE <expressionN>]')
  823. GO
  824. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 18, '     END')
  825. GO
  826. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 19, '')
  827. GO
  828. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 20, 'CASE-related functions:')
  829. GO
  830. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 21, '     COALESCE (<expression1>, <expression2>)')
  831. GO
  832. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 22, '     COALESCE (<expression1>, <expression2>, ... <expressionN>)')
  833. GO
  834. INSERT master..helpsql(command, ordering, helptext) VALUES ('CASE', 23, '     NULLIF (<expression1>, <expression2>)')
  835. GO
  836. INSERT master..helpsql(command, ordering, helptext) VALUES ('CHECKPOINT', 1, 'CHECKPOINT Statement')
  837. GO
  838. INSERT master..helpsql(command, ordering, helptext) VALUES ('CHECKPOINT', 2, 'Forces all dirty pages (those that have been updated since the')
  839. GO
  840. INSERT master..helpsql(command, ordering, helptext) VALUES ('CHECKPOINT', 3, 'last checkpoint) in the current database to be written to disk.')
  841. GO
  842. INSERT master..helpsql(command, ordering, helptext) VALUES ('CHECKPOINT', 4, '')
  843. GO
  844. INSERT master..helpsql(command, ordering, helptext) VALUES ('CHECKPOINT', 5, 'CHECKPOINT')
  845. GO
  846. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 1, 'Comments')
  847. GO
  848. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 2, 'Provide user-documented information about SQL statements, statement')
  849. GO
  850. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 3, 'blocks, and stored procedures.')
  851. GO
  852. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 4, '/* <text of comment> */')
  853. GO
  854. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 5, 'Or')
  855. GO
  856. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMENTS', 6, '-- <text of comment>')
  857. GO
  858. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 1, 'Control-of-Flow Language')
  859. GO
  860. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 2, 'Controls the flow of execution of SQL statements, statement blocks, and')
  861. GO
  862. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 3, 'stored procedures. These keywords can be used in ad hoc SQL')
  863. GO
  864. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 4, 'statements, in batches, and in stored procedures.')
  865. GO
  866. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 5, '')
  867. GO
  868. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 6, 'These are the control-of-flow keywords:')
  869. GO
  870. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 7, 'BEGIN...END      Defines a statement block.')
  871. GO
  872. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 8, 'GOTO <label>     Continues processing at the statement following the')
  873. GO
  874. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 9, '                 label as defined by <label>.')
  875. GO
  876. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 10, 'IF...ELSE        Defines conditional and, optionally, alternate')
  877. GO
  878. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 11, '                 execution when a condition is false.')
  879. GO
  880. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 12, 'RETURN           Exits unconditionally.')
  881. GO
  882. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 13, 'WAITFOR          Sets a delay for statement execution.')
  883. GO
  884. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 14, 'WHILE            Repeats statements while a specific condition is true.')
  885. GO
  886. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 15, '...BREAK         Exits the innermost WHILE loop.')
  887. GO
  888. INSERT master..helpsql(command, ordering, helptext) VALUES ('CONTROL OF FLOW', 16, '...CONTINUE      Restarts a WHILE loop.')
  889. GO
  890. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 1, 'BEGIN...END Block')
  891. GO
  892. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 2, 'Encloses a series of SQL statements so that control-of-flow language,')
  893. GO
  894. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 3, 'such as IF...ELSE, affects the performance of a group of statements')
  895. GO
  896. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 4, 'instead of only the statement that immediately follows.')
  897. GO
  898. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 5, '')
  899. GO
  900. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 6, 'BEGIN...END blocks can be nested.')
  901. GO
  902. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 7, 'BEGIN')
  903. GO
  904. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 8, '     {sql_statement | <statement_block>}')
  905. GO
  906. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN...END', 9, 'END')
  907. GO
  908. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 1, 'GOTO...LABEL Block')
  909. GO
  910. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 2, 'Alters the flow of execution to a label. The SQL statement(s) following')
  911. GO
  912. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 3, 'GOTO are skipped and processing continues at the label. GOTO statements')
  913. GO
  914. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 4, 'and labels can be used anywhere within a procedure, batch, or')
  915. GO
  916. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 5, 'statement block, and they can be nested.')
  917. GO
  918. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 6, '')
  919. GO
  920. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 7, 'Define the label:')
  921. GO
  922. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 8, '     <label>:')
  923. GO
  924. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 9, 'Alter the execution:')
  925. GO
  926. INSERT master..helpsql(command, ordering, helptext) VALUES ('GOTO...LABEL', 10, '     GOTO <label>')
  927. GO
  928. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN DISTRIBUTED TRANSACTION', 1, 'BEGIN DISTRIBUTED TRANSACTION Statement')
  929. GO
  930. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN DISTRIBUTED TRANSACTION', 1, 'Used to start a transaction that is processed on one or')
  931. GO
  932. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN DISTRIBUTED TRANSACTION', 1, 'more remote servers. MS DTC manages the distributed transaction.')
  933. GO
  934. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN DISTRIBUTED TRANSACTION', 1, '')
  935. GO
  936. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN DISTRIBUTED TRANSACTION', 1, 'BEGIN DISTRIBUTED TRANSACTION [<transaction_name>]')
  937. GO
  938. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 1, 'IF...ELSE Block')
  939. GO
  940. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 2, 'Imposes conditions on the execution of a SQL statement. The SQL')
  941. GO
  942. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 3, 'statement following an IF keyword and its condition is executed if the')
  943. GO
  944. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 4, 'condition is satisfied (when the Boolean expression returns true). The')
  945. GO
  946. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 5, 'optional ELSE keyword introduces an alternate SQL statement that is')
  947. GO
  948. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 6, 'executed when the IF condition is not satisfied (when the Boolean')
  949. GO
  950. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 7, 'expression returns false).')
  951. GO
  952. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 8, '')
  953. GO
  954. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 9, 'IF <Boolean_expression>')
  955. GO
  956. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 10, '     {<sql_statement> | <statement_block>}')
  957. GO
  958. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 11, '[ELSE [<Boolean_expression>]')
  959. GO
  960. INSERT master..helpsql(command, ordering, helptext) VALUES ('IF...ELSE', 12, '     {<sql_statement> | <statement_block>}]')
  961. GO
  962. INSERT master..helpsql(command, ordering, helptext) VALUES ('RETURN', 1, 'RETURN Statement')
  963. GO
  964. INSERT master..helpsql(command, ordering, helptext) VALUES ('RETURN', 2, 'Exits unconditionally from a query or procedure. RETURN is immediate and')
  965. GO
  966. INSERT master..helpsql(command, ordering, helptext) VALUES ('RETURN', 3, 'complete; statements following RETURN are not executed.')
  967. GO
  968. INSERT master..helpsql(command, ordering, helptext) VALUES ('RETURN', 4, '')
  969. GO
  970. INSERT master..helpsql(command, ordering, helptext) VALUES ('RETURN', 5, 'RETURN ([<integer_expression>])')
  971. GO
  972. INSERT master..helpsql(command, ordering, helptext) VALUES ('WAITFOR', 1, 'WAITFOR Statement')
  973. GO
  974. INSERT master..helpsql(command, ordering, helptext) VALUES ('WAITFOR', 2, 'Specifies a time, time interval, or event that triggers execution of a')
  975. GO
  976. INSERT master..helpsql(command, ordering, helptext) VALUES ('WAITFOR', 3, 'statement block, stored procedure, or transaction.')
  977. GO
  978. INSERT master..helpsql(command, ordering, helptext) VALUES ('WAITFOR', 4, '')
  979. GO
  980. INSERT master..helpsql(command, ordering, helptext) VALUES ('WAITFOR', 5, 'WAITFOR {DELAY ''<time>'' | TIME ''<time>''}')
  981. GO
  982. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 1, 'WHILE Construct')
  983. GO
  984. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 2, 'Sets a condition for the repeated execution of an <sql_statement> or')
  985. GO
  986. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 3, 'statement block. The statements are executed repeatedly as long as the')
  987. GO
  988. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 4, 'specified condition is true. The execution of statements in the WHILE')
  989. GO
  990. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 5, 'loop can be controlled from inside the loop with the BREAK and CONTINUE')
  991. GO
  992. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 6, 'keywords.')
  993. GO
  994. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 7, '')
  995. GO
  996. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 8, 'WHILE <Boolean_expression>')
  997. GO
  998. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 9, '       {<sql_statement> | <statement_block>}')
  999. GO
  1000. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 10, '     [BREAK]')
  1001. GO
  1002. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 11, '       {<sql_statement> | <statement_block>}')
  1003. GO
  1004. INSERT master..helpsql(command, ordering, helptext) VALUES ('WHILE', 12, '     [CONTINUE]')
  1005. GO
  1006. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 1, 'CREATE DATABASE Statement')
  1007. GO
  1008. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 2, 'Creates a new database. You must be in the master database to create a')
  1009. GO
  1010. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 3, 'new database.')
  1011. GO
  1012. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 4, '')
  1013. GO
  1014. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 5, 'CREATE DATABASE <database_name>')
  1015. GO
  1016. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 6, '[ON {DEFAULT | <database_device>} [= <size>]')
  1017. GO
  1018. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 7, '     [, <database_device> [= <size>]]...]')
  1019. GO
  1020. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 8, '[LOG ON <database_device> [= <size>]')
  1021. GO
  1022. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 9, '     [, <database_device> [= <size>]]...]')
  1023. GO
  1024. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DATABASE', 10, '[FOR LOAD]')
  1025. GO
  1026. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 1, 'CREATE DEFAULT Statement')
  1027. GO
  1028. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 2, 'Creates an object that, when bound to a column or a user-defined')
  1029. GO
  1030. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 3, 'datatype, specifies a value to be inserted into the column to which it''s')
  1031. GO
  1032. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 4, 'bound (or into all columns in the case of a user-defined datatype) when')
  1033. GO
  1034. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 5, 'no value is explicitly supplied during an insert.')
  1035. GO
  1036. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 6, '')
  1037. GO
  1038. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 7, 'CREATE DEFAULT [<owner>.]<<default_name>>')
  1039. GO
  1040. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE DEFAULT', 8, 'AS <constant_expression>')
  1041. GO
  1042. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 1, 'CREATE INDEX Statement')
  1043. GO
  1044. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 2, 'Creates an index on a given table that either changes the physical')
  1045. GO
  1046. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 3, 'ordering of the table or provides the optimizer with a logical ordering')
  1047. GO
  1048. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 4, 'of the table to increase efficiency for queries.')
  1049. GO
  1050. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 5, '')
  1051. GO
  1052. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 6, 'CREATE [UNIQUE] [CLUSTERED | NONCLUSTERED] INDEX <index_name>')
  1053. GO
  1054. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 7, '     ON [[<database>.]<owner>.]<table_name> (<column_name>')
  1055. GO
  1056. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 8, '          [, <column_name>]...)')
  1057. GO
  1058. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 9, '[WITH')
  1059. GO
  1060. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 10, '     [PAD_INDEX,]')
  1061. GO
  1062. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 11, '     [[,]FILLFACTOR = <fillfactor>]')
  1063. GO
  1064. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 12, '     [[,] IGNORE_DUP_KEY]')
  1065. GO
  1066. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 13, '     [[,] SORTED_DATA | SORTED_DATA_REORG]')
  1067. GO
  1068. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 14, '     [[,] IGNORE_DUP_ROW | ALLOW_DUP_ROW]]')
  1069. GO
  1070. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE INDEX', 15, '[ON <segment_name>]')
  1071. GO
  1072. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 1, 'CREATE PROCEDURE Statement')
  1073. GO
  1074. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 2, 'Creates a stored procedure (a precompiled collection of SQL statements')
  1075. GO
  1076. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 3, 'that can take and/or return')
  1077. GO
  1078. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 4, 'user-supplied parameters.')
  1079. GO
  1080. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 5, '')
  1081. GO
  1082. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 6, 'CREATE PROCedure [<owner>.] procedure_name [;<number>]')
  1083. GO
  1084. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 7, '     [(<parameter1> [, <parameter2>]...[<parameter255>])]')
  1085. GO
  1086. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 8, '[{FOR REPLICATION} | {WITH RECOMPILE}')
  1087. GO
  1088. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 9, '     [{[WITH] | [,]} ENCRYPTION]]')
  1089. GO
  1090. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE PROCEDURE', 10, 'AS <sql_statements>')
  1091. GO
  1092. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 1, 'CREATE RULE Statement')
  1093. GO
  1094. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 2, 'Creates an object called a rule, which, when bound to a column or a')
  1095. GO
  1096. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 3, 'user-defined datatype, specifies the acceptable values that can be inserted')
  1097. GO
  1098. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 4, 'into that column.')
  1099. GO
  1100. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 5, '')
  1101. GO
  1102. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 6, 'CREATE RULE [<owner>.]<<rule_name>>')
  1103. GO
  1104. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE RULE', 7, 'AS <condition_expression>')
  1105. GO
  1106. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 1, 'CREATE SCHEMA Statement')
  1107. GO
  1108. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 2, 'Creates a schema that can be thought of as a conceptual container object,')
  1109. GO
  1110. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 3, 'which is the definition of the database without any data in it.')
  1111. GO
  1112. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 4, 'CREATE SCHEMA')
  1113. GO
  1114. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 5, '     [AUTHORIZATION <owner>]')
  1115. GO
  1116. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE SCHEMA', 6, '          [<schema_element1> [<schema_element2> [...<schema_elementn>]]]')
  1117. GO
  1118. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 1, 'CREATE TABLE Statement')
  1119. GO
  1120. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 2, 'Creates a new table.')
  1121. GO
  1122. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 3, '')
  1123. GO
  1124. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 4, 'CREATE TABLE [<database>.[<owner>].]<table_name>')
  1125. GO
  1126. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 5, '')
  1127. GO
  1128. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 6, '     {<col_name> <column_properties> [<constraint> [<constraint>')
  1129. GO
  1130. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 7, '          [... <constraint>]]]')
  1131. GO
  1132. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 8, '     | [[,] <constraint>]}')
  1133. GO
  1134. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 9, '          [[,] {<next_col_name> |')
  1135. GO
  1136. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 10, '          <next_constraint>}...]')
  1137. GO
  1138. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 11, '')
  1139. GO
  1140. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 12, '[ON <segment_name>]')
  1141. GO
  1142. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 13, '')
  1143. GO
  1144. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 14, '<column_properties> =')
  1145. GO
  1146. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 15, '     <datatype> [NULL | NOT NULL | IDENTITY[(<seed>, <increment>)]]')
  1147. GO
  1148. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 16, '<constraint> =')
  1149. GO
  1150. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 17, '  For a PRIMARY KEY constraint:')
  1151. GO
  1152. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 18, '     [CONSTRAINT <constraint_name>]')
  1153. GO
  1154. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 19, '          PRIMARY KEY [CLUSTERED | NONCLUSTERED]')
  1155. GO
  1156. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 20, '               (<col_name> [, <col_name2> [..., <col_name16>]])')
  1157. GO
  1158. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 21, '               [ON <segment_name>]')
  1159. GO
  1160. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 22, '  For a UNIQUE constraint:')
  1161. GO
  1162. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 23, '     [CONSTRAINT <constraint_name>]')
  1163. GO
  1164. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 24, '          UNIQUE [CLUSTERED | NONCLUSTERED]')
  1165. GO
  1166. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 25, '               (<col_name> [, <col_name2> [..., <col_name16>]])')
  1167. GO
  1168. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 26, '               [ON <segment_name>]')
  1169. GO
  1170. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 27, '  For a FOREIGN KEY constraint:')
  1171. GO
  1172. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 28, '     [CONSTRAINT <constraint_name>]')
  1173. GO
  1174. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 29, '          [FOREIGN KEY (<col_name> [, <col_name2>')
  1175. GO
  1176. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 30, '               [..., <col_name16> ]])]')
  1177. GO
  1178. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 31, '               REFERENCES [<owner>.]<ref_table> [(<ref_col>')
  1179. GO
  1180. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 32, '               [, <ref_col2> [..., <ref_col16>]])]')
  1181. GO
  1182. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 33, '  For a DEFAULT constraint:')
  1183. GO
  1184. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 34, '     [CONSTRAINT <constraint_name>]')
  1185. GO
  1186. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 35, '          DEFAULT {<constant_expression> | <niladic-function> | NULL}')
  1187. GO
  1188. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 36, '               [FOR <col_name>]')
  1189. GO
  1190. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 37, '  For a CHECK constraint(s):')
  1191. GO
  1192. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 38, '     [CONSTRAINT <constraint_name>]')
  1193. GO
  1194. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TABLE', 39, '          CHECK [NOT FOR REPLICATION] (<expression>)')
  1195. GO
  1196. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 1, 'CREATE TRIGGER Statement')
  1197. GO
  1198. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 2, 'Creates a trigger, a special kind of stored procedure that is executed')
  1199. GO
  1200. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 3, 'automatically when a user attempts the specified data-modification')
  1201. GO
  1202. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 4, 'statement on the specified table.')
  1203. GO
  1204. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 5, '')
  1205. GO
  1206. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 6, 'CREATE TRIGGER [<owner>.]<<trigger_name>>')
  1207. GO
  1208. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 7, 'ON [<owner>.]<table_name>')
  1209. GO
  1210. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 8, 'FOR {INSERT, UPDATE, DELETE}')
  1211. GO
  1212. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 9, '[WITH ENCRYPTION]')
  1213. GO
  1214. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 10, 'AS <sql_statements>')
  1215. GO
  1216. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 11, '')
  1217. GO
  1218. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 12, 'Or, using the IF UPDATE clause:')
  1219. GO
  1220. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 13, 'CREATE TRIGGER [<owner>.]<<trigger_name>>')
  1221. GO
  1222. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 14, 'ON [<owner>.]<table_name>')
  1223. GO
  1224. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 15, 'FOR {INSERT, UPDATE}')
  1225. GO
  1226. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 16, '[WITH ENCRYPTION]')
  1227. GO
  1228. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 17, 'AS')
  1229. GO
  1230. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 18, 'IF UPDATE (<column_name>)')
  1231. GO
  1232. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE TRIGGER', 19, '[{AND | OR} UPDATE (<column_name>)...] <sql_statements>')
  1233. GO
  1234. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 1, 'CREATE VIEW Statement')
  1235. GO
  1236. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 2, 'Creates a virtual table that represents an alternative way of looking at')
  1237. GO
  1238. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 3, 'the data in one or more tables. You can use views as security mechanisms')
  1239. GO
  1240. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 4, 'by granting permission on a view but not on underlying tables.')
  1241. GO
  1242. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 5, '')
  1243. GO
  1244. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 6, 'CREATE VIEW [<owner>.]<view_name>')
  1245. GO
  1246. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 7, '[(<column_name> [, <column_name>]...)]')
  1247. GO
  1248. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 8, '[WITH ENCRYPTION]')
  1249. GO
  1250. INSERT master..helpsql(command, ordering, helptext) VALUES ('CREATE VIEW', 9, 'AS <select_statement> [WITH CHECK OPTION]')
  1251. GO
  1252. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 1, 'Cursors')
  1253. GO
  1254. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 2, 'Server cursors allow individual row operations to be performed on a')
  1255. GO
  1256. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 3, 'given results set or on the entire set. In SQL Server 6.0, ANSI SQL')
  1257. GO
  1258. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 4, 'cursors are server-based.')
  1259. GO
  1260. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 5, '')
  1261. GO
  1262. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 6, 'DECLARE Statement     Defines a cursor.')
  1263. GO
  1264. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 7, 'OPEN Statement               Opens a declared cursor.')
  1265. GO
  1266. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 8, 'FETCH Statement              Retrieves a specific row from the cursor.')
  1267. GO
  1268. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 9, '')
  1269. GO
  1270. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 10, 'FETCH [[NEXT | PRIOR | FIRST | LAST | ABSOLUTE')
  1271. GO
  1272. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 11, '     {n | @nvar} | RELATIVE {n | @nvar}]')
  1273. GO
  1274. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 12, '     FROM] cursor_name')
  1275. GO
  1276. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 13, '     [INTO @variable_name1, @variable_name2,...]')
  1277. GO
  1278. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 14, '')
  1279. GO
  1280. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 15, 'CLOSE Statement              Closes an open cursor.')
  1281. GO
  1282. INSERT master..helpsql(command, ordering, helptext) VALUES ('CURSORS', 16, 'DEALLOCATE Statement         Removes the cursor data structures.')
  1283. GO
  1284. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 1, 'DECLARE Statement')
  1285. GO
  1286. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 2, 'Defines a cursor. Once declared, row sets for cursors are assigned by')
  1287. GO
  1288. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 3, 'using the OPEN statement. (The DECLARE statement can also be used to')
  1289. GO
  1290. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 4, 'define the name and type of local variables for a batch or procedure.)')
  1291. GO
  1292. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 5, '')
  1293. GO
  1294. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 6, 'DECLARE <cursor_name> [INSENSITIVE] [SCROLL] CURSOR')
  1295. GO
  1296. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 7, 'FOR <select_statement>')
  1297. GO
  1298. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE CURSOR', 8, '[FOR {READ ONLY | UPDATE [OF <column_list>]}]')
  1299. GO
  1300. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPEN', 1, 'OPEN Statement')
  1301. GO
  1302. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPEN', 2, 'Opens a cursor.')
  1303. GO
  1304. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPEN', 3, '')
  1305. GO
  1306. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPEN', 4, 'OPEN <cursor_name>')
  1307. GO
  1308. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 1, 'FETCH Statement')
  1309. GO
  1310. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 2, 'Retrieves a specific row from the cursor.')
  1311. GO
  1312. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 3, '')
  1313. GO
  1314. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 4, 'FETCH [[NEXT | PRIOR | FIRST | LAST |')
  1315. GO
  1316. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 5, '     ABSOLUTE {<n> | @<nvar>} | RELATIVE {<n> | @<nvar>}] FROM] <cursor_name>')
  1317. GO
  1318. INSERT master..helpsql(command, ordering, helptext) VALUES ('FETCH', 6, '[INTO @<variable_name1>, @<variable_name2>, ...]')
  1319. GO
  1320. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 1, 'CLOSE Statement')
  1321. GO
  1322. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 2, 'Closes an open cursor. CLOSE leaves the data structures accessible for')
  1323. GO
  1324. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 3, 'reopening; however, modifications or fetches are not allowed until the')
  1325. GO
  1326. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 4, 'cursor is reopened.')
  1327. GO
  1328. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 5, '')
  1329. GO
  1330. INSERT master..helpsql(command, ordering, helptext) VALUES ('CLOSE', 6, 'CLOSE <cursor_name>')
  1331. GO
  1332. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 1, 'DEALLOCATE Statement')
  1333. GO
  1334. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 2, 'Removes the cursor data structures. DEALLOCATE is different from CLOSE')
  1335. GO
  1336. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 3, 'in that a closed cursor can be re-opened. DEALLOCATE releases all data')
  1337. GO
  1338. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 4, 'structures associated with the cursor and removes the definition of the')
  1339. GO
  1340. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 5, 'cursor.')
  1341. GO
  1342. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 6, '')
  1343. GO
  1344. INSERT master..helpsql(command, ordering, helptext) VALUES ('DEALLOCATE', 7, 'DEALLOCATE <cursor_name>')
  1345. GO
  1346. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 1, 'Datatypes')
  1347. GO
  1348. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 2, 'Datatypes specify the data characteristics of columns, stored-procedure')
  1349. GO
  1350. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 3, 'parameters, and local variables.')
  1351. GO
  1352. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 4, '')
  1353. GO
  1354. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 5, 'Binary                  binary[(<n>)]')
  1355. GO
  1356. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 6, '                        varbinary[(<n>)]')
  1357. GO
  1358. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 7, 'Character               char[(<n>)]')
  1359. GO
  1360. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 8, '                        varchar[(<n>)]')
  1361. GO
  1362. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 9, 'Date and time           datetime')
  1363. GO
  1364. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 10, '                        smalldatetime')
  1365. GO
  1366. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 11, 'Exact numeric           decimal[(<p>[, <s>])]')
  1367. GO
  1368. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 12, '                        numeric[(<p>[, <s>])]')
  1369. GO
  1370. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 13, 'Approximate numeric     float[(<n>)]')
  1371. GO
  1372. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 14, '                        real')
  1373. GO
  1374. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 15, 'Integer                 int')
  1375. GO
  1376. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 16, '                        smallint')
  1377. GO
  1378. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 17, '                        tinyint')
  1379. GO
  1380. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 18, 'Monetary                money')
  1381. GO
  1382. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 19, '                        smallmoney')
  1383. GO
  1384. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 20, 'Special                 bit')
  1385. GO
  1386. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 21, '                        timestamp')
  1387. GO
  1388. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 22, '                        user-defined datatypes')
  1389. GO
  1390. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 23, 'Text and image          text')
  1391. GO
  1392. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 24, '                        image')
  1393. GO
  1394. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 25, 'Synonyms                binary varying for varbinary')
  1395. GO
  1396. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 26, '                        char varying for varchar')
  1397. GO
  1398. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 27, '                        character for char')
  1399. GO
  1400. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 28, '                        character for char(1)')
  1401. GO
  1402. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 29, '                        character(<n>) for char(<n>)')
  1403. GO
  1404. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 30, '                        character varying(<n>) for varchar(<n>)')
  1405. GO
  1406. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 31, '                        dec for decimal')
  1407. GO
  1408. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 32, '                        double precision for float')
  1409. GO
  1410. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 33, '                        float[(<n>)] for n = 1-7 for real')
  1411. GO
  1412. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 34, '                        float[(<n>)] for n = 8-15 for float')
  1413. GO
  1414. INSERT master..helpsql(command, ordering, helptext) VALUES ('DATATYPES', 35, '                        integer for int')
  1415. GO
  1416. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 1, 'DBCC Statement')
  1417. GO
  1418. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 2, 'Used to check the logical and physical consistency of a database, check')
  1419. GO
  1420. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 3, 'memory usage, decrease the size of a database, check performance')
  1421. GO
  1422. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 4, 'statistics, and so on. DBCC is the SQL Server Database Consistency')
  1423. GO
  1424. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 5, 'Checker.')
  1425. GO
  1426. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 6, '')
  1427. GO
  1428. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 7, 'DBCC {')
  1429. GO
  1430. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 8, '     CHECKALLOC [(<database_name> [, NOINDEX])] |')
  1431. GO
  1432. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 9, '     CHECKCATALOG [(<database_name>)] |')
  1433. GO
  1434. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 10, '     CHECKTABLE (<table_name> [, NOINDEX | <index_id>]) |')
  1435. GO
  1436. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 11, '     CHECKDB [(<database_name> [, NOINDEX])] |')
  1437. GO
  1438. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 12, '     CHECKIDENT[(<table_name>)] |')
  1439. GO
  1440. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 13, '     DBREINDEX([<databases>.<owner>.<table_name>[, <index_name>')
  1441. GO
  1442. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 14, '     [, fillfactor [,{SORTED_DATA | SORTED_DATA_REORG}]]]]')
  1443. GO
  1444. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 15, '     DBREPAIR (<database_name>, DROPDB) [, NOINIT]) |')
  1445. GO
  1446. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 16, '     <dllname> (FREE) |')
  1447. GO
  1448. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 17, '     INPUTBUFFER (<spid>) |')
  1449. GO
  1450. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 18, '     MEMUSAGE |')
  1451. GO
  1452. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 19, '     NEWALLOC [(<database_name> [, NOINDEX])] |')
  1453. GO
  1454. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 20, '     OPENTRAN ({<database_name>} | {<database_id>})')
  1455. GO
  1456. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 21, '          [WITH TABLERESULTS] |')
  1457. GO
  1458. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 22, '     OUTPUTBUFFER (<spid>) |')
  1459. GO
  1460. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 23, '     PERFMON |')
  1461. GO
  1462. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 24, '     PINTABLE (<database_id>, <table_id>) |')
  1463. GO
  1464. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 25, '     PROCCACHE |')
  1465. GO
  1466. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 26, '     SHOW_STATISTICS (<table_name>, <index_name>) |')
  1467. GO
  1468. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 27, '     SHOWCONTIG (<table_id>, [<index_id>]) |')
  1469. GO
  1470. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 28, '     SHRINKDB (<database_name> [, <new_size> [, ''MASTEROVERRIDE'']]) |')
  1471. GO
  1472. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 29, '     SQLPERF ({IOSTATS | LRUSTATS | NETSTATS | RASTATS [, CLEAR]} |')
  1473. GO
  1474. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 30, '          {THREADS} | {LOGSPACE}) |')
  1475. GO
  1476. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 31, '     TEXTALL [({<database_name> | <database_id>}[, FULL | FAST])] |')
  1477. GO
  1478. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 32, '     TEXTALLOC [({<table_name> | <table_id>}[, FULL | FAST])] |')
  1479. GO
  1480. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 33, '     TRACEOFF (<trace#>) |')
  1481. GO
  1482. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 34, '     TRACEON (<trace#>) |')
  1483. GO
  1484. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 35, '     TRACESTATUS (<trace#> [, <trace#>...]) |')
  1485. GO
  1486. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 36, '     UNPINTABLE (<database_id>, <table_id>) |')
  1487. GO
  1488. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 37, '     UPDATEUSAGE ({0 | <database_name>} [, <table_name>')
  1489. GO
  1490. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 38, '          [, <index_id>]]) [WITH COUNT_ROWS] |')
  1491. GO
  1492. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 39, '     USEROPTIONS}')
  1493. GO
  1494. INSERT master..helpsql(command, ordering, helptext) VALUES ('DBCC', 40, '    [WITH NO_INFOMSGS]')
  1495. GO
  1496. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 1, 'DECLARE Statement')
  1497. GO
  1498. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 2, 'Used to define the name and type of local variables for a batch or')
  1499. GO
  1500. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 3, 'procedure, and to define cursors.')
  1501. GO
  1502. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 4, '')
  1503. GO
  1504. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 5, 'DECLARE @<variable_name> <datatype>')
  1505. GO
  1506. INSERT master..helpsql(command, ordering, helptext) VALUES ('DECLARE', 6, '     [, @<variable_name> <datatype>...]')
  1507. GO
  1508. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 1, 'DELETE Statement')
  1509. GO
  1510. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 2, 'Removes rows from a table.')
  1511. GO
  1512. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 3, '')
  1513. GO
  1514. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 4, 'DELETE [FROM] {<table_name> | <view_name>}')
  1515. GO
  1516. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 5, '     [WHERE clause]')
  1517. GO
  1518. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 6, '')
  1519. GO
  1520. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 7, 'Transact-SQL extension Syntax:')
  1521. GO
  1522. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 8, 'DELETE [FROM] {<table_name> | <view_name>}')
  1523. GO
  1524. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 9, '     [FROM {<table_name> | <view_name>}')
  1525. GO
  1526. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 10, '          [, {<table_name> | <view_name>}]...]')
  1527. GO
  1528. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 11, '               [..., {<table_name16> | <view_name16>}]]')
  1529. GO
  1530. INSERT master..helpsql(command, ordering, helptext) VALUES ('DELETE', 12, '[WHERE clause]')
  1531. GO
  1532. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 1, 'DISK INIT Statement')
  1533. GO
  1534. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 2, 'Creates a device on which a database or multiple databases can be')
  1535. GO
  1536. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 3, 'placed. A device is an operating-system file that SQL Server pre-')
  1537. GO
  1538. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 4, 'allocates for database use.')
  1539. GO
  1540. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 5, '')
  1541. GO
  1542. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 6, 'DISK INIT')
  1543. GO
  1544. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 7, '     NAME = ''<logical_name>'',')
  1545. GO
  1546. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 8, '     PHYSNAME = ''<physical_name>'',')
  1547. GO
  1548. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 9, '     VDEVNO = <virtual_device_number>,')
  1549. GO
  1550. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 10, '     SIZE = <number_of_2K_blocks>')
  1551. GO
  1552. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK INIT', 11, '[, VSTART = <virtual_address>]')
  1553. GO
  1554. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 1, 'DISK MIRROR Statement')
  1555. GO
  1556. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 2, 'Creates a software image of the SQL Server device.')
  1557. GO
  1558. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 3, '')
  1559. GO
  1560. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 4, 'DISK MIRROR')
  1561. GO
  1562. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 5, '     NAME = ''<logical_name>'',')
  1563. GO
  1564. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 6, '     MIRROR = ''<physical_name>''')
  1565. GO
  1566. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK MIRROR', 7, '     [, WRITES = {SERIAL | NOSERIAL}]')
  1567. GO
  1568. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 1, 'DISK UNMIRROR Statement')
  1569. GO
  1570. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 2, 'Temporarily pauses software mirroring for the SQL Server device. Often')
  1571. GO
  1572. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 3, 'this is useful when large non-logged operations are occurring against')
  1573. GO
  1574. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 4, 'the database and when a database backup (using the DUMP statement) will')
  1575. GO
  1576. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 5, 'be performed after the non-logged operations finish.')
  1577. GO
  1578. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 6, '')
  1579. GO
  1580. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 7, 'DISK UNMIRROR')
  1581. GO
  1582. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 8, '     NAME = ''<logical_name>''')
  1583. GO
  1584. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 9, '     [, SIDE = {PRIMARY | SECONDARY}]')
  1585. GO
  1586. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK UNMIRROR', 10, '     [, MODE = {RETAIN | REMOVE}]')
  1587. GO
  1588. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REMIRROR', 1, 'DISK REMIRROR Statement')
  1589. GO
  1590. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REMIRROR', 2, 'Resumes software mirroring for the SQL Server device.')
  1591. GO
  1592. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REMIRROR', 3, '')
  1593. GO
  1594. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REMIRROR', 4, 'DISK REMIRROR')
  1595. GO
  1596. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REMIRROR', 5, '     NAME = ''<logical_name>''')
  1597. GO
  1598. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 1, 'DISK REFIT Statement')
  1599. GO
  1600. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 2, 'Restores usage information from the system tables when a device exists')
  1601. GO
  1602. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 3, '(the file is present) but the entries in the sysusages table no longer')
  1603. GO
  1604. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 4, 'exist. This occurs after a damaged master database is restored and the')
  1605. GO
  1606. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 5, 'master database is incomplete (databases and devices were added or')
  1607. GO
  1608. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 6, 'altered since the last backup of master).')
  1609. GO
  1610. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 7, '')
  1611. GO
  1612. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REFIT', 8, 'DISK REFIT')
  1613. GO
  1614. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 1, 'DISK REINIT Statement')
  1615. GO
  1616. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 2, 'Restores the device entries to the system tables when a device exists')
  1617. GO
  1618. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 3, '(the file is present) and the entry in the sysdevices table no longer')
  1619. GO
  1620. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 4, 'exists. This occurs after a damaged master database is restored and the')
  1621. GO
  1622. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 5, 'master database is incomplete (databases and devices were added or')
  1623. GO
  1624. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 6, 'altered since the last backup of master). This is the first step for')
  1625. GO
  1626. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 7, 'restoring access to user databases. The DISK REFIT statement completes')
  1627. GO
  1628. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 8, 'the recovery.')
  1629. GO
  1630. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 9, '')
  1631. GO
  1632. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 10, 'DISK REINIT')
  1633. GO
  1634. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 11, '     NAME = ''<logical_name>'',')
  1635. GO
  1636. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 12, '     PHYSNAME = ''<physical_name>'',')
  1637. GO
  1638. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 13, '     VDEVNO = <virtual_device_number>,')
  1639. GO
  1640. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 14, '     SIZE = <number_of_2K_blocks>')
  1641. GO
  1642. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK REINIT', 15, '     [, VSTART = <virtual_address>]')
  1643. GO
  1644. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 1, 'DISK RESIZE Statement')
  1645. GO
  1646. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 2, 'Allows you to expand a device. You can use DISK RESIZE on any database')
  1647. GO
  1648. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 3, 'device, including the MASTER device.')
  1649. GO
  1650. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 4, '')
  1651. GO
  1652. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 5, 'DISK RESIZE')
  1653. GO
  1654. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 6, '     NAME = <logical_device_name>,')
  1655. GO
  1656. INSERT master..helpsql(command, ordering, helptext) VALUES ('DISK RESIZE', 7, '     SIZE = <final_size>')
  1657. GO
  1658. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DATABASE', 1, 'DROP DATABASE Statement')
  1659. GO
  1660. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DATABASE', 2, 'Removes one or more databases from SQL Server.')
  1661. GO
  1662. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DATABASE', 3, '')
  1663. GO
  1664. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DATABASE', 4, 'DROP DATABASE <database_name> [, <database_name>...]')
  1665. GO
  1666. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DEFAULT', 1, 'DROP DEFAULT Statement')
  1667. GO
  1668. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DEFAULT', 2, 'Removes a user-defined default from a database.')
  1669. GO
  1670. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DEFAULT', 3, '')
  1671. GO
  1672. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP DEFAULT', 4, 'DROP DEFAULT [<owner>.]<default_name> [, [<owner>.]<default_name>...]')
  1673. GO
  1674. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP INDEX', 1, 'DROP INDEX Statement')
  1675. GO
  1676. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP INDEX', 2, 'Removes an index from a database.')
  1677. GO
  1678. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP INDEX', 3, '')
  1679. GO
  1680. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP INDEX', 4, 'DROP INDEX [owner.]<table_name>.<index_name>')
  1681. GO
  1682. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP INDEX', 5, '              [, [owner.]<table_name>.<index_name>...]')
  1683. GO
  1684. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP PROCEDURE', 1, 'DROP PROCEDURE Statement')
  1685. GO
  1686. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP PROCEDURE', 2, 'Removes user-created stored procedures from the current database.')
  1687. GO
  1688. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP PROCEDURE', 3, '')
  1689. GO
  1690. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP PROCEDURE', 4, 'DROP PROCedure [<owner>.]<procedure_name>')
  1691. GO
  1692. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP PROCEDURE', 5, '                   [, [<owner>.]<procedure_name>...]')
  1693. GO
  1694. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP RULE', 1, 'DROP RULE Statement')
  1695. GO
  1696. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP RULE', 2, 'Removes a user-specified rule from a database.')
  1697. GO
  1698. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP RULE', 3, '')
  1699. GO
  1700. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP RULE', 4, 'DROP RULE [<owner>.]<rule_name>')
  1701. GO
  1702. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP RULE', 5, '              [, [<owner>.]<rule_name>...]')
  1703. GO
  1704. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 1, 'DROP TABLE Statement')
  1705. GO
  1706. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 2, 'Removes a table definition and all data, indexes, triggers, constraints, and')
  1707. GO
  1708. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 3, 'permission specifications for that table from the database.')
  1709. GO
  1710. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 4, '')
  1711. GO
  1712. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 5, 'DROP TABLE [[<database>.]<owner>.]<table_name>')
  1713. GO
  1714. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TABLE', 6, '               [, [[<database>.]<owner>.]<table_name>...]')
  1715. GO
  1716. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TRIGGER', 1, 'DROP TRIGGER Statement')
  1717. GO
  1718. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TRIGGER', 2, 'Removes a trigger from a database.')
  1719. GO
  1720. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TRIGGER', 3, '')
  1721. GO
  1722. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TRIGGER', 4, 'DROP TRIGGER [<owner>.]<trigger_name>')
  1723. GO
  1724. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP TRIGGER', 5, '                 [, [<owner>.]<trigger_name>...]')
  1725. GO
  1726. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP VIEW', 1, 'DROP VIEW Statement')
  1727. GO
  1728. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP VIEW', 2, 'Removes a view from a database.')
  1729. GO
  1730. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP VIEW', 3, '')
  1731. GO
  1732. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP VIEW', 4, 'DROP VIEW [<owner>.]<view_name>')
  1733. GO
  1734. INSERT master..helpsql(command, ordering, helptext) VALUES ('DROP VIEW', 5, '              [, [<owner>.]<view_name>...]')
  1735. GO
  1736. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 1, 'DUMP Statement')
  1737. GO
  1738. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 2, 'Makes a backup copy of a database and its transaction log (DUMP')
  1739. GO
  1740. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 3, 'DATABASE) or only the transaction log (DUMP TRANSACTION)')
  1741. GO
  1742. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 4, 'in a form that can be read into SQL Server using the LOAD statement.')
  1743. GO
  1744. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 5, '')
  1745. GO
  1746. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 6, 'Dumping a database:')
  1747. GO
  1748. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 7, '     DUMP DATABASE {<dbname> | @<dbname_var>}')
  1749. GO
  1750. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 8, '          TO <dump_device> [, <dump_device2> [..., <dump_device32>]]')
  1751. GO
  1752. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 9, '      [WITH <options>')
  1753. GO
  1754. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 10, '     [[,] STATS [=<percentage>]]]')
  1755. GO
  1756. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 11, '')
  1757. GO
  1758. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 12, 'Dumping a transaction log:')
  1759. GO
  1760. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 13, '     DUMP TRANSACTION {<dbname> | @<dbname_var>}')
  1761. GO
  1762. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 14, '         [TO <dump_device> [, <dump_device2> [..., <dump_device32>]]]')
  1763. GO
  1764. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 15, '     [WITH {TRUNCATE_ONLY | NO_LOG | NO_TRUNCATE}')
  1765. GO
  1766. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 16, '          {<options>}]')
  1767. GO
  1768. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 17, '')
  1769. GO
  1770. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 18, 'Dumping a table:')
  1771. GO
  1772. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 19, '     DUMP TABLE [[<dbname>.]<owner>.]<table_name>')
  1773. GO
  1774. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 20, '          TO <dump_device> [, <dump_device2> [..., <dump_device32>]]')
  1775. GO
  1776. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 21, '          [WITH <options>]')
  1777. GO
  1778. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 22, '')
  1779. GO
  1780. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 23, 'where')
  1781. GO
  1782. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 24, '<')
  1783. GO
  1784. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 25, '<dump_device> =')
  1785. GO
  1786. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 26, '     { <dump_device_name> | @<dump_device_namevar>}')
  1787. GO
  1788. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 27, '     | {DISK | TAPE | FLOPPY | PIPE} =')
  1789. GO
  1790. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 28, '          {''<temp_dump_device>'' | @<temp_dump_device_var>}')
  1791. GO
  1792. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 29, '     [VOLUME = {<volid> | @<volid_var>}]')
  1793. GO
  1794. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 30, '')
  1795. GO
  1796. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 31, '<options> =')
  1797. GO
  1798. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 32, '     [[,] {UNLOAD | NOUNLOAD}]')
  1799. GO
  1800. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 33, '     [[,] {INIT | NOINIT}]')
  1801. GO
  1802. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 34, '     [[,] {SKIP | NOSKIP}]')
  1803. GO
  1804. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 35, '     [[,] {{EXPIREDATE = {<date> | @<date_var>}}')
  1805. GO
  1806. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 36, '          | {RETAINDAYS = {<days> | @<days_var>}}]')
  1807. GO
  1808. INSERT master..helpsql(command, ordering, helptext) VALUES ('DUMP', 37, '     [[,] STATS [ = <percentage>]]')
  1809. GO
  1810. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 1, 'EXECUTE Statement')
  1811. GO
  1812. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 2, 'Executes a system procedure, a user-defined stored procedure, or an')
  1813. GO
  1814. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 3, 'extended stored procedure. Also supports the execution of a character')
  1815. GO
  1816. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 4, 'string within a Transact-SQL batch.')
  1817. GO
  1818. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 5, '')
  1819. GO
  1820. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 6, 'To execute a stored procedure:')
  1821. GO
  1822. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 7, '  EXEC[ute]')
  1823. GO
  1824. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 8, '  {[@<return_status> =]')
  1825. GO
  1826. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 9, '     {[[[<server>.]<database>.]<owner>.]<procedure_name>[;<number>] |')
  1827. GO
  1828. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 10, '          @<procedure_name_var>}')
  1829. GO
  1830. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 11, '     [[@<parameter_name> =] {<value> | @<variable> [OUTPUT] | DEFAULT}')
  1831. GO
  1832. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 12, '     [, [@<parameter_name> =] {<value> | @<variable> [OUTPUT] |')
  1833. GO
  1834. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 13, '     DEFAULT}]...] [WITH RECOMPILE]}')
  1835. GO
  1836. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 14, '')
  1837. GO
  1838. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 15, 'To execute a character string:')
  1839. GO
  1840. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 16, '  EXEC[ute] ({@<str_var> | ''<tsql_string>''} [{@<str_var> |')
  1841. GO
  1842. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXECUTE', 17, '     ''<tsql_string>''}...])}')
  1843. GO
  1844. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 1, 'Expressions')
  1845. GO
  1846. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 2, 'Used as variables, constants, and column names in many SQL statements,')
  1847. GO
  1848. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 3, 'functions and expressions. An expression returns values and can be')
  1849. GO
  1850. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 4, 'nested.')
  1851. GO
  1852. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 5, '')
  1853. GO
  1854. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 6, '{<constant> | <column_name> | <function> | (<subquery>)}')
  1855. GO
  1856. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 7, '[{operator | AND | OR | NOT}')
  1857. GO
  1858. INSERT master..helpsql(command, ordering, helptext) VALUES ('EXPRESSION', 8, '{<constant> | <column_name> | <function> | (<subquery>)}...]')
  1859. GO
  1860. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 1, 'Functions')
  1861. GO
  1862. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 2, 'Functions return special information from the system about users,')
  1863. GO
  1864. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 3, 'expressions, a database or database objects, and so on.')
  1865. GO
  1866. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 4, '')
  1867. GO
  1868. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 5, '+ (<expression> + <expression>)')
  1869. GO
  1870. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 6, 'ABS (<numeric_expr>)')
  1871. GO
  1872. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 7, 'ACOS (<float_expr>)')
  1873. GO
  1874. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 8, 'ASCII (<char_expr>)')
  1875. GO
  1876. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 9, 'ASIN (<float_expr>)')
  1877. GO
  1878. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 10, 'ATAN (<float_expr>)')
  1879. GO
  1880. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 11, 'ATN2 (<float_expr1>1, <float_expr2>)')
  1881. GO
  1882. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 12, 'AVG([ALL | DISTINCT] <expression>)')
  1883. GO
  1884. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 13, 'CEILING (<numeric_expr>)')
  1885. GO
  1886. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 14, 'CHAR (<integer_expr>)')
  1887. GO
  1888. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 15, 'CHARINDEX (''<pattern>'', <expression>)')
  1889. GO
  1890. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 16, 'COALESCE (<expression1>, <expression2>, ... <expressionN>)')
  1891. GO
  1892. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 17, 'COL_LENGTH (''<table_name>'',  ''<column_name>'')')
  1893. GO
  1894. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 18, 'COL_NAME (<table_id>,  <column_id>)')
  1895. GO
  1896. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 19, 'CONVERT (<datatype>[(<length>)], <expression> [, <style>])')
  1897. GO
  1898. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 20, 'COS (<float_expr>)')
  1899. GO
  1900. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 21, 'COT (<float_expr>)')
  1901. GO
  1902. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 22, 'COUNT(*)')
  1903. GO
  1904. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 23, 'COUNT([ALL | DISTINCT] <expression>)')
  1905. GO
  1906. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 24, 'CURRENT_TIMESTAMP (Used with DEFAULT constraints ONLY)')
  1907. GO
  1908. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 25, 'CURRENT_USER (Used with DEFAULT constraints ONLY)')
  1909. GO
  1910. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 26, 'DATALENGTH (''<expression>'')')
  1911. GO
  1912. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 27, 'DATALENGTH (<expression>)')
  1913. GO
  1914. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 28, 'DATEADD(<datepart>, <number>, <date>)')
  1915. GO
  1916. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 29, 'DATEDIFF(<datepart>, <date1>, <date2>)')
  1917. GO
  1918. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 30, 'DATENAME(<datepart>, <date>)')
  1919. GO
  1920. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 31, 'DATEPART(<datepart>, <date>)')
  1921. GO
  1922. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 32, 'DB_ID ([''<database_name>''])')
  1923. GO
  1924. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 33, 'DB_NAME ([<database_id>])')
  1925. GO
  1926. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 34, 'DEGREES (<numeric_expr>)')
  1927. GO
  1928. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 35, 'DIFFERENCE (<char_expr1>, <char_expr2>)')
  1929. GO
  1930. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 36, 'EXP (<float_expr>)')
  1931. GO
  1932. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 37, 'FLOOR (<numeric_expr>)')
  1933. GO
  1934. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 38, 'GETDATE()')
  1935. GO
  1936. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 39, 'GETANSINULL ([''<database_name>'']')
  1937. GO
  1938. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 40, 'HOST_ID ( )')
  1939. GO
  1940. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 41, 'HOST_NAME ( )')
  1941. GO
  1942. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 42, 'IDENT_INCR (''<table_name>'')')
  1943. GO
  1944. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 43, 'IDENT_SEED (''<table_name>'')')
  1945. GO
  1946. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 44, 'INDEX_COL (''<table_name>'', <index_id>, key_id)')
  1947. GO
  1948. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 45, 'ISNULL (<expression>, <value>)')
  1949. GO
  1950. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 46, 'LOG (<float_expr>)')
  1951. GO
  1952. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 47, 'LOG10 (<float_expr>)')
  1953. GO
  1954. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 48, 'LOWER (<char_expr>)')
  1955. GO
  1956. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 49, 'LTRIM (<char_expr>)')
  1957. GO
  1958. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 50, 'MAX([ALL | DISTINCT] <expression>)')
  1959. GO
  1960. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 51, 'MIN([ALL | DISTINCT] <expression>)')
  1961. GO
  1962. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 52, 'NULLIF (<expression1>, <expression2>)')
  1963. GO
  1964. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 53, 'OBJECT_ID (''<object_name>'')')
  1965. GO
  1966. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 54, 'OBJECT_NAME (object_id)')
  1967. GO
  1968. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 55, 'PATINDEX (''%<pattern>%'', <expression>)')
  1969. GO
  1970. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 56, 'PI ( )')
  1971. GO
  1972. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 57, 'POWER (<numeric_expr1>, <numeric_expr2>)')
  1973. GO
  1974. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 58, 'RADIANS (<numeric_expr>)')
  1975. GO
  1976. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 59, 'RAND ([<seed>])')
  1977. GO
  1978. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 60, 'REPLICATE (<char_expr>, <integer_expr>)')
  1979. GO
  1980. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 61, 'REVERSE (<char_expr>)')
  1981. GO
  1982. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 62, 'RIGHT (<char_expr>, <integer_expr>)')
  1983. GO
  1984. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 63, 'ROUND (<numeric_expr>, <length>)')
  1985. GO
  1986. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 64, 'RTRIM (<char_expr>)')
  1987. GO
  1988. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 65, 'SESSION_USER (Used with DEFAULT constraints ONLY)')
  1989. GO
  1990. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 66, 'SIGN (<numeric_expr>)')
  1991. GO
  1992. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 67, 'SIN (<float_expr>)')
  1993. GO
  1994. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 68, 'SOUNDEX (<char_expr>)')
  1995. GO
  1996. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 69, 'SPACE (<integer_expr>)')
  1997. GO
  1998. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 70, 'SQRT (<float_expr>)')
  1999. GO
  2000. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 71, 'STATS_DATE (<table_id>, <index_id>)')
  2001. GO
  2002. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 72, 'STR (<float_expr> [, <length> [, <decimal>]])')
  2003. GO
  2004. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 73, 'STUFF (<char_expr1>, <start>, <length>, <char_expr2>)')
  2005. GO
  2006. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 74, 'SUBSTRING (<expression>, <start>, <length>)')
  2007. GO
  2008. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 75, 'SUM([ALL | DISTINCT] <expression>)')
  2009. GO
  2010. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 76, 'SUSER_ID ([''<login_name>''])')
  2011. GO
  2012. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 77, 'SUSER_NAME ([<server_user_id>])')
  2013. GO
  2014. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 78, 'SYSTEM_USER (Used with DEFAULT constraints ONLY)')
  2015. GO
  2016. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 79, 'TAN (<float_expr>)')
  2017. GO
  2018. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 80, 'TEXTPTR (<column_name>)')
  2019. GO
  2020. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 81, 'TEXTVALID (''<table_name>.<column_name>'', <text_ ptr>)')
  2021. GO
  2022. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 82, 'UPPER (<char_expr>)')
  2023. GO
  2024. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 83, 'USER (Used with DEFAULT constraints ONLY)')
  2025. GO
  2026. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 84, 'USER_ID ([''<user_name>''])')
  2027. GO
  2028. INSERT master..helpsql(command, ordering, helptext) VALUES ('FUNCTIONS', 85, 'USER_NAME ([<user_id>])')
  2029. GO
  2030. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 1, 'GRANT Statement')
  2031. GO
  2032. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 2, 'Assigns permissions to users, including the permission')
  2033. GO
  2034. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 3, 'to grant permisstions to other users.')
  2035. GO
  2036. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 4, '')
  2037. GO
  2038. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 5, 'Statement permissions:')
  2039. GO
  2040. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 6, '     GRANT {ALL | <statement_list>}')
  2041. GO
  2042. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 7, '     TO {PUBLIC | <name_list>}')
  2043. GO
  2044. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 8, '')
  2045. GO
  2046. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 9, 'Object permissions:')
  2047. GO
  2048. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 10, '     GRANT {ALL [PRIVILEGES][<column_list>] | <permission_list> [<column_list>]}')
  2049. GO
  2050. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 11, '     ON {<table_name> [(<column_list>)] |')
  2051. GO
  2052. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 12, '         <view_name> [(<column_list>)] |')
  2053. GO
  2054. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 13, '         <stored_procedure_name> }')
  2055. GO
  2056. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 14, '     TO {PUBLIC | <name_list>}')
  2057. GO
  2058. INSERT master..helpsql(command, ordering, helptext) VALUES ('GRANT', 15, '     [WITH GRANT OPTION]')
  2059. GO
  2060. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 1, 'INSERT Statement')
  2061. GO
  2062. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 2, 'Adds a new row to a table or a view, which is optionally')
  2063. GO
  2064. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 2, 'returned from a stored procedure.')
  2065. GO
  2066. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 3, '')
  2067. GO
  2068. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 4, 'INSERT [INTO]')
  2069. GO
  2070. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 5, '     {<table_name> | <view_name>} [(<column_list>)]')
  2071. GO
  2072. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 6, '{DEFAULT VALUES | <values_list> | <select_statement> }')
  2073. GO
  2074. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 7, 'EXECute {<procedure_name> | @<procedure_name_var>}')
  2075. GO
  2076. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 8, '[[@<parameter_name> =] {<value>| @<variable> [OUTPUT] | DEFAULT }')
  2077. GO
  2078. INSERT master..helpsql(command, ordering, helptext) VALUES ('INSERT', 9, '[,[@<parameter_name> =] {<value>| @<variable> [OUTPUT] | DEFAULT}]...]')
  2079. GO
  2080. INSERT master..helpsql(command, ordering, helptext) VALUES ('KILL', 1, 'KILL Statement')
  2081. GO
  2082. INSERT master..helpsql(command, ordering, helptext) VALUES ('KILL', 2, 'Terminates a user''s process based on the system process ID.')
  2083. GO
  2084. INSERT master..helpsql(command, ordering, helptext) VALUES ('KILL', 3, '')
  2085. GO
  2086. INSERT master..helpsql(command, ordering, helptext) VALUES ('KILL', 4, 'KILL <spid>')
  2087. GO
  2088. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 1, 'LOAD Statement')
  2089. GO
  2090. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 2, 'Restores a backup copy of a user database and its transaction log (LOAD')
  2091. GO
  2092. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 3, 'DATABASE) or only the transaction log (LOAD TRANSACTION) from a dump')
  2093. GO
  2094. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 4, 'that was created using the DUMP statement or an individual table (LOAD TABLE).')
  2095. GO
  2096. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 5, 'The LOAD statement can also be used to retrieve header informantion from a')
  2097. GO
  2098. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 6, 'database dump (LOAD HEADERONLY).')
  2099. GO
  2100. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 7, '')
  2101. GO
  2102. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 8, 'Loading a database:')
  2103. GO
  2104. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 9, '     LOAD DATABASE {<dbname> | @<dbname_var>}')
  2105. GO
  2106. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 10, '          FROM <dump_device> [, <dump_device2> [..., <dump_device32>]]')
  2107. GO
  2108. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 11, '     [WITH <options>')
  2109. GO
  2110. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 12, '          [[,] STATS [ = <percentage>]]]')
  2111. GO
  2112. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 13, '')
  2113. GO
  2114. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 14, 'Loading a transaction log:')
  2115. GO
  2116. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 15, '     LOAD TRANSACTION {<dbname> | @<dbname_var>}')
  2117. GO
  2118. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 16, '          FROM <dump_device> [, <dump_device2> [..., <dump_device32>]]')
  2119. GO
  2120. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 17, '     [WITH <options>]')
  2121. GO
  2122. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 18, '')
  2123. GO
  2124. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 19, 'Loading a table:')
  2125. GO
  2126. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 20, '     LOAD TABLE [[<dbname>.]<owner>.]<table_name>')
  2127. GO
  2128. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 21, '          FROM <dump_device> [, <dump_device2> [..., <dump_device32>]]')
  2129. GO
  2130. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 22, '     [WITH <options>]')
  2131. GO
  2132. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 23, '')
  2133. GO
  2134. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 24, 'Loading header information:')
  2135. GO
  2136. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 25, '     LOAD HEADERONLY')
  2137. GO
  2138. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 26, '          FROM <dump_device>')
  2139. GO
  2140. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 27, '')
  2141. GO
  2142. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 28, 'where')
  2143. GO
  2144. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 29, '')
  2145. GO
  2146. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 30, '<dump_device> =')
  2147. GO
  2148. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 31, '     { <dump_device_name> | @<dump_device_namevar>}')
  2149. GO
  2150. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 32, '          | {DISK | TAPE | FLOPPY | PIPE} =')
  2151. GO
  2152. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 33, '          {''<temp_dump_device>'' | @<temp_dump_device_var>}')
  2153. GO
  2154. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 34, '     [VOLUME = {<volid> | @<volid_var>}]')
  2155. GO
  2156. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 35, '')
  2157. GO
  2158. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 36, '<options> =')
  2159. GO
  2160. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 37, '     [[,] {UNLOAD | NOUNLOAD}]')
  2161. GO
  2162. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 38, '     [[,] {SKIP | NOSKIP}]')
  2163. GO
  2164. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 39, '     [[,] FILE = <fileno>]')
  2165. GO
  2166. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 40, '     [[,] STOPAT = {<date_time> | @<date_time>}]')
  2167. GO
  2168. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 42, '     [[,] SOURCE = <source_name>]')
  2169. GO
  2170. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 43, '     [[,] APPEND]')
  2171. GO
  2172. INSERT master..helpsql(command, ordering, helptext) VALUES ('LOAD', 44, '     [[,] STATS [=<percentage>]]')
  2173. GO
  2174. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 1, 'Operators')
  2175. GO
  2176. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 2, 'Operators are symbols used to perform mathematical computations and/or')
  2177. GO
  2178. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 3, 'comparisons between columns or variables. Comparisons can be made')
  2179. GO
  2180. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 4, 'between like datatypes without any conversion, implicit conversion, or')
  2181. GO
  2182. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 5, 'if necessary, explicit conversion. When comparisons are made between')
  2183. GO
  2184. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 6, 'implicitly converted datatypes, the result will have the greater')
  2185. GO
  2186. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 7, 'precision, the larger scale, and/or the larger/longer datatype.')
  2187. GO
  2188. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 8, '')
  2189. GO
  2190. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 9, '-      Subtraction')
  2191. GO
  2192. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 10, '%      Modulo')
  2193. GO
  2194. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 11, '&      Bitwise AND (two operands)')
  2195. GO
  2196. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 12, '*      Multiplication')
  2197. GO
  2198. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 13, '*=     Outer Join')
  2199. GO
  2200. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 14, '+      Addition')
  2201. GO
  2202. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 15, '/      Division')
  2203. GO
  2204. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 16, '<      Less than')
  2205. GO
  2206. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 17, '< >    Not equal to')
  2207. GO
  2208. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 18, '<=     Less than or equal to')
  2209. GO
  2210. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 19, '=      Equal to')
  2211. GO
  2212. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 20, '=*     Outer Join')
  2213. GO
  2214. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 21, '>      Greater than')
  2215. GO
  2216. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 22, '>=     Greater than or equal to')
  2217. GO
  2218. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 23, '^      Bitwise exclusive OR (two operands)')
  2219. GO
  2220. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 24, '|      Bitwise OR (two operands)')
  2221. GO
  2222. INSERT master..helpsql(command, ordering, helptext) VALUES ('OPERATORS', 25, '~      Bitwise NOT (one operand)')
  2223. GO
  2224. INSERT master..helpsql(command, ordering, helptext) VALUES ('PRINT', 1, 'PRINT Statement')
  2225. GO
  2226. INSERT master..helpsql(command, ordering, helptext) VALUES ('PRINT', 2, 'Returns a user-defined message to the client''s message handler.')
  2227. GO
  2228. INSERT master..helpsql(command, ordering, helptext) VALUES ('PRINT', 3, '')
  2229. GO
  2230. INSERT master..helpsql(command, ordering, helptext) VALUES ('PRINT', 4, 'PRINT {''<any ASCII text>'' | @<local_variable> | @@<global_variable>}')
  2231. GO
  2232. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 1, 'RAISERROR Statement')
  2233. GO
  2234. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 2, 'Returns a user-defined error message and sets a system flag to record')
  2235. GO
  2236. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 3, 'that an error has occurred. RAISERROR lets the client retrieve an entry')
  2237. GO
  2238. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 4, 'from the sysmessages table or build a message dynamically with user-')
  2239. GO
  2240. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 5, 'specified severity and state information. Once defined, this message is')
  2241. GO
  2242. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 6, 'sent back to the client as a server error message.')
  2243. GO
  2244. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 7, '')
  2245. GO
  2246. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 8, 'RAISERROR ({<msg_id> | <msg_str>}, <severity>, <state>')
  2247. GO
  2248. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 9, '          [, <argument1> [, <argument2>]] )')
  2249. GO
  2250. INSERT master..helpsql(command, ordering, helptext) VALUES ('RAISERROR', 10, '     [WITH [LOG | NOWAIT | SETERROR]')
  2251. GO
  2252. INSERT master..helpsql(command, ordering, helptext) VALUES ('RECONFIGURE', 1, 'RECONFIGURE Statement')
  2253. GO
  2254. INSERT master..helpsql(command, ordering, helptext) VALUES ('RECONFIGURE', 2, 'Installs a changed configuration option used only with the sp_configure')
  2255. GO
  2256. INSERT master..helpsql(command, ordering, helptext) VALUES ('RECONFIGURE', 3, 'system stored procedure.')
  2257. GO
  2258. INSERT master..helpsql(command, ordering, helptext) VALUES ('RECONFIGURE', 4, '')
  2259. GO
  2260. INSERT master..helpsql(command, ordering, helptext) VALUES ('RECONFIGURE', 5, 'RECONFIGURE [WITH OVERRIDE]')
  2261. GO
  2262. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 1, 'REVOKE Statement')
  2263. GO
  2264. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 2, 'Revokes object and statement permissions from users.')
  2265. GO
  2266. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 3, '')
  2267. GO
  2268. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 4, 'Statement permissions:')
  2269. GO
  2270. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 5, '     REVOKE {ALL | <statement_list>}')
  2271. GO
  2272. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 6, '     FROM {PUBLIC | <name_list>}')
  2273. GO
  2274. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 7, '')
  2275. GO
  2276. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 8, 'Object permissions:')
  2277. GO
  2278. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 9, '     REVOKE [GRANT OPTION FOR]{ALL | <permission_list>} [(<column_list>)]')
  2279. GO
  2280. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 10, '     ON {<table_name> [(<column_list>)] |')
  2281. GO
  2282. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 11, '          <view_name> [(<column_list>)] |')
  2283. GO
  2284. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 12, '          <stored_procedure_name> |')
  2285. GO
  2286. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 13, '          <extended_stored_procedure_name>}')
  2287. GO
  2288. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 14, '     FROM {PUBLIC | <name_list>}')
  2289. GO
  2290. INSERT master..helpsql(command, ordering, helptext) VALUES ('REVOKE', 14, '     [CASCADE]')
  2291. GO
  2292. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 1, 'SELECT Statement')
  2293. GO
  2294. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 2, 'Retrieves rows from the database.')
  2295. GO
  2296. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 3, '')
  2297. GO
  2298. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 4, '')
  2299. GO
  2300. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 5, '')
  2301. GO
  2302. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 6, 'SELECT [ALL | DISTINCT] <select_list>')
  2303. GO
  2304. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 7, '     INTO [<new_table_name>]')
  2305. GO
  2306. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 8, '     [FROM <table_name> [, <table_name2> [..., <table_name16>]]')
  2307. GO
  2308. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 9, '[WHERE <clause>]')
  2309. GO
  2310. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 10, '[GROUP BY <clause>]')
  2311. GO
  2312. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 11, '[HAVING <clause>]')
  2313. GO
  2314. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 12, '[ORDER BY <clause>]')
  2315. GO
  2316. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 13, '[COMPUTE <clause>]')
  2317. GO
  2318. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 14, '[FOR BROWSE]')
  2319. GO
  2320. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 15, '')
  2321. GO
  2322. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 16, 'where')
  2323. GO
  2324. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 17, '')
  2325. GO
  2326. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 18, '<table_name> | <view_name> =')
  2327. GO
  2328. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 19, '     [[<database>.]<owner>.]{<table_name>. | <view_name>.}')
  2329. GO
  2330. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 20, '')
  2331. GO
  2332. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 21, '<joined_table> =')
  2333. GO
  2334. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 22, '     {<table_name> CROSS JOIN <table_name>')
  2335. GO
  2336. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 23, '     | <table_name> {INNER | LEFT [OUTER] | RIGHT [OUTER] | FULL [OUTER]}')
  2337. GO
  2338. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 24, '     JOIN <table_name> ON <search_conditions>}')
  2339. GO
  2340. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 25, '')
  2341. GO
  2342. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 26, '<optimizer_hints>')
  2343. GO
  2344. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 27, '     One or more of the following, separated with a space:')
  2345. GO
  2346. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 28, '          [INDEX = {<index_name> | <index_id>}]')
  2347. GO
  2348. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 29, '          [NOLOCK]')
  2349. GO
  2350. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 30, '          [HOLDLOCK]')
  2351. GO
  2352. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 31, '          [UPDLOCK]')
  2353. GO
  2354. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 32, '          [TABLOCK]')
  2355. GO
  2356. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 33, '          [PAGLOCK]')
  2357. GO
  2358. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 34, '          [TABLOCKX]')
  2359. GO
  2360. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 35, '          [FASTFIRSTROW]')
  2361. GO
  2362. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 36, '')
  2363. GO
  2364. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 37, 'WHERE <clause> =')
  2365. GO
  2366. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 38, '     WHERE <search_conditions>')
  2367. GO
  2368. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 39, '')
  2369. GO
  2370. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 40, 'GROUP BY <clause> =')
  2371. GO
  2372. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 41, '     GROUP BY [ALL] <aggregate_free_expression>')
  2373. GO
  2374. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 42, '          [[, <aggregate_free_expression>]...]')
  2375. GO
  2376. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 43, '          [WITH {CUBE | ROLLUP}]')
  2377. GO
  2378. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 44, '')
  2379. GO
  2380. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 45, 'HAVING <clause> =')
  2381. GO
  2382. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 46, '     HAVING <search_conditions>')
  2383. GO
  2384. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 47, '')
  2385. GO
  2386. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 48, 'ORDER BY <clause> =')
  2387. GO
  2388. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 49, '     ORDER BY {{<table_name>. | <view_name>.}<column_name> |')
  2389. GO
  2390. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 50, '               <select_list_number> | <expression>} [ASC | DESC]')
  2391. GO
  2392. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 51, '             [...{{<table_name16>. | <view_name16>.}<column_name> |')
  2393. GO
  2394. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 52, '                      <select_list_number> | <expression>} [ASC | DESC]]')
  2395. GO
  2396. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 53, '')
  2397. GO
  2398. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 54, 'COMPUTE <clause> =')
  2399. GO
  2400. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 55, '     COMPUTE <row_aggregate>(<column_name>)')
  2401. GO
  2402. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 56, '               [, <row_aggregate>(<column_name>)...]')
  2403. GO
  2404. INSERT master..helpsql(command, ordering, helptext) VALUES ('SELECT', 57, '     [BY <column_name> [, <column_name>]...]')
  2405. GO
  2406. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 1, 'SET Statement')
  2407. GO
  2408. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 2, 'Sets SQL Server query-processing options for the duration of the user''s')
  2409. GO
  2410. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 3, 'work session, or for the duration of a running trigger or a stored')
  2411. GO
  2412. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 4, 'procedure.')
  2413. GO
  2414. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 5, '')
  2415. GO
  2416. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 6, 'SET {')
  2417. GO
  2418. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 7, ' ANSI_DEFAULTS {ON | OFF}')
  2419. GO
  2420. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 8, '| ANSI_NULLS {OFF | ON}')
  2421. GO
  2422. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 9, '| ANSI_PADDING {OFF | ON}')
  2423. GO
  2424. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 10, '| ANSI_WARNINGS {OFF | ON}')
  2425. GO
  2426. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 11, '| ARITHABORT')
  2427. GO
  2428. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 12, '| ARITHIGNORE')
  2429. GO
  2430. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 13, '| CURSOR_CLOSE_ON_COMMIT {OFF | ON}')
  2431. GO
  2432. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 14, '| DISABLE_DEF_CNST_CHK {OFF | ON}')
  2433. GO
  2434. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 15, '| FIPS_FLAGGER {OFF | <level>}')
  2435. GO
  2436. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 16, '| FMTONLY')
  2437. GO
  2438. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 17, '| FORCEPLAN')
  2439. GO
  2440. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 18, '| IDENTITY_INSERT [<database>.[<owner>.]]<tablename>')
  2441. GO
  2442. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 19, '| IMPLICIT_TRANSACTIONS {OFF | ON}')
  2443. GO
  2444. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 20, '| NOCOUNT')
  2445. GO
  2446. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 21, '| NOEXEC')
  2447. GO
  2448. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 22, '| NUMERIC_ROUNDABORT {OFF | ON}')
  2449. GO
  2450. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 23, '| OFFSETS {<keyword_list>}')
  2451. GO
  2452. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 24, '| PARSEONLY')
  2453. GO
  2454. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 25, '| PROCID')
  2455. GO
  2456. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 26, '| QUOTED_IDENTIFIER')
  2457. GO
  2458. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 27, '| SHOWPLAN')
  2459. GO
  2460. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 28, '| STATISTICS IO')
  2461. GO
  2462. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 29, '| STATISTICS TIME {ON | OFF}')
  2463. GO
  2464. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 30, '')
  2465. GO
  2466. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 31, '| DATEFIRST <number>')
  2467. GO
  2468. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 32, '| DATEFORMAT <format>')
  2469. GO
  2470. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 33, '| DEADLOCKPRIORITY {LOW | NORMAL}')
  2471. GO
  2472. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 34, '| LANGUAGE <language>')
  2473. GO
  2474. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 35, '| REMOTE_PROC_TRANSACTIONS {OFF | ON}')
  2475. GO
  2476. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 36, '| ROWCOUNT {<number> | @<int_variable>}')
  2477. GO
  2478. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 37, '| TEXTSIZE <number>')
  2479. GO
  2480. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 38, '| TRANSACTION ISOLATION LEVEL {READ COMMITTED | READ')
  2481. GO
  2482. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 39, '     UNCOMMITTED | REPEATABLE READ | SERIALIZABLE}')
  2483. GO
  2484. INSERT master..helpsql(command, ordering, helptext) VALUES ('SET', 40, '| XACT_ABORT {OFF | ON}}')
  2485. GO
  2486. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 1, 'SETUSER Statement')
  2487. GO
  2488. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 2, 'Allows a database owner to impersonate another user. The SETUSER')
  2489. GO
  2490. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 3, 'statement is used by the system administrator or a database owner when')
  2491. GO
  2492. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 4, 'he or she wants to adopt the identity of another user in order to use')
  2493. GO
  2494. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 5, 'another user''s database object, to grant permissions to that object, to')
  2495. GO
  2496. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 6, 'create an object, and so on.')
  2497. GO
  2498. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 7, '')
  2499. GO
  2500. INSERT master..helpsql(command, ordering, helptext) VALUES ('SETUSER', 8, 'SETUSER [''<username>'' [WITH NORESET]]')
  2501. GO
  2502. INSERT master..helpsql(command, ordering, helptext) VALUES ('SHUTDOWN', 1, 'SHUTDOWN Statement')
  2503. GO
  2504. INSERT master..helpsql(command, ordering, helptext) VALUES ('SHUTDOWN', 2, 'Stops SQL Server. Only the system administrator can execute this statement.')
  2505. GO
  2506. INSERT master..helpsql(command, ordering, helptext) VALUES ('SHUTDOWN', 3, '')
  2507. GO
  2508. INSERT master..helpsql(command, ordering, helptext) VALUES ('SHUTDOWN', 4, 'SHUTDOWN [WITH NOWAIT]')
  2509. GO
  2510. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 1, 'sp_column_privileges Catalog Stored Procedure')
  2511. GO
  2512. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 2, 'Returns the following column privilege information for a')
  2513. GO
  2514. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 3, 'single table in the current environment. (The GRANTOR is the')
  2515. GO
  2516. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 4, 'dbo, the object owner, or user to whom the dbo issued WITH GRANT permission.)')
  2517. GO
  2518. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 5, '     TABLE_QUALIFIER      TABLE_OWNER     TABLE_NAME')
  2519. GO
  2520. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 6, '      COLUMN_NAME     GRANTOR         GRANTEE')
  2521. GO
  2522. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 7, '      PRIVILEGE')
  2523. GO
  2524. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 8, '')
  2525. GO
  2526. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 9, 'sp_column_privileges <table_name> [, <table_owner>]')
  2527. GO
  2528. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_column_privileges', 10, '     [, <table_qualifier>] [, <column_name>]')
  2529. GO
  2530. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 1, 'sp_columns Catalog Stored Procedure')
  2531. GO
  2532. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 2, 'Returns column information for a single object that can be queried in')
  2533. GO
  2534. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 3, 'the current environment. The returned columns belong to a table or a')
  2535. GO
  2536. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 4, 'view and contain the following column headings:')
  2537. GO
  2538. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 5, '')
  2539. GO
  2540. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 6, '     ')
  2541. GO
  2542. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 7, '      TABLE_QUALIFIER        TABLE_OWNER            TABLE_NAME     ')
  2543. GO
  2544. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 8, '      COLUMN_NAME         DATA_TYPE            TYPE_NAME     ')
  2545. GO
  2546. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 9, '      PRECISION             LENGTH             SCALE        ')
  2547. GO
  2548. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 10, '     RADIX                NULLABLE             REMARKS')
  2549. GO
  2550. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 11, '     COLUMN_DEF             SQL_DATA_TYPE         SQL_DATETIME_SUB')
  2551. GO
  2552. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 12, '     CHAR_OCTET_LENGTH        ORDINAL_POSITION         IS_NULLABLE')
  2553. GO
  2554. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 13, '     SS_DATA_TYPE')
  2555. GO
  2556. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 14, '')
  2557. GO
  2558. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 15, 'sp_columns <object_name> [, <object_owner>] [, <object_qualifier>]')
  2559. GO
  2560. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 16, '     [, <column_name>]')
  2561. GO
  2562. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_columns', 17, '')
  2563. GO
  2564. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 1, 'sp_databases Catalog Stored Procedure')
  2565. GO
  2566. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 2, 'Lists databases, their size and remarks, present in the SQL Server')
  2567. GO
  2568. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 3, 'installation or accessible through a database gateway.')
  2569. GO
  2570. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 4, '')
  2571. GO
  2572. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 5, '     DATABASE        DATABASE_SIZE        REMARKS')
  2573. GO
  2574. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 6, '')
  2575. GO
  2576. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_databases', 7, 'sp_databases')
  2577. GO
  2578. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 1, 'sp_datatype_info Catalog Stored Procedure')
  2579. GO
  2580. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 2, 'Returns the following columns of information about the datatypes')
  2581. GO
  2582. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 3, 'supported by the current environment.')
  2583. GO
  2584. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 4, '     TYPE_NAME        DATA_TYPE        PRECISION')
  2585. GO
  2586. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 5, '     LITERAL_PREFIX        LITERAL_SUFFIX        CREATE_PARAMS')
  2587. GO
  2588. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 6, '     NULLABLE        CASE_SENSITIVE        SEARCHABLE')
  2589. GO
  2590. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 7, '     UNSIGNED_ATTRIBUTE    MONEY            AUTO_INCREMENT')
  2591. GO
  2592. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 8, '     LOCAL_TYPE_NAME        MINIMUM_SCALE        MAXIMUM_SCALE')
  2593. GO
  2594. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 9, '     SQL_DATA_TYPE        SQL_DATETIME_SUB    NUM_PREC_RADIX')
  2595. GO
  2596. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 10, '     INTERVAL_PRECISION    USERTYPE')
  2597. GO
  2598. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 11, '')
  2599. GO
  2600. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_datatype_info', 12, 'sp_datatype_info [<data_type>]')
  2601. GO
  2602. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 1, 'sp_fkeys Catalog Stored Procedure')
  2603. GO
  2604. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 2, 'Returns logical foreign key information for the current environment.')
  2605. GO
  2606. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 3, '')
  2607. GO
  2608. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 4, '     PKTABLE_QUALIFIER      PKTABLE_OWNER          PKTABLE_NAME')
  2609. GO
  2610. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 5, '      PKCOLUMN_NAME          FKTABLE_QUALIFIER      FKTABLE_OWNER')
  2611. GO
  2612. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 6, '     FKTABLE_NAME          FKCOLUMN_NAME          KEY_SEQ')
  2613. GO
  2614. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 7, '      UPDATE_RULE          DELETE_RULE          FK_NAME')
  2615. GO
  2616. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 8, '    PK_NAME')
  2617. GO
  2618. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 9, '')
  2619. GO
  2620. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 10, 'sp_fkeys [<pktable_name>] [, <pktable_owner>] [, <pktable_qualifier>]')
  2621. GO
  2622. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fkeys', 11, '     [, <fktable_name>] [, <fktable_owner>] [, <fktable_qualifier>]')
  2623. GO
  2624. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 1, 'sp_pkeys Catalog Stored Procedure')
  2625. GO
  2626. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 2, 'Returns primary key information for a single table in the current')
  2627. GO
  2628. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 3, 'environment.')
  2629. GO
  2630. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 4, '    TABLE_QUALIFIER        TABLE_OWNER         TABLE_NAME')
  2631. GO
  2632. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 5, '    COLUMN_NAME         KEY_SEQ          PK_NAME')
  2633. GO
  2634. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 6, '')
  2635. GO
  2636. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_pkeys', 7, 'sp_pkeys <table_name> [, <table_owner>] [, <table_qualifier>]')
  2637. GO
  2638. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 1, 'sp_server_info Catalog Stored Procedure')
  2639. GO
  2640. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 2, 'Returns the following list of attribute names and matching values')
  2641. GO
  2642. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 3, 'for SQL Server, the database gateway, and/or the underlying data source.')
  2643. GO
  2644. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 4, '')
  2645. GO
  2646. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 5, '     attribute_id         attribute_name        attribute_value')
  2647. GO
  2648. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 6, '')
  2649. GO
  2650. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_server_info', 7, 'sp_server_info [[@attribute_id =] <attribute_id>]')
  2651. GO
  2652. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 1, 'sp_special_columns Catalog Stored Procedure')
  2653. GO
  2654. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 2, 'Returns the optimal set of columns that uniquely identify a row in the')
  2655. GO
  2656. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 3, 'table and columns that are automatically updated when any value in the')
  2657. GO
  2658. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 4, 'row is updated by a transaction.')
  2659. GO
  2660. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 5, '')
  2661. GO
  2662. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 6, 'SCOPE            COLUMN_NAME         DATA_TYPE')
  2663. GO
  2664. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 7, 'TYPE_NAME         PRECISION        LENGTH')
  2665. GO
  2666. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 8, 'SCALE         PSEUDO_COLUMN')
  2667. GO
  2668. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 9, '')
  2669. GO
  2670. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 10, 'sp_special_columns <table_name> [, <table_owner>] [, <table_qualifier>]')
  2671. GO
  2672. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_special_columns', 11, '     [, <col_type>] [, scope] [, nullable]')
  2673. GO
  2674. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 1, 'sp_sproc_columns Catalog Stored Procedure')
  2675. GO
  2676. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 2, 'Returns the following columns of information for a single stored procedure')
  2677. GO
  2678. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 3, 'in the current environment.')
  2679. GO
  2680. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 4, '')
  2681. GO
  2682. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 5, 'PROCEDURE_QUALIFIER     PROCEDURE_OWNER        PROCEDURE_NAME')
  2683. GO
  2684. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 6, 'COLUMN_NAME         COLUMN_TYPE         DATA_TYPE')
  2685. GO
  2686. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 7, 'TYPE_NAME        PRECISION        LENGTH')
  2687. GO
  2688. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 8, 'SCALE         RADIX             NULLABLE')
  2689. GO
  2690. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 9, 'REMARKS        COLUMN_DEF        SQL_DATA_TYPE    ')
  2691. GO
  2692. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 10, 'SQL_DATETIME_SUB       CHAR_OCTET_LENGTH       ORDINAL_POSITION     ')
  2693. GO
  2694. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 11, 'IS_NULLABLE         SS_DATA_TYPE')
  2695. GO
  2696. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 12, '')
  2697. GO
  2698. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 13, 'sp_sproc_columns <procedure_name> [, <procedure_owner>]')
  2699. GO
  2700. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_sproc_columns', 14, '     [, <procedure_qualifier>] [, <column_name>]')
  2701. GO
  2702. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 1, 'sp_statistics Catalog Stored Procedure')
  2703. GO
  2704. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 2, 'Returns a list of all indexes on a specified table.')
  2705. GO
  2706. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 3, '')
  2707. GO
  2708. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 4, 'TABLE QUALIFIER          TABLE_OWNER          TABLE_NAME')
  2709. GO
  2710. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 5, 'NON_UNIQUE             INDEX_QUALIFIER        INDEX_NAME')
  2711. GO
  2712. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 6, 'TYPE                 SEQ_IN_INDEX          COLUMN_NAME')
  2713. GO
  2714. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 7, 'COLLATION             CARDINALITY          PAGES')
  2715. GO
  2716. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 8, 'FILTER_CONDITION')
  2717. GO
  2718. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 9, '')
  2719. GO
  2720. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 10, 'sp_statistics <table_name> [, <table_owner>] [, <table_qualifier>]')
  2721. GO
  2722. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_statistics', 11, '     [, <index_name>] [, <is_unique>]')
  2723. GO
  2724. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 1, 'sp_stored_procedures Catalog Stored Procedure')
  2725. GO
  2726. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 2, 'Returns a list of the following columns for the stored procedures in the')
  2727. GO
  2728. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 3, 'current environment .')
  2729. GO
  2730. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 4, '')
  2731. GO
  2732. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 5, 'PROCEDURE_QUALIFIER     PROCEDURE_OWNER        PROCEDURE_NAME')
  2733. GO
  2734. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 6, 'NUM_INPUT_PARAMS      NUM_OUTPUT_PARAMS      NUM_RESULT_SETS')
  2735. GO
  2736. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 7, 'REMARKS        PROCEDURE_TYPE')
  2737. GO
  2738. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 8, '')
  2739. GO
  2740. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 9, 'sp_stored_procedures [<procedure_name>] [, <procedure_owner>]')
  2741. GO
  2742. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_stored_procedures', 10, '     [, <procedure_qualifier>]')
  2743. GO
  2744. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 1, 'sp_table_privileges Catalog Stored Procedure')
  2745. GO
  2746. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 2, 'Returns the following privilege information for a single table in the current')
  2747. GO
  2748. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 3, 'environment, where the GRANTOR can be a user granted the permission to')
  2749. GO
  2750. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 4, 'grant by the dbo.')
  2751. GO
  2752. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 5, '')
  2753. GO
  2754. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 6, '         TABLE_QUALIFIER        TABLE_OWNER         TABLE_NAME')
  2755. GO
  2756. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 7, '         GRANTOR            GRANTEE            PRIVILEGE')
  2757. GO
  2758. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 8, '         IS_GRANTABLE')
  2759. GO
  2760. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 9, '')
  2761. GO
  2762. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_table_privileges', 10, 'sp_table_privileges <table_name> [, <table_owner>] [, <table_qualifier>]')
  2763. GO
  2764. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 1, 'sp_tables Catalog Stored Procedure')
  2765. GO
  2766. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 2, 'Returns a list of columns for objects that can be queried in the current environ')
  2767. GO
  2768. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 3, '(that is, any object that can appear in a FROM clause).')
  2769. GO
  2770. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 4, '')
  2771. GO
  2772. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 5, '    TABLE_QUALIFIER        TABLE_OWNER          TABLE_NAME')
  2773. GO
  2774. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 6, '    TABLE_TYPE          REMARKS')
  2775. GO
  2776. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 7, '')
  2777. GO
  2778. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 8, 'sp_tables [<table_name>] [, <table_owner>] [, <table_qualifier>]')
  2779. GO
  2780. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_tables', 9, '     [, <table_type>]')
  2781. GO
  2782. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_cmdshell', 1, 'xp_cmdshell Extended Stored Procedure')
  2783. GO
  2784. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_cmdshell', 2, 'Executes a given command string as an operating-system command shell and')
  2785. GO
  2786. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_cmdshell', 3, 'returns any output as rows of text.')
  2787. GO
  2788. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_cmdshell', 4, '')
  2789. GO
  2790. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_cmdshell', 5, 'xp_cmdshell <command_string> [, no_output]')
  2791. GO
  2792. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 1, 'xp_deletemail Extended Stored Procedure')
  2793. GO
  2794. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 2, 'Deletes a message from the SQL Server inbox. This procedure is used by')
  2795. GO
  2796. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 3, 'the sp_processmail system stored procedure to process mail in the SQL')
  2797. GO
  2798. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 4, 'Server inbox.')
  2799. GO
  2800. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 5, '')
  2801. GO
  2802. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_deletemail', 6, 'xp_deletemail [@msg_id = ] <msg_id>')
  2803. GO
  2804. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_enumgroups', 1, 'xp_enumgroups Extended Stored Procedure')
  2805. GO
  2806. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_enumgroups', 2, 'Provides a list of local Windows NT - based groups or a list of groups')
  2807. GO
  2808. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_enumgroups', 3, 'defined in a specified Windows NT domain.')
  2809. GO
  2810. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_enumgroups', 4, '')
  2811. GO
  2812. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_enumgroups', 5, 'xp_enumgroups [<domain_name>]')
  2813. GO
  2814. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 1, 'xp_findnextmsg Extended Stored Procedure')
  2815. GO
  2816. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 2, 'Accepts a message ID for input and returns the message ID for output.')
  2817. GO
  2818. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 3, '')
  2819. GO
  2820. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 4, 'xp_findnextmsg [@msg_id = <msg_id> [OUTPUT]]')
  2821. GO
  2822. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 5, '     [, @type = <type>]')
  2823. GO
  2824. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_findnextmsg', 6, '     [, @unread_only = {''TRUE'' | ''FALSE''}])')
  2825. GO
  2826. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_grantlogin', 1, 'xp_grantlogin Extended Stored Procedure')
  2827. GO
  2828. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_grantlogin', 2, 'Grants SQL Server access to a Windows NT - based group or user.')
  2829. GO
  2830. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_grantlogin', 3, '')
  2831. GO
  2832. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_grantlogin', 4, 'xp_grantlogin ''<account_name>'' [, {''admin'' | ''repl'' | ''user''}]')
  2833. GO
  2834. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 1, 'xp_logevent Extended Stored Procedure')
  2835. GO
  2836. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 2, 'Logs a user-defined message in the SQL Server log file and/or in the Windows')
  2837. GO
  2838. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 3, 'NT Event Viewer. When sending messages from Transact-SQL procedures, triggers,')
  2839. GO
  2840. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 4, 'batches, and so on, use the RAISERROR statement instead of xp_logevent.')
  2841. GO
  2842. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 5, '')
  2843. GO
  2844. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logevent', 6, 'xp_logevent <error_number>, <message>, [<severity>]')
  2845. GO
  2846. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_loginconfig', 1, 'xp_loginconfig Extended Stored Procedure')
  2847. GO
  2848. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_loginconfig', 2, 'Reports the login security configuration of the server.')
  2849. GO
  2850. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_loginconfig', 3, '')
  2851. GO
  2852. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_loginconfig', 4, 'xp_loginconfig [''<config_name>'']')
  2853. GO
  2854. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 1, 'xp_logininfo Extended Stored Procedure')
  2855. GO
  2856. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 2, 'Reports the account, the type of account, the privilege level of the')
  2857. GO
  2858. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 3, 'account, the map name of the account, and the permission path by which')
  2859. GO
  2860. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 4, 'the account has access to SQL Server.')
  2861. GO
  2862. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 5, '')
  2863. GO
  2864. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 6, 'xp_logininfo [''<account_name>'' [, ''all'' | ''members'']')
  2865. GO
  2866. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_logininfo', 7, '     [, [@privilege] = <variable_name> OUTPUT]]')
  2867. GO
  2868. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_msver', 1, 'xp_msver Extended Stored Procedure')
  2869. GO
  2870. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_msver', 2, 'Returns and allows to be queried all SQL Server version information.')
  2871. GO
  2872. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_msver', 3, '')
  2873. GO
  2874. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_msver', 4, 'xp_msver [<optname>]')
  2875. GO
  2876. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 1, 'xp_readmail Extended Stored Procedure')
  2877. GO
  2878. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 2, 'Reads a mail message from the SQL Server mail inbox. This procedure is')
  2879. GO
  2880. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 3, 'used by the sp_processmail system stored procedure to process all mail')
  2881. GO
  2882. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 4, 'in the SQL Server inbox.')
  2883. GO
  2884. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 5, '')
  2885. GO
  2886. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 6, 'xp_readmail ([@msg_id = <msg_id>]')
  2887. GO
  2888. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 7, '     [, @type = <type> [OUTPUT]]')
  2889. GO
  2890. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 8, '     [, @peek = {''TRUE'' | ''FALSE''}]')
  2891. GO
  2892. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 9, '     [, @suppress_attach = {''TRUE'' | ''FALSE''}]')
  2893. GO
  2894. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 10, '     [, @originator = @<sender> OUTPUT]')
  2895. GO
  2896. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 11, '     [, @subject = @<subject> OUTPUT]')
  2897. GO
  2898. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 12, '     [, @message = @<body_of_message> OUTPUT]')
  2899. GO
  2900. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 13, '     [, @recipients = @<recipient_list> OUTPUT]')
  2901. GO
  2902. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 14, '     [, @cc_list = @<cc_list> OUTPUT]')
  2903. GO
  2904. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 15, '     [, @bcc_list = @<bcc_list> OUTPUT]')
  2905. GO
  2906. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 16, '     [, @date_received = @<date> OUTPUT]')
  2907. GO
  2908. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 17, '     [, @unread = {''TRUE'' | ''FALSE''}]')
  2909. GO
  2910. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 18, '     [, @attachments = @<temp_file_paths> OUTPUT])')
  2911. GO
  2912. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 19, '     [, @skipbytes = @<bytes_to> <skip> OUTPUT])')
  2913. GO
  2914. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_readmail', 20, '     [, @msg_length = @<length_in_bytes> OUTPUT])')
  2915. GO
  2916. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_revokelogin', 1, 'xp_revokelogin Extended Stored Procedure')
  2917. GO
  2918. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_revokelogin', 2, 'Revokes SQL Server access from a Windows NT - based group or user.')
  2919. GO
  2920. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_revokelogin', 3, '')
  2921. GO
  2922. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_revokelogin', 4, 'xp_revokelogin ''<account_name>''')
  2923. GO
  2924. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 1, 'xp_snmp_getstate Extended Stored Procedure')
  2925. GO
  2926. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 2, 'Returns the following columns the SQL Server Simple Network Management')
  2927. GO
  2928. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 3, 'Protocol (SNMP) agent. The state of the SNMP agent indicates whether the')
  2929. GO
  2930. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 4, 'agent is available to have the Microsoft SQL Server quried by an SNMP')
  2931. GO
  2932. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 5, 'client.')
  2933. GO
  2934. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 6, '')
  2935. GO
  2936. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_getstate', 7, 'xp_snmp_getstate [<return_status> OUTPUT]')
  2937. GO
  2938. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 1, 'xp_snmp_raisetrap Extended Stored Procedure')
  2939. GO
  2940. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 2, 'Permits a client to define and send an SNMP alert to an SNMP client.')
  2941. GO
  2942. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 3, '')
  2943. GO
  2944. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 4, 'xp_snmp_raisetrap <server_name>, <database_name>, <error_message>,')
  2945. GO
  2946. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 5, '    <message_id>, <severity>, <user_name>, <comment>, <datetime>,')
  2947. GO
  2948. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_snmp_raisetrap', 6, '    <return_status>')
  2949. GO
  2950. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 1, 'xp_sqlinventory Extended Stored Procedure')
  2951. GO
  2952. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 2, 'Returns the following columns describing SQL Server Domain information.')
  2953. GO
  2954. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 3, '')
  2955. GO
  2956. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 4, '     SERVERNAME        SQLREGISTEREDOWNER    DOMAINNAME')
  2957. GO
  2958. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 5, '      MAJORVERSION         MINORVERSION         BUILDNUMBER')
  2959. GO
  2960. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 6, '    SERVERLOGINS          MAXCONNECTIONS         DBCOUNT')
  2961. GO
  2962. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 7, '    TOTALDEVICESIZE        SORTORDER          CODEPAGE')
  2963. GO
  2964. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 8, '    PROCEDURECACHE         SMPSTATUS         CONFIGUREDMEMORY')
  2965. GO
  2966. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 9, '    PRIORITYBOOST          WORKINGSET          PUBLISHER')
  2967. GO
  2968. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 10, '    SUBSCRIBER          DISTRIBUTION          SUPPORTSSNMP')
  2969. GO
  2970. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 11, '    SECURITYMODE         NAMEDPIPE         SPX')
  2971. GO
  2972. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 12, '    WINSOCKET        APPLETALK          VINES')
  2973. GO
  2974. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 13, '    DECNET          CPUBRAND         CPUMODEL')
  2975. GO
  2976. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 14, '    CPUSTEPLEVEL        CPUCOUNT         SERVERTOTALMEMORY')
  2977. GO
  2978. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 15, '    OPERATINGSYSTEM        OPERATINGSYSTEMBUILD     TOTALPHYSICALDISK')
  2979. GO
  2980. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 16, '    AVAILABLEPHYSICALDISK')
  2981. GO
  2982. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 17, '')
  2983. GO
  2984. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqlinventory', 18, 'xp_sqlinventory {''<database_name>'', ''<table_name>'', <interval> | stop}')
  2985. GO
  2986. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 1, 'xp_sqltrace Extended Stored Procedure')
  2987. GO
  2988. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 2, 'Allows database administrators and application developers to')
  2989. GO
  2990. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 3, 'monitor and record database activity. Multiple instances of')
  2991. GO
  2992. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 4, 'xp_sqltrace can be run simultaneously.')
  2993. GO
  2994. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 5, '')
  2995. GO
  2996. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 6, '')
  2997. GO
  2998. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 7, 'xp_sqltrace [[@Function = ]<function>][,[@EventFilter =]<eventfilter>]')
  2999. GO
  3000. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 8, '[,[@LangFilter = ]''<langfilter>''][,[@RPCFilter = ]''<rpcfilter>'']')
  3001. GO
  3002. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 9, '[,[@UserFilter = ]<userfilter>][,[@Appfilter = ]<appfilter>]')
  3003. GO
  3004. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 10, '[,[@HostFilter =]<hostfilter>][,[@BufSize = ]<bufsize>]')
  3005. GO
  3006. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 11, '[,[@Timeout = ]<timeout>][,[@Traceid = ]<traceid>][,[@Fulltext = ]<fulltext>]')
  3007. GO
  3008. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sqltrace', 12, '[,[@FullFilePath = ]''<outputfilename>''] [,[@InterEvents =]<integerevents>]')
  3009. GO
  3010. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_xpoption', 1, 'sp_xpoption Stored Procedure')
  3011. GO
  3012. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_xpoption', 2, 'Sets the value of extended stored procedure options.')
  3013. GO
  3014. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_xpoption', 3, '')
  3015. GO
  3016. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_xpoption', 4, 'sp_xpoption {<xpname>, <option_name>, [<option_value>]}')
  3017. GO
  3018. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 1, 'xp_sendmail Extended Stored Procedure')
  3019. GO
  3020. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 2, 'Sends a message, and/or a query results set, and/or an attachment to the')
  3021. GO
  3022. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 3, 'specified recipients.')
  3023. GO
  3024. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 4, '')
  3025. GO
  3026. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 5, 'xp_sendmail @recipient = <recipient> [; <recipient2>;')
  3027. GO
  3028. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 6, '               [...; <recipientn>]]')
  3029. GO
  3030. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 7, '     [, @message = <message>]')
  3031. GO
  3032. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 8, '     [, @query = <query>]')
  3033. GO
  3034. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 9, '     [, @attachments = <attachments>]')
  3035. GO
  3036. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 10, '     [, @copy_recipients = <recipient> [; <recipient2>;')
  3037. GO
  3038. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 11, '          [...; <recipientn>]]]')
  3039. GO
  3040. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 12, '     [, @blind_copy_recipients = <recipient> [; <recipient2>;')
  3041. GO
  3042. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 13, '          [...; <recipientn>]]]')
  3043. GO
  3044. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 14, '     [, @subject = <subject>]')
  3045. GO
  3046. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 15, '     [, @type = <type>]')
  3047. GO
  3048. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 16, '     [, @attach_results = {''TRUE'' | ''FALSE''}]')
  3049. GO
  3050. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 17, '     [, @no_output = {''TRUE'' | ''FALSE''}]')
  3051. GO
  3052. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 18, '     [, @no_header = {''TRUE'' | ''FALSE''}]')
  3053. GO
  3054. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 19, '     [, @width = <width>]')
  3055. GO
  3056. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 20, '     [, @separator = <separator>]')
  3057. GO
  3058. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 21, '     [, @echo_error = {''TRUE'' | ''FALSE''}]')
  3059. GO
  3060. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 22, '     [, @set_user = <user>]')
  3061. GO
  3062. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sendmail', 23, '     [, @dbuse = <dbname>]')
  3063. GO
  3064. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 1, 'xp_sprintf Extended Stored Procedure')
  3065. GO
  3066. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 2, 'Formats and stores a series of characters and values in the string')
  3067. GO
  3068. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 3, 'output parameter. Each format argument is replaced with the')
  3069. GO
  3070. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 4, 'corresponding argument.')
  3071. GO
  3072. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 5, '')
  3073. GO
  3074. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sprintf', 6, 'xp_sprintf @<string> OUTPUT, <format> [, <argument>]...')
  3075. GO
  3076. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sscanf', 1, 'xp_sscanf Extended Stored Procedure')
  3077. GO
  3078. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sscanf', 2, 'Reads data from the string into the argument locations given by each')
  3079. GO
  3080. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sscanf', 3, 'format argument.')
  3081. GO
  3082. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sscanf', 4, '')
  3083. GO
  3084. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_sscanf', 5, 'xp_sscanf <string, <format>, [, <argument>]...')
  3085. GO
  3086. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_startmail', 1, 'xp_startmail Extended Stored Procedure')
  3087. GO
  3088. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_startmail', 2, 'Starts a SQL Server mail client session.')
  3089. GO
  3090. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_startmail', 3, '')
  3091. GO
  3092. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_startmail', 4, 'xp_startmail [''<user>''] [, ''<password>'']')
  3093. GO
  3094. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_stopmail', 1, 'xp_stopmail Extended Stored Procedure')
  3095. GO
  3096. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_stopmail', 2, 'Stops a SQL Server mail client session.')
  3097. GO
  3098. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_stopmail', 3, '')
  3099. GO
  3100. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_stopmail', 4, 'xp_stopmail')
  3101. GO
  3102. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_unc_to_drive', 1, 'xp_unc_to_drive Extended Stored Procedure')
  3103. GO
  3104. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_unc_to_drive', 2, 'Converts a UNC path to a local drive.')
  3105. GO
  3106. INSERT master..helpsql(command, ordering, helptext) VALUES ('xp_unc_to_drive', 3, '')
  3107. GO
  3108. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 1, 'sp_addarticle Replication Stored Procedure')
  3109. GO
  3110. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 2, 'Creates an article and adds it to a publication.')
  3111. GO
  3112. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 3, '')
  3113. GO
  3114. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 4, 'sp_addarticle <publication>, <article>, <source_table>')
  3115. GO
  3116. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 5, '     [, <destination_table>] [, <vertical_partition>] [, <type>]')
  3117. GO
  3118. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 6, '     [, <filter>] [, <sync_object>] [, <ins_cmd>] [, <del_cmd>]')
  3119. GO
  3120. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 7, '     [, <upd_cmd>] [, <creation_script>] [, <description>]')
  3121. GO
  3122. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addarticle', 8, '     [, <pre_creation_cmd>] [, <filter_clause>]')
  3123. GO
  3124. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 1, 'sp_addpublication Replication Stored Procedure')
  3125. GO
  3126. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 2, 'Creates a publication.')
  3127. GO
  3128. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 3, '')
  3129. GO
  3130. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 4, 'sp_addpublication <publication>, <taskid>')
  3131. GO
  3132. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 5, '     [, @restricted = {''TRUE'' | ''FALSE''}')
  3133. GO
  3134. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 6, '     [, @sync_method = {''NATIVE'' | ''CHARACTER''}')
  3135. GO
  3136. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 7, '     [, @repl_freq = {''CONTINUOUS'' | ''SNAPSHOT''}')
  3137. GO
  3138. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 8, '     [, @description = ''string description''')
  3139. GO
  3140. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublication', 9, '     [, @status = ''INACTIVE'' | ''ACTIVE'']]]]]')
  3141. GO
  3142. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublisher', 1, 'sp_addpublisher Replication Stored Procedure')
  3143. GO
  3144. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublisher', 2, 'Adds a new publication server.')
  3145. GO
  3146. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublisher', 3, '')
  3147. GO
  3148. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addpublisher', 4, 'sp_addpublisher <publisher> [, ''dist'']')
  3149. GO
  3150. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 1, 'sp_addsubscriber Replication Stored Procedure')
  3151. GO
  3152. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 2, 'Adds a new subscriber server and sets up a trusted remote login')
  3153. GO
  3154. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 3, 'mapping from SA of the subscriber to the')
  3155. GO
  3156. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 4, 'repl_subscriber login ID on the publisher (unless system administrator')
  3157. GO
  3158. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 5, 'on the subscriber is already mapped to system administrator on the')
  3159. GO
  3160. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 6, 'publisher).')
  3161. GO
  3162. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 7, '')
  3163. GO
  3164. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 8, 'sp_addsubscriber <subscriber> [, <type>] [, <login>] [, <password>]')
  3165. GO
  3166. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 9, '      [, <commit_batch_size>] [, <status_batch_size>] [, <flush_frequency>]')
  3167. GO
  3168. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 10, '      [, <frequency_type>] [, <frequency_interval>]')
  3169. GO
  3170. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 11, '      [, <frequency_relative_interval>] [, <frequency_recurrence_factor>]')
  3171. GO
  3172. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 12, '      [, <frequency_subday>] [, <frequency_subday_interval>]')
  3173. GO
  3174. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 13, '      [, <active_start_time_of_day>] [, <active_end_time_of_day>]')
  3175. GO
  3176. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscriber', 14, '      [, <active_start_date>] [, <active_end_date>][,<description>]')
  3177. GO
  3178. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 1, 'sp_addsubscription Replication Stored Procedure')
  3179. GO
  3180. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 2, 'Adds a subscription to an article and sets the subscriber''s status.')
  3181. GO
  3182. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 3, '')
  3183. GO
  3184. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 4, 'sp_addsubscription <publication> [, ''<article>''] , <subscriber>')
  3185. GO
  3186. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 5, '     [, <destination_db>]')
  3187. GO
  3188. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 6, '     [, @sync_type = {''AUTOMATIC'' | ''MANUAL'' | ''NONE'' }]')
  3189. GO
  3190. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsubscription', 7, '     [, @status = {''INACTIVE'' | ''ACTIVE'' | ''SUBSCRIBED'' }]')
  3191. GO
  3192. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 1, 'sp_articlecolumn Replication Stored Procedure')
  3193. GO
  3194. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 2, 'Modifies columns for an article. Use sp_articlecolumn to create vertical')
  3195. GO
  3196. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 3, 'partitions.')
  3197. GO
  3198. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 4, '')
  3199. GO
  3200. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 5, 'sp_articlecolumn <publication>, <article> [, ''<column>''')
  3201. GO
  3202. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlecolumn', 6, '     [, @operation = { ''ADD'' | ''DROP'' }]')
  3203. GO
  3204. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 1, 'sp_articlefilter Replication Stored Procedure')
  3205. GO
  3206. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 2, 'Creates a filter stored procedure used to horizontally partition data')
  3207. GO
  3208. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 3, 'replicated from a published table.')
  3209. GO
  3210. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 4, '')
  3211. GO
  3212. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 5, 'sp_articlefilter <publication>, <article> [, <filter_name>]')
  3213. GO
  3214. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articlefilter', 6, '     [, <filter_clause>]')
  3215. GO
  3216. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articletextcol', 1, 'sp_articletextcol Replication Stored Procedure')
  3217. GO
  3218. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articletextcol', 2, 'Sets the replication column status of a Text\Image column')
  3219. GO
  3220. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articletextcol', 3, '')
  3221. GO
  3222. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articletextcol', 4, 'sp_articletextcol <artid>, <colid>,')
  3223. GO
  3224. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articletextcol', 5, '    <type> = {''PUBLISH'' | ''NONSQLSUB''},  <operation> = { ''ADD'' | ''DROP''}')
  3225. GO
  3226. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 1, 'sp_articleview Replication Stored Procedure')
  3227. GO
  3228. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 2, 'Creates the synchronization object for an article')
  3229. GO
  3230. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 3, 'when a table is filtered vertically and/or horizontally.')
  3231. GO
  3232. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 4, 'This synchronization object is a view that is used as the filtered')
  3233. GO
  3234. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 5, 'source of the schema and data for the destination tables.')
  3235. GO
  3236. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 6, '')
  3237. GO
  3238. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 7, 'sp_articleview <publication>, <article> [, <view_name>]')
  3239. GO
  3240. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_articleview', 8, '     [, <filter_clause>]')
  3241. GO
  3242. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changearticle', 1, 'sp_changearticle Replication Stored Procedure')
  3243. GO
  3244. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changearticle', 2, 'Changes an article''s properties.')
  3245. GO
  3246. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changearticle', 3, '')
  3247. GO
  3248. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changearticle', 4, 'sp_changearticle <publication>, <article> [, <property>, <value>]')
  3249. GO
  3250. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changepublication', 1, 'sp_changepublication Replication Stored Procedure')
  3251. GO
  3252. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changepublication', 2, 'Changes publication properties.')
  3253. GO
  3254. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changepublication', 3, '')
  3255. GO
  3256. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changepublication', 4, 'sp_changepublication <publication> [, <property>, ''<value>'']')
  3257. GO
  3258. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 1, 'sp_changesubscriber Replication Stored Procedure')
  3259. GO
  3260. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 2, 'Changes the options for a subscription server. Any distribution task')
  3261. GO
  3262. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 3, 'for the publisher''s subscribers will be updated.')
  3263. GO
  3264. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 4, '')
  3265. GO
  3266. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 5, 'sp_changesubscriber <subscriber> [, <type> ] [, <login> ] [, <password>]')
  3267. GO
  3268. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 6, '     [, <commit_batch_size> ] [, <status_batch_size> ] [, <flush_frequency>]')
  3269. GO
  3270. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 7, '     [, <frequency_type> ] [, <frequency_interval>]')
  3271. GO
  3272. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 8, '     [, <frequency_relative_interval> ] [, <frequency_recurrence_factor>]')
  3273. GO
  3274. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 9, '     [, <frequency_subday> ] [, <frequency_subday_interval>]')
  3275. GO
  3276. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 10, '     [, <active_start_time_of_day> ] [, <active_end_time_of_day>]')
  3277. GO
  3278. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscriber', 11, '     [, <active_start_date> ] [, <active_end_date>] [, <description>]')
  3279. GO
  3280. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 1, 'sp_changesubscription Replication Stored Procedure')
  3281. GO
  3282. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 2, 'Is executed on a subscription server to change subscription properties')
  3283. GO
  3284. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 3, 'for an article or a publication.')
  3285. GO
  3286. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 4, '')
  3287. GO
  3288. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 5, 'sp_changesubscription <publication>, <article>, <subscriber>')
  3289. GO
  3290. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubscription', 6, '     [, ''<property>'', ''<value>'']')
  3291. GO
  3292. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubstatus', 1, 'sp_changesubstatus Replication Stored Procedure')
  3293. GO
  3294. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubstatus', 2, 'Changes the status of an existing subscriber.')
  3295. GO
  3296. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubstatus', 3, '')
  3297. GO
  3298. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubstatus', 4, 'sp_changesubstatus [<publication> [, <article> [, <subscriber>[,]]]]')
  3299. GO
  3300. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changesubstatus', 5, '     <status> [, previous_status]')
  3301. GO
  3302. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_distribution_tables', 1, 'sp_create_distribution_tables Replication Stored Procedure')
  3303. GO
  3304. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_distribution_tables', 2, 'Creates the tables in the distribution database.')
  3305. GO
  3306. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_distribution_tables', 3, '')
  3307. GO
  3308. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_distribution_tables', 4, 'sp_create_distribution_tables')
  3309. GO
  3310. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_distcounters', 1, 'sp_distcounters Replication Stored Procedure')
  3311. GO
  3312. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_distcounters', 2, 'Displays the latest information for all subscription servers. Used by')
  3313. GO
  3314. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_distcounters', 3, 'SQL Performance Monitor.')
  3315. GO
  3316. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_distcounters', 4, '')
  3317. GO
  3318. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_distcounters', 5, 'sp_distcounters')
  3319. GO
  3320. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droparticle', 1, 'sp_droparticle Replication Stored Procedure')
  3321. GO
  3322. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droparticle', 2, 'Drops an article.')
  3323. GO
  3324. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droparticle', 3, '')
  3325. GO
  3326. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droparticle', 4, 'sp_droparticle <publication>, <article>')
  3327. GO
  3328. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublication', 1, 'sp_droppublication Replication Stored Procedure')
  3329. GO
  3330. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublication', 2, 'Drops a publication and its associated articles.')
  3331. GO
  3332. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublication', 3, '')
  3333. GO
  3334. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublication', 4, 'sp_droppublication <publication>')
  3335. GO
  3336. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublisher', 1, 'sp_droppublisher Replication Stored Procedure')
  3337. GO
  3338. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublisher', 2, 'Drops a publication server.')
  3339. GO
  3340. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublisher', 3, '')
  3341. GO
  3342. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droppublisher', 4, 'sp_droppublisher <publisher> [, dist]')
  3343. GO
  3344. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscriber', 1, 'sp_dropsubscriber Replication Stored Procedure')
  3345. GO
  3346. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscriber', 2, 'Drops a subscription server.')
  3347. GO
  3348. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscriber', 3, '')
  3349. GO
  3350. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscriber', 4, 'sp_dropsubscriber <subscriber>')
  3351. GO
  3352. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscription', 1, 'sp_dropsubscription Replication Stored Procedure')
  3353. GO
  3354. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscription', 2, 'On the publication server, drops subscriptions to a particular article,')
  3355. GO
  3356. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscription', 3, 'publication, or set of subscriptions.')
  3357. GO
  3358. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscription', 4, '')
  3359. GO
  3360. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsubscription', 5, 'sp_dropsubscription ''<publication>'', ''<article>'', ''<subscriber>''')
  3361. GO
  3362. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dsninfo', 1, 'sp_dsninfo Replication Stored Procedure')
  3363. GO
  3364. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dsninfo', 2, 'Returns the information value for a ODBC Data Source Name.')
  3365. GO
  3366. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dsninfo', 3, '')
  3367. GO
  3368. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dsninfo', 4, 'sp_dsninfo dsn [, {infotype | NULL} [, {login | NULL} [, {password | NULL}]]]')
  3369. GO
  3370. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumfullsubscribers', 1, 'sp_enumfullsubscribers Replication Stored Procedure')
  3371. GO
  3372. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumfullsubscribers', 2, 'Returns a list of subscribers who have subscribed to all articles in a')
  3373. GO
  3374. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumfullsubscribers', 3, 'specified publication.')
  3375. GO
  3376. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumfullsubscribers', 4, '')
  3377. GO
  3378. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumfullsubscribers', 5, 'sp_enumfullsubscribers <publication>')
  3379. GO
  3380. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumdsn', 1, 'sp_enumdsn Replication Stored Procedure')
  3381. GO
  3382. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumdsn', 2, 'Provides a list of ODBC Data Source Names accessible to the publisher.')
  3383. GO
  3384. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumdsn', 3, '')
  3385. GO
  3386. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_enumdsn', 4, 'sp_enumdsn')
  3387. GO
  3388. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticle', 1, 'sp_helparticle Replication Stored Procedure')
  3389. GO
  3390. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticle', 2, 'Displays information about an article.')
  3391. GO
  3392. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticle', 3, '')
  3393. GO
  3394. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticle', 4, 'sp_helparticle <publication>[, <article>] [, <returnfilter>]')
  3395. GO
  3396. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticlecolumns', 1, 'sp_helparticlecolumns Replication Stored Procedure')
  3397. GO
  3398. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticlecolumns', 2, 'Displays all columns in the underlying table.')
  3399. GO
  3400. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticlecolumns', 3, '')
  3401. GO
  3402. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helparticlecolumns', 4, 'sp_helparticlecolumns <publication>, <article>')
  3403. GO
  3404. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdistributor', 1, 'sp_helpdistributor Replication Stored Procedure')
  3405. GO
  3406. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdistributor', 2, 'Lists information about the distribution server, distribution database,')
  3407. GO
  3408. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdistributor', 3, 'working directory, and SQL Executive user account.')
  3409. GO
  3410. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdistributor', 4, '')
  3411. GO
  3412. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdistributor', 5, 'sp_helpdistributor')
  3413. GO
  3414. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublication', 1, 'sp_helppublication Replication Stored Procedure')
  3415. GO
  3416. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublication', 2, 'Displays information about a publication.')
  3417. GO
  3418. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublication', 3, '')
  3419. GO
  3420. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublication', 4, 'sp_helppublication [<publication>]')
  3421. GO
  3422. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublicationsync', 1, 'sp_helppublicationsync Replication Stored Procedure')
  3423. GO
  3424. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublicationsync', 2, 'Provides information about a scheduled synchronization task for a')
  3425. GO
  3426. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublicationsync', 3, 'publication.')
  3427. GO
  3428. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublicationsync', 4, '')
  3429. GO
  3430. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helppublicationsync', 5, 'sp_helppublicationsync <publication>')
  3431. GO
  3432. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpreplicationdb', 1, 'sp_helpreplicationdb Replication Stored Procedure')
  3433. GO
  3434. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpreplicationdb', 2, 'Returns information about a specified database or a list of all')
  3435. GO
  3436. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpreplicationdb', 3, 'publication databases on the server.')
  3437. GO
  3438. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpreplicationdb', 4, '')
  3439. GO
  3440. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpreplicationdb', 5, 'sp_helpreplicationdb [<databasename> [, {pub | sub}]]')
  3441. GO
  3442. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 1, 'sp_helpsubscriberinfo Replication Stored Procedure')
  3443. GO
  3444. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 2, 'Displays the following information about a subscription server.')
  3445. GO
  3446. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 3, '')
  3447. GO
  3448. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 4, '     publisher        subscriber        type')
  3449. GO
  3450. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 5, '     login            password        commit_batch_size')
  3451. GO
  3452. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 6, '     flush_frequency    frequency_type    frequency_interval')
  3453. GO
  3454. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 7, '     frequency_recurrence_factor        frequency_subday')
  3455. GO
  3456. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 8, '     frequency_subday_interval        active_start_time_of_day')
  3457. GO
  3458. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 9, '     active_end_time_of_day            active_start_date')
  3459. GO
  3460. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 10, '     active_end_date    retryattempts    retrydelay')
  3461. GO
  3462. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 11, '     description')
  3463. GO
  3464. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 12, '')
  3465. GO
  3466. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscriberinfo', 13, 'sp_helpsubscriberinfo <subscriber>')
  3467. GO
  3468. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscription', 1, 'sp_helpsubscription Replication Stored Procedure')
  3469. GO
  3470. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscription', 2, 'Lists subscription information associated with a particular publication,')
  3471. GO
  3472. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscription', 3, 'article, subscriber, or set of subscriptions.')
  3473. GO
  3474. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscription', 4, '')
  3475. GO
  3476. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsubscription', 5, 'sp_helpsubscription [<publication> [, <article> [, <subscriber> ]]]')
  3477. GO
  3478. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 1, 'sp_MSkill_job Replication Stored Procedure')
  3479. GO
  3480. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 2, 'On the distribution server, removes a single job from the distribution')
  3481. GO
  3482. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 3, 'database while continuing to send all other data to the subscriber.')
  3483. GO
  3484. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 4, '')
  3485. GO
  3486. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 5, 'sp_MSkill_job <job_id>, <publisher>, <publisher_db> [, <subscriber>')
  3487. GO
  3488. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_MSkill_job', 6, '     [, <subscriber_db>]]')
  3489. GO
  3490. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcleanup', 1, 'sp_replcleanup Replication Stored Procedure')
  3491. GO
  3492. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcleanup', 2, 'Removes transactions from the distribution database tables after they')
  3493. GO
  3494. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcleanup', 3, 'have been successfully distributed to the subscriber''s database.')
  3495. GO
  3496. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcleanup', 4, '')
  3497. GO
  3498. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcleanup', 5, 'sp_replcleanup <publisher>, <subscriber>, <retention>')
  3499. GO
  3500. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 1, 'sp_replcmds Replication Stored Procedure')
  3501. GO
  3502. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 2, 'Treats the first client that runs sp_replcmds within a given database as the')
  3503. GO
  3504. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 3, 'logreader. If another client tries to run sp_replcmds it will')
  3505. GO
  3506. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 4, 'receive error 18752, unless the first client has disconnected.')
  3507. GO
  3508. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 5, '')
  3509. GO
  3510. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcmds', 6, 'sp_replcmds [<maxtrans>]')
  3511. GO
  3512. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 1, 'sp_replcounters Replication Stored Procedure')
  3513. GO
  3514. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 2, 'Returns replication statistics about latency, throughput, and')
  3515. GO
  3516. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 3, 'transaction count for each published database. Used by SQL Performance')
  3517. GO
  3518. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 4, 'Monitor.')
  3519. GO
  3520. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 5, '')
  3521. GO
  3522. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replcounters', 6, 'sp_replcounters')
  3523. GO
  3524. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repldone', 1, 'sp_repldone Replication Stored Procedure')
  3525. GO
  3526. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repldone', 2, 'Updates the record that identifies the server''s last distributed')
  3527. GO
  3528. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repldone', 3, 'transaction.')
  3529. GO
  3530. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repldone', 4, '')
  3531. GO
  3532. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repldone', 5, 'sp_repldone <page>, <row> [, <timestamp>] [, <numtrans>] [, <time>] [, <reset>]')
  3533. GO
  3534. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replflush', 1, 'sp_replflush Replication Stored Procedure')
  3535. GO
  3536. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replflush', 2, 'Flushes the article cache.')
  3537. GO
  3538. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replflush', 3, '')
  3539. GO
  3540. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replflush', 4, 'sp_replflush')
  3541. GO
  3542. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replica', 1, 'sp_replica Replication Stored Procedure')
  3543. GO
  3544. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replica', 2, 'Remotely sets on a subscription server a sysobjects category bit that')
  3545. GO
  3546. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replica', 3, 'marks the table as a replica.')
  3547. GO
  3548. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replica', 4, '')
  3549. GO
  3550. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replica', 5, 'sp_replica <tabname>, <replicated>')
  3551. GO
  3552. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replstatus', 1, 'sp_replstatus Replication Stored Procedure')
  3553. GO
  3554. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replstatus', 2, 'Used to update the internal table structure for replication (that')
  3555. GO
  3556. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replstatus', 3, 'indicates whether the table is being replicated).')
  3557. GO
  3558. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replstatus', 4, '')
  3559. GO
  3560. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replstatus', 5, 'sp_replstatus <objectID>, <status>')
  3561. GO
  3562. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replsync', 1, 'sp_replsync Replication Stored Procedure')
  3563. GO
  3564. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replsync', 2, 'Used from a subscription server to acknowledge completion of a manual')
  3565. GO
  3566. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replsync', 3, 'synchronization.')
  3567. GO
  3568. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replsync', 4, '')
  3569. GO
  3570. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_replsync', 5, 'sp_replsync <publisher>, <publisher_db>, <publication> [, <article>]')
  3571. GO
  3572. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 1, 'sp_repltrans Replication Stored Procedure')
  3573. GO
  3574. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 2, 'Returns a result set of all the transactions in the publication database')
  3575. GO
  3576. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 3, 'transaction log that are marked for replication but that have not been')
  3577. GO
  3578. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 4, 'marked as distributed.')
  3579. GO
  3580. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 5, '')
  3581. GO
  3582. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_repltrans', 6, 'sp_repltrans')
  3583. GO
  3584. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_textcolstatus', 1, 'sp_textcolstatus Replication Stored Procedure')
  3585. GO
  3586. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_textcolstatus', 2, 'Checks the replication column status of a Text\Image column')
  3587. GO
  3588. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_textcolstatus', 3, '')
  3589. GO
  3590. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_textcolstatus', 4, 'sp_textcolstatus <artid>, <tabid>, <colid>,')
  3591. GO
  3592. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_textcolstatus', 5, '    <type> = {''PUBLISH'' | ''NONSQLSUB''},  <status> OUTPUT')
  3593. GO
  3594. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 1, 'sp_subscribe Replication Stored Procedure')
  3595. GO
  3596. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 2, 'Remotely adds a subscription to a particular article within a')
  3597. GO
  3598. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 3, 'publication.')
  3599. GO
  3600. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 4, '')
  3601. GO
  3602. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 5, 'sp_subscribe <publication>, [<article> [, <desitination_db>')
  3603. GO
  3604. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_subscribe', 6, '     [, @sync_type = {''AUTOMATIC'' | ''MANUAL'' | ''NONE''}]]]')
  3605. GO
  3606. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_uninstall_publishing', 1, 'sp_uninstall_publishing Replication Stored Procedure')
  3607. GO
  3608. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_uninstall_publishing', 2, 'Drops all subscriptions, articles, publications, subscribers')
  3609. GO
  3610. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_uninstall_publishing', 3, ' and distribution publishers on the server.')
  3611. GO
  3612. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_uninstall_publishing', 4, '')
  3613. GO
  3614. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_uninstall_publishing', 5, 'sp_uninstall_publishing')
  3615. GO
  3616. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 6, 'sp_unsubscribe ''<publication>'', ''<article>''')
  3617. GO
  3618. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 1, 'sp_unsubscribe Replication Stored Procedure')
  3619. GO
  3620. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 2, 'Remotely cancels a subscription to a particular article within a')
  3621. GO
  3622. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 3, 'publication, to a whole publication, or to all publications. It also')
  3623. GO
  3624. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 4, 'removes all pending jobs from the distribution database.')
  3625. GO
  3626. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 5, '')
  3627. GO
  3628. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unsubscribe', 6, 'sp_unsubscribe ''<publication>'', ''<article>''')
  3629. GO
  3630. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 1, 'sp_addalert SQL Executive Stored Procedure')
  3631. GO
  3632. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 2, 'Creates an alert.')
  3633. GO
  3634. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 3, '')
  3635. GO
  3636. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 4, 'sp_addalert <name>, <message_id>, <severity> [, <enabled>]')
  3637. GO
  3638. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 5, '     [, <delay_between_responses>] [, <notification_message>]')
  3639. GO
  3640. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 6, '     [, <include_event_description_in>] [, <database_name>]')
  3641. GO
  3642. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalert', 7, '     [, <event_description_keyword>] [, <task_name>]')
  3643. GO
  3644. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addnotification', 1, 'sp_addnotification SQL Executive Stored Procedure')
  3645. GO
  3646. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addnotification', 2, 'Sets up a notification for an alert.')
  3647. GO
  3648. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addnotification', 3, '')
  3649. GO
  3650. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addnotification', 4, 'sp_addnotification <alert_name>, <operator_name>, <notification_method>')
  3651. GO
  3652. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 1, 'sp_addoperator SQL Executive Stored Procedure')
  3653. GO
  3654. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 2, 'Sets up an operator (notification recipient) for use with alerts.')
  3655. GO
  3656. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 3, '')
  3657. GO
  3658. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 4, 'sp_addoperator <name> [, <enabled>] [, <email_address>]')
  3659. GO
  3660. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 5, '     [, <pager_number>] [, <weekday_pager_start_time>]')
  3661. GO
  3662. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 6, '     [, <weekday_pager_end_time>] [, <saturday_pager_start_time>]')
  3663. GO
  3664. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 7, '     [, <saturday_pager_end_time>] [, <sunday_pager_start_time>]')
  3665. GO
  3666. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addoperator', 8, '     [, <sunday_pager_end_time>] [, <pager_days>]')
  3667. GO
  3668. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 1, 'sp_addtask SQL Executive Stored Procedure')
  3669. GO
  3670. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 2, 'Creates a scheduled task.')
  3671. GO
  3672. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 3, '')
  3673. GO
  3674. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 4, 'sp_addtask <name> [, <subsystem>] [, <server>] [, <username>]')
  3675. GO
  3676. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 5, '     [, <databasename>] [, <enabled>] [, <freqtype>] [, <freqinterval>]')
  3677. GO
  3678. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 6, '     [, <freqsubtype>] [, <freqsubinterval>] [, <freqrelativeinterval>]')
  3679. GO
  3680. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 7, '     [, <freqrecurrencefactor>] [, <activestartdate>] [, <activeenddate>]')
  3681. GO
  3682. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 8, '     [, <activestarttimeofday>] [, <activeendtimeofday>] [, <nextrundate>]')
  3683. GO
  3684. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 9, '     [, <nextruntime>] [, <runpriority>] [, <emailoperatorname>]')
  3685. GO
  3686. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 10, '     [, <retryattempts>] [, <retrydelay>] [, <command>]')
  3687. GO
  3688. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 11, '     [, <loghistcompletionlevel>] [, <emailcompletionlevel>]')
  3689. GO
  3690. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 12, '     [, <description>] [, <tagadditionalinfo>] [, <tagobjectid>]')
  3691. GO
  3692. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtask', 13, '     [, <tagobjecttype>] [, @newid OUTPUT] [,@cmdexecsuccesscode]')
  3693. GO
  3694. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalert', 1, 'sp_dropalert SQL Executive Stored Procedure')
  3695. GO
  3696. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalert', 2, 'Drops an alert.')
  3697. GO
  3698. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalert', 3, '')
  3699. GO
  3700. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalert', 4, 'sp_dropalert <name>')
  3701. GO
  3702. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropnotification', 1, 'sp_dropnotification SQL Executive Stored Procedure')
  3703. GO
  3704. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropnotification', 2, 'Drops a notification for an alert.')
  3705. GO
  3706. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropnotification', 3, '')
  3707. GO
  3708. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropnotification', 4, 'sp_dropnotification <alert_name>, <operator_name>')
  3709. GO
  3710. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropoperator', 1, 'sp_dropoperator SQL Executive Stored Procedure')
  3711. GO
  3712. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropoperator', 2, 'Drops an operator.')
  3713. GO
  3714. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropoperator', 3, '')
  3715. GO
  3716. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropoperator', 4, 'sp_dropoperator <name>')
  3717. GO
  3718. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptask', 1, 'sp_droptask SQL Executive Stored Procedure')
  3719. GO
  3720. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptask', 2, 'Removes a scheduled task.')
  3721. GO
  3722. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptask', 3, '')
  3723. GO
  3724. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptask', 4, 'sp_droptask {<name> | <loginname> | <id>}')
  3725. GO
  3726. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpalert', 1, 'sp_helpalert SQL Executive Stored Procedure')
  3727. GO
  3728. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpalert', 2, 'Reports information about the alerts defined for the server.')
  3729. GO
  3730. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpalert', 3, '')
  3731. GO
  3732. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpalert', 4, 'sp_helpalert [<having_name_like>]')
  3733. GO
  3734. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 1, 'sp_helphistory SQL Executive Stored Procedure')
  3735. GO
  3736. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 2, 'Reports the history of one or more scheduled events, alerts, or tasks.')
  3737. GO
  3738. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 3, 'Some of the information in the systasks table is not displayed to users other')
  3739. GO
  3740. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 4, 'than the system administrator.')
  3741. GO
  3742. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 5, '')
  3743. GO
  3744. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 6, 'sp_helphistory [, <taskname>] [, <taskid>] [, <eventid>] [, <messageid>]')
  3745. GO
  3746. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 7, '     [, <severity>] [, <source>] [, <category>] [, <startdate>]')
  3747. GO
  3748. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 8, '     [, <enddate>] [, <starttime>] [, <endtime>] [, <skipped>]')
  3749. GO
  3750. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helphistory', 9, '     [, oldestfirst] [, <mode>]')
  3751. GO
  3752. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpnotification', 1, 'sp_helpnotification SQL Executive Stored Procedure')
  3753. GO
  3754. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpnotification', 2, 'Reports a list of notifications.')
  3755. GO
  3756. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpnotification', 3, '')
  3757. GO
  3758. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpnotification', 4, 'sp_helpnotification <object_type>, <name>, <enum_type>,')
  3759. GO
  3760. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpnotification', 5, '     <notification_method> [, <target_name>]')
  3761. GO
  3762. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpoperator', 1, 'sp_helpoperator SQL Executive Stored Procedure')
  3763. GO
  3764. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpoperator', 2, 'Reports information about the operators defined for the server.')
  3765. GO
  3766. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpoperator', 3, '')
  3767. GO
  3768. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpoperator', 4, 'sp_helpoperator [<having_name_like>]')
  3769. GO
  3770. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 1, 'sp_helptask SQL Executive Stored Procedure')
  3771. GO
  3772. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 2, 'Provides information about one or more tasks. Some of the information')
  3773. GO
  3774. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 3, 'in the systasks table is not displayed to users other than the system')
  3775. GO
  3776. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 4, 'administrator.')
  3777. GO
  3778. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 5, '')
  3779. GO
  3780. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 6, 'sp_helptask <taskname> [, <taskid>] [, <loginname>] [, <operatorname>]')
  3781. GO
  3782. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptask', 7, '     [, <subsystem>] [, <mode>]')
  3783. GO
  3784. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 1, 'sp_purgehistory SQL Executive Stored Procedure')
  3785. GO
  3786. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 2, 'Removes information from the history log.')
  3787. GO
  3788. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 3, '')
  3789. GO
  3790. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 4, 'sp_purgehistory [<taskname>] [, <taskid>] [, <eventid>] [, <messageid>]')
  3791. GO
  3792. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 5, '     [, <severity>] [, <source>] [, <category>] [, <startdate>]')
  3793. GO
  3794. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_purgehistory', 6, '     [, <enddate>] [, <starttime>] [, <endtime>] [, <skipped>]')
  3795. GO
  3796. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runtask', 1, 'sp_runtask SQL Executive Stored Procedure')
  3797. GO
  3798. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runtask', 2, 'Immediately executes a SQL Executive scheduled task either from a')
  3799. GO
  3800. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runtask', 4, 'command batch or from a user-defined stored procedure.')
  3801. GO
  3802. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runtask', 5, '')
  3803. GO
  3804. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runtask', 6, 'sp_runtask {''<task_name>'' | @task_id=}')
  3805. GO
  3806. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 1, 'sp_updatealert SQL Executive Stored Procedure')
  3807. GO
  3808. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 2, 'Updates information for an existing alert.')
  3809. GO
  3810. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 3, '')
  3811. GO
  3812. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 4, 'sp_updatealert <name> [, <new_name>] [, <enabled>] [, <message_id>]')
  3813. GO
  3814. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 5, '     [, <severity>] [, <delay_between_responses>]')
  3815. GO
  3816. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 6, '     [, <notification_message>] [, <include_event_description_in>]')
  3817. GO
  3818. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 7, '     [, <database_name>] [, <event_description_keyword>]')
  3819. GO
  3820. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 8, '     [, <task_name>] [, <occurrence_count>] [, <count_reset_date>]')
  3821. GO
  3822. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 9, '     [, <count_reset_time>] [, <last_occurrence_date>]')
  3823. GO
  3824. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 10, '     [, <last_occurrence_time>] [, <last_response_date>]')
  3825. GO
  3826. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatealert', 11, '     [, <last_response _time>]')
  3827. GO
  3828. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatenotification', 1, 'sp_updatenotification SQL Executive Stored Procedure')
  3829. GO
  3830. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatenotification', 2, 'Updates the notification method of an alert notification.')
  3831. GO
  3832. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatenotification', 3, '')
  3833. GO
  3834. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatenotification', 4, 'sp_updatenotification <alert_name>, <operator_name>,')
  3835. GO
  3836. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatenotification', 5, '     <notification_method>')
  3837. GO
  3838. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 1, 'sp_updateoperator SQL Executive Stored Procedure')
  3839. GO
  3840. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 2, 'Updates information about an operator.')
  3841. GO
  3842. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 3, '')
  3843. GO
  3844. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 4, 'sp_updateoperator <name> [, <new_name>] [, <enabled>]')
  3845. GO
  3846. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 5, '     [, <email_address>] [, <pager_number>]')
  3847. GO
  3848. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 6, '     [, <weekday_pager_start_time>] [, <weekday_pager_end_time>]')
  3849. GO
  3850. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 7, '     [, <saturday_pager_start_time>] [, <saturday_pager_end_time>]')
  3851. GO
  3852. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 8, '     [, <sunday_pager_start_time>] [, <sunday_pager_end_time>]')
  3853. GO
  3854. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updateoperator', 9, '     [, <pager_days>]')
  3855. GO
  3856. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 1, 'sp_updatetask SQL Executive Stored Procedure')
  3857. GO
  3858. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 2, 'Updates information about a task.')
  3859. GO
  3860. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 3, '')
  3861. GO
  3862. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 4, 'sp_updatetask {<currentname> | <id>} [, <name>] [, <subsystem>]')
  3863. GO
  3864. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 5, '     [, <server>] [, <username>] [, <databasename>] [, <enabled>]')
  3865. GO
  3866. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 6, '     [, <freqtype>] [, <freqinterval>] [, <freqsubtype>]')
  3867. GO
  3868. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 7, '     [, <freqsubinterval>] [, <freqrelativeinterval>]')
  3869. GO
  3870. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 8, '     [, <freqrecurrencefactor>] [, <activestartdate>]')
  3871. GO
  3872. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 9, '     [, <activeenddate>] [, <activestarttimeofday>]')
  3873. GO
  3874. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 10, '     [, <activeendtimeofday>] [, <nextrundate>] [, <nextruntime>]')
  3875. GO
  3876. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 11, '     [, <runpriority>] [, <emailoperatorname>] [, <retryattempts>]')
  3877. GO
  3878. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 12, '     [, <retrydelay>] [, <command>] [, <loghistcompletionlevel>]')
  3879. GO
  3880. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 13, '     [, <emailcompletionlevel>] [, <description>]')
  3881. GO
  3882. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 14, '     [, <tagadditionalinfo>] [, <tagobjectid>] [, <tagobjecttype>]')
  3883. GO
  3884. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_updatetask', 15, '     [,@cmdexecsuccesscode]')
  3885. GO
  3886. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalias', 1, 'sp_addalias System Stored Procedure')
  3887. GO
  3888. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalias', 2, 'Maps one user to another in a database.')
  3889. GO
  3890. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalias', 3, '')
  3891. GO
  3892. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addalias', 4, 'sp_addalias <login_ID>, <username>')
  3893. GO
  3894. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addextendedproc', 1, 'sp_addextendedproc System Stored Procedure')
  3895. GO
  3896. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addextendedproc', 2, 'Registers the name of a new extended stored procedure to SQL Server.')
  3897. GO
  3898. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addextendedproc', 3, '')
  3899. GO
  3900. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addextendedproc', 4, 'sp_addextendedproc <function_name>, <dll_name>')
  3901. GO
  3902. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addgroup', 1, 'sp_addgroup System Stored Procedure')
  3903. GO
  3904. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addgroup', 2, 'Creates a group in the current database.')
  3905. GO
  3906. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addgroup', 3, '')
  3907. GO
  3908. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addgroup', 4, 'sp_addgroup <grpname>')
  3909. GO
  3910. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 1, 'sp_addlogin System Stored Procedure')
  3911. GO
  3912. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 2, 'Creates a new SQL Server user by adding an entry to')
  3913. GO
  3914. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 3, 'master.dbo.syslogins.')
  3915. GO
  3916. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 4, '')
  3917. GO
  3918. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 5, 'sp_addlogin <login_ID> [, <passwd> [, <defdb> [, <deflanguage>')
  3919. GO
  3920. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addlogin', 6, '    [,login_suid]]]]')
  3921. GO
  3922. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addmessage', 1, 'sp_addmessage System Stored Procedure')
  3923. GO
  3924. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addmessage', 2, 'Adds a new error message to the sysmessages table.')
  3925. GO
  3926. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addmessage', 3, '')
  3927. GO
  3928. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addmessage', 4, 'sp_addmessage <msg_id>, <severity>, ''<text of message>''')
  3929. GO
  3930. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addmessage', 5, '          [, <language> [, TRUE | FALSE [, REPLACE]]]')
  3931. GO
  3932. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 1, 'sp_bindsession System Stored Procedure')
  3933. GO
  3934. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 2, 'Binds or unbinds a connection to other connections. A bound')
  3935. GO
  3936. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 3, 'connection allows two or more connections to participate in')
  3937. GO
  3938. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 4, 'the same transaction and share the transaction space until')
  3939. GO
  3940. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 5, 'a ROLLBACK or COMMIT TRANSACTION.')
  3941. GO
  3942. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 6, '')
  3943. GO
  3944. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindsession', 7, 'sp_bindsession {''<bindtoken>'' | ''NULL''}')
  3945. GO
  3946. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addremotelogin', 1, 'sp_addremotelogin System Stored Procedure')
  3947. GO
  3948. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addremotelogin', 2, 'Adds a new remote login ID to master.dbo.sysremotelogins.')
  3949. GO
  3950. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addremotelogin', 3, '')
  3951. GO
  3952. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addremotelogin', 4, 'sp_addremotelogin <remoteserver> [, <login_ID> [, <remotename>]]')
  3953. GO
  3954. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsegment', 1, 'sp_addsegment System Stored Procedure')
  3955. GO
  3956. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsegment', 2, 'Defines a segment on a database device in the current database.')
  3957. GO
  3958. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsegment', 3, '')
  3959. GO
  3960. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addsegment', 4, 'sp_addsegment <segname>, <logical_name>')
  3961. GO
  3962. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addserver', 1, 'sp_addserver System Stored Procedure')
  3963. GO
  3964. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addserver', 2, 'Defines a remote server or the name of the local server.')
  3965. GO
  3966. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addserver', 3, '')
  3967. GO
  3968. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addserver', 4, 'sp_addserver <server_name> [, LOCAL]')
  3969. GO
  3970. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtype', 1, 'sp_addtype System Stored Procedure')
  3971. GO
  3972. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtype', 2, 'Creates a user-defined datatype.')
  3973. GO
  3974. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtype', 3, '')
  3975. GO
  3976. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addtype', 4, 'sp_addtype <typename>, <phystype> [, <nulltype>]')
  3977. GO
  3978. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 1, 'sp_addumpdevice System Stored Procedure')
  3979. GO
  3980. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 2, 'Adds a dump device to SQL Server.')
  3981. GO
  3982. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 3, '')
  3983. GO
  3984. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 4, 'sp_addumpdevice {''disk'' | ''diskette'' | ''tape''}, ''<logical_name>'',')
  3985. GO
  3986. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 5, '     ''<physical_name>'' [, {{<cntrltype> [, noskip | skip')
  3987. GO
  3988. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 6, '     [, <media_capacity>]]} |')
  3989. GO
  3990. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_addumpdevice', 7, '     {@devstatus = {noskip | skip}}}]')
  3991. GO
  3992. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_adduser', 1, 'sp_adduser System Stored Procedure')
  3993. GO
  3994. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_adduser', 2, 'Adds a new user to the current database.')
  3995. GO
  3996. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_adduser', 3, '')
  3997. GO
  3998. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_adduser', 4, 'sp_adduser <login_ID> [, <username> [, <grpname>]]')
  3999. GO
  4000. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_altermessage', 1, 'sp_altermessage System Stored Procedure')
  4001. GO
  4002. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_altermessage', 2, 'Alters the state of a sysmessages error.')
  4003. GO
  4004. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_altermessage', 3, '')
  4005. GO
  4006. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_altermessage', 4, 'sp_altermessage <message_id>, WITH_LOG, {TRUE | FALSE}')
  4007. GO
  4008. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindefault', 1, 'sp_bindefault System Stored Procedure')
  4009. GO
  4010. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindefault', 2, 'Binds a default to a column or to a user-defined datatype.')
  4011. GO
  4012. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindefault', 3, '')
  4013. GO
  4014. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindefault', 4, 'sp_bindefault <defname>, <objname> [, FUTUREONLY]')
  4015. GO
  4016. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindrule', 1, 'sp_bindrule System Stored Procedure')
  4017. GO
  4018. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindrule', 2, 'Binds a rule to a column or to a user-defined datatype.')
  4019. GO
  4020. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindrule', 3, '')
  4021. GO
  4022. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_bindrule', 4, 'sp_bindrule <rulename>, <objname> [, FUTUREONLY]')
  4023. GO
  4024. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 1, 'sp_certify_removable System Stored Procedure')
  4025. GO
  4026. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 2, 'Verifies that a database is configured properly for distribution on')
  4027. GO
  4028. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 3, 'removable media. This procedure writes verification information to a')
  4029. GO
  4030. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 4, 'text file in the \LOG directory. The file is named according to the')
  4031. GO
  4032. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 5, 'following format:  CertifyR_[<dbname>].txt')
  4033. GO
  4034. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 6, '')
  4035. GO
  4036. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_certify_removable', 7, 'sp_certify_removable <dbname>[, AUTO]')
  4037. GO
  4038. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changedbowner', 1, 'sp_changedbowner System Stored Procedure')
  4039. GO
  4040. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changedbowner', 2, 'Changes the owner of a database.')
  4041. GO
  4042. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changedbowner', 3, '')
  4043. GO
  4044. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changedbowner', 4, 'sp_changedbowner <login_ID> [, TRUE]')
  4045. GO
  4046. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changegroup', 1, 'sp_changegroup System Stored Procedure')
  4047. GO
  4048. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changegroup', 2, 'Changes a user''s group.')
  4049. GO
  4050. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changegroup', 3, '')
  4051. GO
  4052. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_changegroup', 4, 'sp_changegroup <grpname>, <username>')
  4053. GO
  4054. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 1, 'sp_change_users_logins System Stored Procedure')
  4055. GO
  4056. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 2, 'Reestablishes foreign key relationships from the syslogins to sysusers')
  4057. GO
  4058. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 3, 'and sysalternates tables in cases where cross-server DUMP or LOAD')
  4059. GO
  4060. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 4, 'database activity has broken these relationships. Without reestablishing')
  4061. GO
  4062. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 5, 'relationships, orphan users may exist. It is suggested that you use this')
  4063. GO
  4064. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 6, 'stored procedure after running the LOAD DATABASE statement because')
  4065. GO
  4066. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 7, 'sp_change_users_login eliminates the need for manual updates for aliases or')
  4067. GO
  4068. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 8, 'alternate usernames.')
  4069. GO
  4070. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 9, '')
  4071. GO
  4072. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 10, 'sp_change_users_login {Auto_Fix | Report | Update_One} [,<usernameorpattern>')
  4073. GO
  4074. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_change_users_logins', 11, '    [,<loginname>]]')
  4075. GO
  4076. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 1, 'sp_configure System Stored Procedure')
  4077. GO
  4078. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 2, 'Displays or changes configuration options. The following options can be modified')
  4079. GO
  4080. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 3, 'using sp_configure.')
  4081. GO
  4082. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 4, '    affinity mask        [0-2147483647]        allow updates         [0-1]')
  4083. GO
  4084. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 5, '    backup buffer size       [1-10]            backup threads         [0-32]')
  4085. GO
  4086. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 6, '    cursor threshold        [-1-2147483647]        database size         [2-10000]')
  4087. GO
  4088. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 7, '    default language         [0-9999]        default sortorder id     [0-255]')
  4089. GO
  4090. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 8, '    fill factor           [[0-100]        free buffers         [20-524288]')
  4091. GO
  4092. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 9, '    hash buckets        [4999-265003]        language in cache     [3-100]')
  4093. GO
  4094. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 10, '    LE threshold maximum    [2-500000]        LE threshold minimum     [2-500000]')
  4095. GO
  4096. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 11, '    LE threshold percent    [1-100]            locks             [5000-2147483647]')
  4097. GO
  4098. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 12, '    logwrite sleep (ms)        [-1-500]        max async IO         [1-255]')
  4099. GO
  4100. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 13, '    max laywrite IO        [1-255]            max text repl size    [0-2147483647]')
  4101. GO
  4102. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 14, '    max worker threads     [10-1024]        media retention        [0-365]')
  4103. GO
  4104. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 15, '    memory             [1000-1048576]        nested triggers        [0-1]    ')
  4105. GO
  4106. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 16, '    network packet size     [512-32767]        open databases         [5-32767]')
  4107. GO
  4108. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 17, '    open objects         [100-2147483647]     priority boost        [0-1]')
  4109. GO
  4110. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 18, '    procedure cache     [1-99]            RA cache hit limit        [1-255]        ')
  4111. GO
  4112. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 19, '    RA cache miss limit    [1-255]         RA delay        [0-500]    ')
  4113. GO
  4114. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 20, '    RA pre-fetches       [1-1000]        RA slots per thread     [1-255]    ')
  4115. GO
  4116. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 21, '    RA worker threads       [0-255]            recovery flags         [0-1]            ')
  4117. GO
  4118. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 22, '    recovery interval      [1-32767]        remote access         [[0-1]        ')
  4119. GO
  4120. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 23, '    remote conn timeout        [-1-32767]        remote login timeout     [0-2147483647]    ')
  4121. GO
  4122. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 24, '    remote proc trans       [0-1]            remote query timeout     [0-2147483647]    ')
  4123. GO
  4124. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 25, '    remote sites        [0-256]            resource timeout        [5-2147483647]    ')
  4125. GO
  4126. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 26, '    set working set size      [0-1]           show advanced options     [0-1]    ')
  4127. GO
  4128. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 27, '    SMP concurrency        [-1-64]            sort pages         [64-611]')
  4129. GO
  4130. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 28, '    spin counter         [1-2147483647]      tempdb in ram(MB)      [0-2044]')
  4131. GO
  4132. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 29, '    time slice            [50-1000]        user connections    [5-32767]')
  4133. GO
  4134. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 30, '    user options        [0-4095]')
  4135. GO
  4136. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 31, '    ')
  4137. GO
  4138. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_configure', 32, 'sp_configure [''<config_name>'' [, <config_value>]]')
  4139. GO
  4140. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_coalesce_fragments', 1, 'sp_coalesce_fragments System Stored Procedure')
  4141. GO
  4142. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_coalesce_fragments', 2, 'Deletes and updates rows in the sysusages system table and merges contiguous')
  4143. GO
  4144. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_coalesce_fragments', 3, 'fragments from the same segment and database.')
  4145. GO
  4146. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_coalesce_fragments', 4, '')
  4147. GO
  4148. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_coalesce_fragments', 5, 'sp_coalesce_fragments')
  4149. GO
  4150. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 1, 'sp_create_removable System Stored Procedure')
  4151. GO
  4152. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 2, 'Creates a removable media database.')
  4153. GO
  4154. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 3, '')
  4155. GO
  4156. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 4, 'sp_create_removable <dbname>, <syslogical>, ''<sysphysical>'', <syssize>,')
  4157. GO
  4158. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 5, '     <loglogical>, ''<logphysical>'', <logsize>, <datalogical1>,')
  4159. GO
  4160. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 6, '     ''<dataphysical1>'', <datasize1> [... , <datalogical16>,')
  4161. GO
  4162. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_create_removable', 7, '     ''<dataphysical16>'', <datasize16>]')
  4163. GO
  4164. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbinstall', 1, 'sp_dbinstall System Stored Procedure')
  4165. GO
  4166. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbinstall', 2, 'Installs a database and its devices.')
  4167. GO
  4168. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbinstall', 3, '')
  4169. GO
  4170. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbinstall', 4, 'sp_dbinstall <database>, <logical_dev_name>, ''<physical_dev_name>'',')
  4171. GO
  4172. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbinstall', 5, '     <size>, ''<devtype>'' [,''<location>'']')
  4173. GO
  4174. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dboption', 1, 'sp_dboption System Stored Procedure')
  4175. GO
  4176. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dboption', 2, 'Displays or changes database options.')
  4177. GO
  4178. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dboption', 3, '')
  4179. GO
  4180. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dboption', 4, 'sp_dboption [<dbname>, ''<optname>''] [,{TRUE | FALSE}]')
  4181. GO
  4182. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbremove', 1, 'sp_dbremove System Stored Procedure')
  4183. GO
  4184. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbremove', 2, 'Used to remove an installed database, and optionally, any devices to')
  4185. GO
  4186. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbremove', 3, 'which it has exclusive use.')
  4187. GO
  4188. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbremove', 4, '')
  4189. GO
  4190. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dbremove', 5, 'sp_dbremove <database>[, dropdev]')
  4191. GO
  4192. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultdb', 1, 'sp_defaultdb System Stored Procedure')
  4193. GO
  4194. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultdb', 2, 'Changes a user''s default database.')
  4195. GO
  4196. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultdb', 3, '')
  4197. GO
  4198. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultdb', 4, 'sp_defaultdb <login_ID>, <defdb>')
  4199. GO
  4200. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultlanguage', 1, 'sp_defaultlanguage System Stored Procedure')
  4201. GO
  4202. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultlanguage', 2, 'Changes a user''s default language.')
  4203. GO
  4204. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultlanguage', 3, '')
  4205. GO
  4206. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_defaultlanguage', 4, 'sp_defaultlanguage <login_ID> [, <language>]')
  4207. GO
  4208. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 1, 'sp_depends System Stored Procedure')
  4209. GO
  4210. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 2, 'Displays information about database object dependencies - the views and')
  4211. GO
  4212. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 3, 'procedures that depend on the specified table or view, and the tables')
  4213. GO
  4214. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 4, 'and views that are depended on by the specified view or procedure.')
  4215. GO
  4216. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 5, '')
  4217. GO
  4218. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_depends', 6, 'sp_depends <objname>')
  4219. GO
  4220. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_devoption', 1, 'sp_devoption System Stored Procedure')
  4221. GO
  4222. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_devoption', 2, 'Displays or sets device status. Although primarily used on removable')
  4223. GO
  4224. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_devoption', 3, 'media devices, this procedure can be used for all devices.')
  4225. GO
  4226. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_devoption', 4, '')
  4227. GO
  4228. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_devoption', 5, 'sp_devoption [<devicename> [, <optname> {, TRUE | FALSE} [, OVERRIDE]]]')
  4229. GO
  4230. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 1, 'sp_diskdefault System Stored Procedure')
  4231. GO
  4232. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 2, 'Sets a database device''s status to indicate whether the device can be')
  4233. GO
  4234. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 3, 'used for database storage when the user does not specify a database')
  4235. GO
  4236. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 4, 'device or specifies DEFAULT with the CREATE DATABASE or ALTER DATABASE')
  4237. GO
  4238. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 5, 'statements.')
  4239. GO
  4240. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 6, '')
  4241. GO
  4242. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_diskdefault', 7, 'sp_diskdefault <database_device>, {defaulton | defaultoff}')
  4243. GO
  4244. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalias', 1, 'sp_dropalias System Stored Procedure')
  4245. GO
  4246. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalias', 2, 'Removes the alias login ID identity that had been established by')
  4247. GO
  4248. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalias', 3, 'sp_addalias.')
  4249. GO
  4250. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalias', 4, '')
  4251. GO
  4252. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropalias', 5, 'sp_dropalias <login_ID>')
  4253. GO
  4254. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropdevice', 1, 'sp_dropdevice System Stored Procedure')
  4255. GO
  4256. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropdevice', 2, 'Removes a SQL Server database device or dump device.')
  4257. GO
  4258. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropdevice', 3, '')
  4259. GO
  4260. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropdevice', 4, 'sp_dropdevice <logical_name> [, DELFILE]')
  4261. GO
  4262. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropextendedproc', 1, 'sp_dropextendedproc System Stored Procedure')
  4263. GO
  4264. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropextendedproc', 2, 'Drops an extended stored procedure.')
  4265. GO
  4266. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropextendedproc', 3, '')
  4267. GO
  4268. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropextendedproc', 4, 'sp_dropextendedproc <function_name>')
  4269. GO
  4270. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropgroup', 1, 'sp_dropgroup System Stored Procedure')
  4271. GO
  4272. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropgroup', 2, 'Removes a group from a database.')
  4273. GO
  4274. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropgroup', 3, '')
  4275. GO
  4276. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropgroup', 4, 'sp_dropgroup <grpname>')
  4277. GO
  4278. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplanguage', 1, 'sp_droplanguage System Stored Procedure')
  4279. GO
  4280. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplanguage', 2, 'Drops an alternate language from the server and removes its row from')
  4281. GO
  4282. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplanguage', 3, 'master.dbo.syslogins.')
  4283. GO
  4284. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplanguage', 4, '')
  4285. GO
  4286. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplanguage', 5, 'sp_droplanguage <language> [, dropmessages]')
  4287. GO
  4288. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplogin', 1, 'sp_droplogin System Stored Procedure')
  4289. GO
  4290. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplogin', 2, 'Removes a SQL Server login ID by deleting the user''s entry in')
  4291. GO
  4292. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplogin', 3, 'master.dbo.syslogins.')
  4293. GO
  4294. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplogin', 4, '')
  4295. GO
  4296. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droplogin', 5, 'sp_droplogin <login_ID>')
  4297. GO
  4298. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropmessage', 1, 'sp_dropmessage System Stored Procedure')
  4299. GO
  4300. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropmessage', 2, 'Drops a specified error message from the sysmessages system table.')
  4301. GO
  4302. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropmessage', 3, '')
  4303. GO
  4304. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropmessage', 4, 'sp_dropmessage <msg_id>, [<language> | ''ALL'' ]')
  4305. GO
  4306. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropremotelogin', 1, 'sp_dropremotelogin System Stored Procedure')
  4307. GO
  4308. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropremotelogin', 2, 'Removes a remote user login.')
  4309. GO
  4310. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropremotelogin', 3, '')
  4311. GO
  4312. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropremotelogin', 4, 'sp_dropremotelogin <remoteserver> [, <loginame> [, <remotename>]]')
  4313. GO
  4314. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsegment', 1, 'sp_dropsegment System Stored Procedure')
  4315. GO
  4316. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsegment', 2, 'Drops a segment from a database or unmaps a segment from a database device.')
  4317. GO
  4318. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsegment', 3, '')
  4319. GO
  4320. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropsegment', 4, 'sp_dropsegment <segname> [, <logical_name>]')
  4321. GO
  4322. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropserver', 1, 'sp_dropserver System Stored Procedure')
  4323. GO
  4324. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropserver', 2, 'Drops a server from the list of known servers, deleting the entry from')
  4325. GO
  4326. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropserver', 3, 'the master.dbo.sysservers table.')
  4327. GO
  4328. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropserver', 4, '')
  4329. GO
  4330. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropserver', 5, 'sp_dropserver <server_name> [, droplogins]')
  4331. GO
  4332. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptype', 1, 'sp_droptype System Stored Procedure')
  4333. GO
  4334. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptype', 2, 'Deletes a user-defined datatype from systypes.')
  4335. GO
  4336. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptype', 3, '')
  4337. GO
  4338. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_droptype', 4, 'sp_droptype <typename>')
  4339. GO
  4340. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropuser', 1, 'sp_dropuser System Stored Procedure')
  4341. GO
  4342. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropuser', 2, 'Removes a user from the current database by deleting the entry from the')
  4343. GO
  4344. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropuser', 3, 'current database''s sysusers table.')
  4345. GO
  4346. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropuser', 4, '')
  4347. GO
  4348. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropuser', 5, 'sp_dropuser <username>')
  4349. GO
  4350. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_extendsegment', 1, 'sp_extendsegment System Stored Procedure')
  4351. GO
  4352. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_extendsegment', 2, 'Extends the range of a segment to another database device.')
  4353. GO
  4354. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_extendsegment', 3, '')
  4355. GO
  4356. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_extendsegment', 4, 'sp_extendsegment <segname>, <logical_name>')
  4357. GO
  4358. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_activate_svr_db', 1, 'sp_fallback_activate_svr_db System Stored Procedure')
  4359. GO
  4360. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_activate_svr_db', 2, 'Activates fallback support for the specified fallback')
  4361. GO
  4362. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_activate_svr_db', 3, 'enrolled databases for a primary server.')
  4363. GO
  4364. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_activate_svr_db', 4, '')
  4365. GO
  4366. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_activate_svr_db', 5, 'sp_fallback_activate_svr_db [<primary_svr_name>] [, <database>]')
  4367. GO
  4368. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 1, 'sp_fallback_deactivate_svr_db System Stored Procedure')
  4369. GO
  4370. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 2, 'Deactivates fallback suppport for the specified')
  4371. GO
  4372. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 3, 'activated databases on a primary server. Deactivation')
  4373. GO
  4374. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 4, 'leaves the databases enrolled.')
  4375. GO
  4376. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 5, '')
  4377. GO
  4378. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_deactivate_svr_db', 6, 'sp_fallback_deactivate_svr_db [<primary_server_name>] [,<database>]')
  4379. GO
  4380. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_enroll_svr_db', 1, 'sp_fallback_enroll_svr_db System Stored Procedure')
  4381. GO
  4382. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_enroll_svr_db', 2, 'Enrolls a primary server''s database into the staging tables of a fallback')
  4383. GO
  4384. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_enroll_svr_db', 3, 'server, which prepares the server for future fallback support activation.')
  4385. GO
  4386. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_enroll_svr_db', 4, '')
  4387. GO
  4388. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_enroll_svr_db', 5, 'sp_fallback_enroll_svr_db {<fallback_svr_name>, <database>}')
  4389. GO
  4390. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_help', 1, 'sp_fallback_help System Stored Procedure')
  4391. GO
  4392. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_help', 2, 'Reports about enrollments and activations for fallback support and provides')
  4393. GO
  4394. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_help', 3, 'integrity checking.')
  4395. GO
  4396. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_help', 4, '')
  4397. GO
  4398. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_help', 5, 'sp_fallback_help [<primary_svr_name>]')
  4399. GO
  4400. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_permanent_svr', 1, 'sp_fallback_permanent_svr System Stored Procedure')
  4401. GO
  4402. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_permanent_svr', 2, 'Establishes the local fallback support server as the sole owner of')
  4403. GO
  4404. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_permanent_svr', 3, 'the active databases for an obsolete primary server.')
  4405. GO
  4406. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_permanent_svr', 4, '')
  4407. GO
  4408. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_permanent_svr', 5, 'sp_fallback_permanent_svr {''<primary_server_name>'',1}')
  4409. GO
  4410. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_upd_dev_drive', 1, 'sp_fallback_upd_dev_drive System Stored Procedure')
  4411. GO
  4412. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_upd_dev_drive', 2, 'Creates cross references to the drive letters used by the primary and')
  4413. GO
  4414. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_upd_dev_drive', 3, 'fallback support servers so both servers refer to the same physical drive.')
  4415. GO
  4416. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_upd_dev_drive', 4, '')
  4417. GO
  4418. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_upd_dev_drive', 5, 'sp_fallback_upd_dev_drive {''<primary_server_name>'', ''<primary_drive>'', ''<fallbac')
  4419. GO
  4420. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_withdraw_svr_db', 1, 'sp_fallback_withdraw_svr_db System Stored Procedure')
  4421. GO
  4422. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_withdraw_svr_db', 2, 'Erases the enrollment of inactive databases for a primary server.')
  4423. GO
  4424. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_withdraw_svr_db', 3, '')
  4425. GO
  4426. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_fallback_withdraw_svr_db', 4, 'sp_fallback_withdraw_svr_db {''<primary_server_name>'' [,<database>]}')
  4427. GO
  4428. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 1, 'sp_getbindtoken System Stored Procedure')
  4429. GO
  4430. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 2, 'Creates a bound connection context and returns a unique')
  4431. GO
  4432. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 3, 'identifier for the created context. This unique identifier')
  4433. GO
  4434. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 4, 'is referred to as a bind token. This system stored procedure')
  4435. GO
  4436. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 5, 'returns a string representation to use as a token for a')
  4437. GO
  4438. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 6, 'shared transaction between two clients.')
  4439. GO
  4440. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 3, '')
  4441. GO
  4442. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_getbindtoken', 6, 'sp_getbindtoken <return_value> OUTPUT [,@<for_xp_flag>]')
  4443. GO
  4444. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplogins', 1, 'sp_helplogins System Stored Procedure')
  4445. GO
  4446. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplogins', 2, 'Provides informaton about current logins and associated users.')
  4447. GO
  4448. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplogins', 3, '')
  4449. GO
  4450. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplogins', 4, 'sp_helplogins [<login_name>]')
  4451. GO
  4452. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 1, 'sp_help System Stored Procedure')
  4453. GO
  4454. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 2, 'Reports information about a database object (any object listed in the')
  4455. GO
  4456. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 3, 'sysobjects table) or about a SQL Server - supplied or user-defined')
  4457. GO
  4458. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 4, 'datatype.')
  4459. GO
  4460. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 5, '')
  4461. GO
  4462. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_help', 6, 'sp_help [<objname>]')
  4463. GO
  4464. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpconstraint', 1, 'sp_helpconstraint System Stored Procedure')
  4465. GO
  4466. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpconstraint', 2, 'Returns a list of all constraint types, their user-defined or system-')
  4467. GO
  4468. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpconstraint', 3, 'supplied name, and the columns on which they have been defined.')
  4469. GO
  4470. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpconstraint', 4, '')
  4471. GO
  4472. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpconstraint', 5, 'sp_helpconstraint <table_name>')
  4473. GO
  4474. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdb', 1, 'sp_helpdb System Stored Procedure')
  4475. GO
  4476. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdb', 2, 'Reports information about a specified database or all databases.')
  4477. GO
  4478. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdb', 3, '')
  4479. GO
  4480. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdb', 4, 'sp_helpdb [<dbname>]')
  4481. GO
  4482. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdevice', 1, 'sp_helpdevice System Stored Procedure')
  4483. GO
  4484. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdevice', 2, 'Reports information about SQL Server database devices and dump devices.')
  4485. GO
  4486. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdevice', 3, '')
  4487. GO
  4488. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpdevice', 4, 'sp_helpdevice [<logical_name>]')
  4489. GO
  4490. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpextendedproc', 1, 'sp_helpextendedproc System Stored Procedure')
  4491. GO
  4492. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpextendedproc', 2, 'Displays the currently defined extended stored procedures and the name')
  4493. GO
  4494. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpextendedproc', 3, 'of the dynamic-link library to which the function belongs.')
  4495. GO
  4496. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpextendedproc', 4, '')
  4497. GO
  4498. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpextendedproc', 5, 'sp_helpextendedproc [<function_name>]')
  4499. GO
  4500. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpgroup', 1, 'sp_helpgroup System Stored Procedure')
  4501. GO
  4502. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpgroup', 2, 'Reports information about a group or all groups in the current database.')
  4503. GO
  4504. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpgroup', 3, '')
  4505. GO
  4506. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpgroup', 4, 'sp_helpgroup [<grpname>]')
  4507. GO
  4508. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpindex', 1, 'sp_helpindex System Stored Procedure')
  4509. GO
  4510. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpindex', 2, 'Reports information about the indexes on a table.')
  4511. GO
  4512. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpindex', 3, '')
  4513. GO
  4514. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpindex', 4, 'sp_helpindex <tabname>')
  4515. GO
  4516. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplanguage', 1, 'sp_helplanguage System Stored Procedure')
  4517. GO
  4518. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplanguage', 2, 'Reports information about a particular alternate language or about all')
  4519. GO
  4520. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplanguage', 3, 'languages.')
  4521. GO
  4522. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplanguage', 4, '')
  4523. GO
  4524. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplanguage', 5, 'sp_helplanguage [<language>]')
  4525. GO
  4526. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplog', 1, 'sp_helplog System Stored Procedure')
  4527. GO
  4528. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplog', 2, 'Reports the name of the device that contains the first page of the log')
  4529. GO
  4530. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplog', 3, 'in the current database.')
  4531. GO
  4532. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplog', 4, '')
  4533. GO
  4534. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplog', 5, 'sp_helplog')
  4535. GO
  4536. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpremotelogin', 1, 'sp_helpremotelogin System Stored Procedure')
  4537. GO
  4538. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpremotelogin', 2, 'Reports information about a particular remote server''s logins or about')
  4539. GO
  4540. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpremotelogin', 3, 'all remote servers'' logins.')
  4541. GO
  4542. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpremotelogin', 4, '')
  4543. GO
  4544. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpremotelogin', 5, 'sp_helpremotelogin [<remoteserver> [, <remotename>]]')
  4545. GO
  4546. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 1, 'sp_helprotect System Stored Procedure')
  4547. GO
  4548. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 2, 'Reports permissions by database object for specific grantee, grantor or')
  4549. GO
  4550. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 3, 'permissions.')
  4551. GO
  4552. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 4, '')
  4553. GO
  4554. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 5, 'sp_helprotect [<object_or_statement_name> [, <grantee_name> [, <grantor_name>')
  4555. GO
  4556. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprotect', 6, '        [, <permissions]]]]')
  4557. GO
  4558. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsegment', 1, 'sp_helpsegment System Stored Procedure')
  4559. GO
  4560. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsegment', 2, 'Reports information about a particular segment or about all segments in')
  4561. GO
  4562. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsegment', 3, 'the current database.')
  4563. GO
  4564. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsegment', 4, '')
  4565. GO
  4566. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsegment', 5, 'sp_helpsegment [<segname>]')
  4567. GO
  4568. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpserver', 1, 'sp_helpserver System Stored Procedure')
  4569. GO
  4570. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpserver', 2, 'Provides the server name, the server''s network name, the server''s replication')
  4571. GO
  4572. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpserver', 3, 'status, and the server''s identification number.')
  4573. GO
  4574. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpserver', 4, '')
  4575. GO
  4576. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpserver', 5, 'sp_helpserver [<server_name>]')
  4577. GO
  4578. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsort', 1, 'sp_helpsort System Stored Procedure')
  4579. GO
  4580. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsort', 2, 'Displays the SQL Server default sort order and character set.')
  4581. GO
  4582. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsort', 3, '')
  4583. GO
  4584. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsort', 4, 'sp_helpsort')
  4585. GO
  4586. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsql', 1, 'sp_helpsql System Stored Procedure')
  4587. GO
  4588. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsql', 2, 'Provides syntax for Transact-SQL statements, system procedures,')
  4589. GO
  4590. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsql', 3, 'and other special topics.')
  4591. GO
  4592. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsql', 4, '')
  4593. GO
  4594. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpsql', 5, 'sp_helpsql [''<topic>'']')
  4595. GO
  4596. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprevdatabase', 1, 'sp_helprevdatabase System Stored Procedure')
  4597. GO
  4598. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprevdatabase', 2, 'Analyzes an existing database and creates a script that can')
  4599. GO
  4600. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprevdatabase', 3, 'be used to replicate the database structure on another server.')
  4601. GO
  4602. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprevdatabase', 4, '')
  4603. GO
  4604. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helprevdatabase', 5, 'sp_helprevdatabase [<database>]')
  4605. GO
  4606. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpstartup', 1, 'sp_helpstartup System Stored Procedure')
  4607. GO
  4608. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpstartup', 2, 'Reports a listing of all auto-start stored procedures.')
  4609. GO
  4610. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpstartup', 3, '')
  4611. GO
  4612. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpstartup', 4, 'sp_helpstartup')
  4613. GO
  4614. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptext', 1, 'sp_helptext System Stored Procedure')
  4615. GO
  4616. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptext', 2, 'Prints the text of a rule, a default, or an unencrypted stored')
  4617. GO
  4618. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptext', 3, 'procedure, trigger, or view.')
  4619. GO
  4620. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptext', 4, '')
  4621. GO
  4622. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helptext', 5, 'sp_helptext <objname>')
  4623. GO
  4624. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpuser', 1, 'sp_helpuser System Stored Procedure')
  4625. GO
  4626. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpuser', 2, 'Reports information about the users of a database.')
  4627. GO
  4628. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpuser', 3, '')
  4629. GO
  4630. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helpuser', 4, 'sp_helpuser [<username>]')
  4631. GO
  4632. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplock', 1, 'sp_lock System Stored Procedure')
  4633. GO
  4634. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplock', 2, 'Reports information about locks.')
  4635. GO
  4636. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplock', 3, '')
  4637. GO
  4638. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_helplock', 4, 'sp_lock [<spid1> [, <spid2>]]')
  4639. GO
  4640. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_logdevice', 1, 'sp_logdevice System Stored Procedure')
  4641. GO
  4642. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_logdevice', 2, 'Puts the syslogs system table, which contains the transaction log, on a')
  4643. GO
  4644. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_logdevice', 3, 'separate database device.')
  4645. GO
  4646. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_logdevice', 4, '')
  4647. GO
  4648. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_logdevice', 5, 'sp_logdevice <dbname>, <database_device>')
  4649. GO
  4650. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makestartup', 1, 'sp_makestartup System Stored Procedure')
  4651. GO
  4652. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makestartup', 2, 'Sets a stored procedure for auto execution. Auto execution stored')
  4653. GO
  4654. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makestartup', 3, 'procedures are executed every time the server is started.')
  4655. GO
  4656. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makestartup', 4, '')
  4657. GO
  4658. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makestartup', 5, 'sp_makestartup <procedure_name>')
  4659. GO
  4660. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_monitor', 1, 'sp_monitor System Stored Procedure')
  4661. GO
  4662. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_monitor', 2, 'Displays statistics about SQL Server.')
  4663. GO
  4664. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_monitor', 3, '')
  4665. GO
  4666. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_monitor', 4, 'sp_monitor')
  4667. GO
  4668. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_password', 1, 'sp_password System Stored Procedure')
  4669. GO
  4670. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_password', 2, 'Adds or changes a password for a SQL Server login ID.')
  4671. GO
  4672. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_password', 3, '')
  4673. GO
  4674. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_password', 4, 'sp_password <old>, <new> [, <login_ID>]')
  4675. GO
  4676. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_placeobject', 1, 'sp_placeobject System Stored Procedure')
  4677. GO
  4678. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_placeobject', 2, 'Puts future space allocations for a table or index on a particular')
  4679. GO
  4680. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_placeobject', 3, 'segment.')
  4681. GO
  4682. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_placeobject', 4, '')
  4683. GO
  4684. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_placeobject', 5, 'sp_placeobject <segname>, <objname>')
  4685. GO
  4686. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 1, 'sp_processmail System Stored Procedure')
  4687. GO
  4688. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 2, 'Uses extended stored procedures (xp_findnextmsg, xp_readmail, and')
  4689. GO
  4690. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 3, 'xp_deletemail) to process incoming mail messages (expected to be only a')
  4691. GO
  4692. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 4, 'single query) from the inbox for SQL Server. It uses the xp_sendmail')
  4693. GO
  4694. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 5, 'extended stored procedure to return the results set back to the message')
  4695. GO
  4696. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 6, 'sender.')
  4697. GO
  4698. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 7, '')
  4699. GO
  4700. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 8, 'sp_processmail [@subject = <subject>] [[,] @filetype = <filetype>]')
  4701. GO
  4702. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 9, '     [[,] @separator = <separator>] [[,] @set_user = <user>]')
  4703. GO
  4704. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_processmail', 10, '     [[,] @dbuse = <dbname>]')
  4705. GO
  4706. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 1, 'sp_recompile System Stored Procedure')
  4707. GO
  4708. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 2, 'Causes each stored procedure and trigger that uses the specified table')
  4709. GO
  4710. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 3, 'to be recompiled the next time the stored procedure and triggers are')
  4711. GO
  4712. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 4, 'run.')
  4713. GO
  4714. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 5, '')
  4715. GO
  4716. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_recompile', 6, 'sp_recompile <tabname>')
  4717. GO
  4718. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_remoteoption', 1, 'sp_remoteoption System Stored Procedure')
  4719. GO
  4720. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_remoteoption', 2, 'Displays or changes remote login options.')
  4721. GO
  4722. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_remoteoption', 3, '')
  4723. GO
  4724. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_remoteoption', 4, 'sp_remoteoption [<remoteserver>, <loginame>, <remotename>,')
  4725. GO
  4726. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_remoteoption', 5, '     <optname>, {TRUE | FALSE}]')
  4727. GO
  4728. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 1, 'sp_rename System Stored Procedure')
  4729. GO
  4730. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 2, 'Changes the name of a user-created object in the current database.')
  4731. GO
  4732. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 3, '')
  4733. GO
  4734. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 4, 'sp_rename <objname>, <newname> [, COLUMN | INDEX ]')
  4735. GO
  4736. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_renamedb', 1, 'sp_renamedb System Stored Procedure')
  4737. GO
  4738. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_renamedb', 2, 'Changes the name of a database.')
  4739. GO
  4740. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_renamedb', 3, '')
  4741. GO
  4742. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_renamedb', 4, 'sp_renamedb <oldname>, <newname>')
  4743. GO
  4744. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_serveroption', 1, 'sp_serveroption System Stored Procedure')
  4745. GO
  4746. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_serveroption', 2, 'Sets server options.')
  4747. GO
  4748. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_serveroption', 3, '')
  4749. GO
  4750. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_serveroption', 4, 'sp_serveroption [<server_name>, <optname>, {TRUE | FALSE}]')
  4751. GO
  4752. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setlangalias', 1, 'sp_setlangalias System Stored Procedure')
  4753. GO
  4754. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setlangalias', 2, 'Assigns or changes the alias for an alternate language.')
  4755. GO
  4756. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setlangalias', 3, '')
  4757. GO
  4758. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setlangalias', 4, 'sp_setlangalias <language>, <alias>')
  4759. GO
  4760. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 1, 'sp_spaceused System Stored Procedure')
  4761. GO
  4762. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 2, 'Displays the number of rows, the disk space reserved, and the disk space')
  4763. GO
  4764. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 3, 'used by a table in a database, or displaces the disk space reserved and')
  4765. GO
  4766. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 4, 'used by an entire database.')
  4767. GO
  4768. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 5, '')
  4769. GO
  4770. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_spaceused', 6, 'sp_spaceused [<objname>] [[,] @updateusage = {TRUE | FALSE}]')
  4771. GO
  4772. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindefault', 1, 'sp_unbindefault System Stored Procedure')
  4773. GO
  4774. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindefault', 2, 'Unbinds (removes) a default from a column or from a user-defined')
  4775. GO
  4776. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindefault', 3, 'datatype in the current database.')
  4777. GO
  4778. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindefault', 4, '')
  4779. GO
  4780. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindefault', 5, 'sp_unbindefault <objname> [, FUTUREONLY]')
  4781. GO
  4782. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindrule', 1, 'sp_unbindrule System Stored Procedure')
  4783. GO
  4784. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindrule', 2, 'Unbinds a rule from a column or a user-defined datatype in the current')
  4785. GO
  4786. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindrule', 3, 'database.')
  4787. GO
  4788. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindrule', 4, '')
  4789. GO
  4790. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unbindrule', 5, 'sp_unbindrule <objname> [, FUTUREONLY]')
  4791. GO
  4792. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unmakestartup', 1, 'sp_unmakestartup System Stored Procedure')
  4793. GO
  4794. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unmakestartup', 2, 'Discontinues auto execution of the stored procedure.')
  4795. GO
  4796. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unmakestartup', 3, '')
  4797. GO
  4798. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_unmakestartup', 4, 'sp_unmakestartup <procedure_name>')
  4799. GO
  4800. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_who', 1, 'sp_who System Stored Procedure')
  4801. GO
  4802. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_who', 2, 'Provides information about current SQL Server users and processes. The informati')
  4803. GO
  4804. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_who', 3, 'can be filtered to return only those processes that are not idle.')
  4805. GO
  4806. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_who', 4, '')
  4807. GO
  4808. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_who', 5, 'sp_who [<login_name> | ''<spid>'' | <active>]')
  4809. GO
  4810. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 1, 'sp_dropwebtask Stored Procedure')
  4811. GO
  4812. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 2, 'Deletes a previously defined web task. The task to be deleted is')
  4813. GO
  4814. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 3, 'identified by the output filename, by the procedure name, or by both')
  4815. GO
  4816. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 4, 'paramters.')
  4817. GO
  4818. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 5, '')
  4819. GO
  4820. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 6, 'sp_dropwebtask {@<procname> = <procname> | @<outputfile> = <outputfile> |')
  4821. GO
  4822. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_dropwebtask', 7, '@<procname> = <procname>, @<outputfile> = <outputfile>}')
  4823. GO
  4824. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 1, 'sp_makewebtask System Stored Procedure')
  4825. GO
  4826. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 2, 'Creates a task that produces an HTML document. The HTML document contains')
  4827. GO
  4828. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 3, 'data returned by executed queries.')
  4829. GO
  4830. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 4, '')
  4831. GO
  4832. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 5, 'sp_makewebtask{@outputfile = ''<outputfile>'', @query = ''<query>''}')
  4833. GO
  4834. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 6, '[, @fixedfont = <fixedfont>][, @bold = <bold>][, @italic = <italic>]')
  4835. GO
  4836. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 7, '[, @colheaders = <colheaders>][,@lastupdated = <lastupdated>]')
  4837. GO
  4838. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 8, '  [,@HTMLheader = <HTMLheader>][, @username = <username>]')
  4839. GO
  4840. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 9, '[,@dbname = <dbname>][,@templatefile = ''<templatefile>'']')
  4841. GO
  4842. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 10, '[, @webpagetitle = ''<webpagetitle>''][, @resultstitle = ''<resultstitle>'']')
  4843. GO
  4844. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 11, '[,[@URL = ''<URL>'',@reftext = ''<reftext>''] | [@table_urls = <table_urls>')
  4845. GO
  4846. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 12, ',@url_query = ''<url_query>'']][,@whentype = <whentype>]')
  4847. GO
  4848. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 13, '[,@targetdate = <targetdate>][,@targettime = <targettime>]')
  4849. GO
  4850. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 14, '[,@dayflags = <dayflags>][, @numunits = <numunits>]')
  4851. GO
  4852. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 15, '[,@unittype = <unittype>][,@procname = <procname>]')
  4853. GO
  4854. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 16, '[,@maketask = <maketask>][,@rowcount = <rowcnt>]')
  4855. GO
  4856. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 17, ' [,@taborder = <taborder>][,@singlerow = <singlerow>]')
  4857. GO
  4858. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_makewebtask', 18, '[,@blobfmt = <blobfmt>]')
  4859. GO
  4860. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 1, 'sp_runwebtask System Stored Procedure')
  4861. GO
  4862. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 2, 'Executes a previously defined Web task and generates the HTML document.')
  4863. GO
  4864. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 3, 'The task to run is identified by the output filename, by the')
  4865. GO
  4866. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 4, 'procedure name, or by both parameters.')
  4867. GO
  4868. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 5, '')
  4869. GO
  4870. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 6, 'sp_runwebtask {@procname = <procname> | @outputfile = <outputfile> |')
  4871. GO
  4872. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_runwebtask', 7, ' @procname = <procname>, @outputfile = <outputfile>}')
  4873. GO
  4874. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 1, 'sp_rename System Stored Procedure')
  4875. GO
  4876. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 2, 'Changes the name of a user-created object in the current database.')
  4877. GO
  4878. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 3, '')
  4879. GO
  4880. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_rename', 4, 'sp_rename {<oldname>, <newname> [,COLUMN | INDEX | OBJECT | USERDATATYPE]}')
  4881. GO
  4882. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 1, 'sp_setnetname System Stored Procedure')
  4883. GO
  4884. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 2, 'Sets the network names in sysservers to their actual network')
  4885. GO
  4886. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 3, 'machine names for remote computers running SQL Server. Names')
  4887. GO
  4888. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 4, 'can include hyphens and other non-alphabetic characters. This')
  4889. GO
  4890. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 5, 'procedure can be used to enable execution of remote stored procedure')
  4891. GO
  4892. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 6, ' calls to machines that have network names containing invalid SQL')
  4893. GO
  4894. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 7, 'Server identifiers.')
  4895. GO
  4896. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 8, '')
  4897. GO
  4898. INSERT master..helpsql(command, ordering, helptext) VALUES ('sp_setnetname', 9, 'sp_setnetname @<server> [= ''<server>''], @<netname> [= ''<netname>'']')
  4899. GO
  4900. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 1, 'READTEXT Statement')
  4901. GO
  4902. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 2, 'Reads text and image values, starting from a specified offset and')
  4903. GO
  4904. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 3, 'reading a specified number of bytes.')
  4905. GO
  4906. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 4, '')
  4907. GO
  4908. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 5, 'READTEXT [[<database>.]<owner>.]<table_name>.<column_name>')
  4909. GO
  4910. INSERT master..helpsql(command, ordering, helptext) VALUES ('READTEXT', 6, '     <text_ptr> <offset> <size> [HOLDLOCK]')
  4911. GO
  4912. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 1, 'UPDATETEXT Statement')
  4913. GO
  4914. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 2, 'Updates an existing text or image field.')
  4915. GO
  4916. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 3, '')
  4917. GO
  4918. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 4, 'UPDATETEXT [[<database>.]<owner>.]<table_name>.<dest_column_name>')
  4919. GO
  4920. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 5, '     <dest_text_ptr> {NULL | <insert_offset>} {NULL | <delete_length>}')
  4921. GO
  4922. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 6, '     [WITH LOG]')
  4923. GO
  4924. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 7, '     [<inserted_data> |')
  4925. GO
  4926. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 8, '     [{[<database>.]<owner>.]<table_name>.<src_column_name>')
  4927. GO
  4928. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATETEXT', 9, '          <src_text_ptr>}]')
  4929. GO
  4930. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 1, 'WRITETEXT Statement')
  4931. GO
  4932. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 2, 'Permits nonlogged, interactive updating of an existing text or image')
  4933. GO
  4934. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 3, 'field. This statement completely overwrites any existing data in the')
  4935. GO
  4936. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 4, 'column it affects.')
  4937. GO
  4938. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 5, '')
  4939. GO
  4940. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 6, 'WRITETEXT [[<database>.]<owner>.]<table_name>.<column_name>')
  4941. GO
  4942. INSERT master..helpsql(command, ordering, helptext) VALUES ('WRITETEXT', 7, '     <text_ptr> [WITH LOG] <data>')
  4943. GO
  4944. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 1, 'Transactions')
  4945. GO
  4946. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 2, 'A transaction is a single unit of work. An explicit transaction is a')
  4947. GO
  4948. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 3, 'grouping of SQL statements surrounded by the transaction delimiters:')
  4949. GO
  4950. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 4, 'BEGIN TRANSACTION, COMMIT TRANSACTION, and optionally, one or more of')
  4951. GO
  4952. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 5, 'the following statements:')
  4953. GO
  4954. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 6, '')
  4955. GO
  4956. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 7, '     BEGIN TRANSACTION')
  4957. GO
  4958. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 8, '     COMMIT TRANSACTION')
  4959. GO
  4960. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 9, '     ROLLBACK TRANSACTION')
  4961. GO
  4962. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRANSACTIONS', 10, '     SAVE TRANSACTION')
  4963. GO
  4964. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN TRANSACTION', 1, 'BEGIN TRANSACTION Statement')
  4965. GO
  4966. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN TRANSACTION', 2, 'Marks the starting point of a user-specified transaction.')
  4967. GO
  4968. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN TRANSACTION', 3, '')
  4969. GO
  4970. INSERT master..helpsql(command, ordering, helptext) VALUES ('BEGIN TRANSACTION', 4, 'BEGIN TRANsaction [<transaction_name>]')
  4971. GO
  4972. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMIT TRANSACTION', 1, 'COMMIT TRANSACTION Statement')
  4973. GO
  4974. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMIT TRANSACTION', 2, 'Marks the end of a user-defined transaction.')
  4975. GO
  4976. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMIT TRANSACTION', 3, '')
  4977. GO
  4978. INSERT master..helpsql(command, ordering, helptext) VALUES ('COMMIT TRANSACTION', 4, 'COMMIT TRANsaction [<transaction_name>]')
  4979. GO
  4980. INSERT master..helpsql(command, ordering, helptext) VALUES ('ROLLBACK TRANSACTION', 1, 'ROLLBACK TRANSACTION Statement')
  4981. GO
  4982. INSERT master..helpsql(command, ordering, helptext) VALUES ('ROLLBACK TRANSACTION', 2, 'Rolls back a user-specified transaction to the last savepoint inside a')
  4983. GO
  4984. INSERT master..helpsql(command, ordering, helptext) VALUES ('ROLLBACK TRANSACTION', 3, 'transaction or to the beginning of a transaction.')
  4985. GO
  4986. INSERT master..helpsql(command, ordering, helptext) VALUES ('ROLLBACK TRANSACTION', 4, '')
  4987. GO
  4988. INSERT master..helpsql(command, ordering, helptext) VALUES ('ROLLBACK TRANSACTION', 5, 'ROLLBACK TRANsaction [<transaction_name> | <savepoint_name>]')
  4989. GO
  4990. INSERT master..helpsql(command, ordering, helptext) VALUES ('SAVE TRANSACTION', 1, 'SAVE TRANSACTION Statement')
  4991. GO
  4992. INSERT master..helpsql(command, ordering, helptext) VALUES ('SAVE TRANSACTION', 2, 'Sets a savepoint within a transaction.')
  4993. GO
  4994. INSERT master..helpsql(command, ordering, helptext) VALUES ('SAVE TRANSACTION', 3, '')
  4995. GO
  4996. INSERT master..helpsql(command, ordering, helptext) VALUES ('SAVE TRANSACTION', 4, 'SAVE TRANsaction <savepoint_name>')
  4997. GO
  4998. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 1, 'TRUNCATE TABLE Statement')
  4999. GO
  5000. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 2, 'Removes all rows from a table without logging the individual row')
  5001. GO
  5002. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 3, 'deletes. This allows TRUNCATE TABLE to be efficient and quick, but')
  5003. GO
  5004. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 4, 'unrecoverable.')
  5005. GO
  5006. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 5, '')
  5007. GO
  5008. INSERT master..helpsql(command, ordering, helptext) VALUES ('TRUNCATE TABLE', 6, 'TRUNCATE TABLE [[<database>.]<owner>.]<table_name>')
  5009. GO
  5010. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 1, 'UNION Operator')
  5011. GO
  5012. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 2, 'Combines the results of two or more queries into a single results set')
  5013. GO
  5014. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 3, 'consisting of all the rows belonging to any subset of the queries or to')
  5015. GO
  5016. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 4, 'all queries in the union.')
  5017. GO
  5018. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 5, '')
  5019. GO
  5020. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 6, 'SELECT <select_list>')
  5021. GO
  5022. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 7, '     [<INTO clause>]')
  5023. GO
  5024. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 8, '     [<FROM clause>]')
  5025. GO
  5026. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 9, '     [<WHERE clause>]')
  5027. GO
  5028. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 10, '     [<GROUP BY clause>]')
  5029. GO
  5030. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 11, '     [<HAVING clause>]')
  5031. GO
  5032. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 12, '[UNION [ALL]')
  5033. GO
  5034. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 13, 'SELECT <select_list>')
  5035. GO
  5036. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 14, '     [<FROM clause>]')
  5037. GO
  5038. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 15, '     [<WHERE clause>]')
  5039. GO
  5040. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 16, '     [<GROUP BY clause>]')
  5041. GO
  5042. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 17, '     [<HAVING clause>]...]')
  5043. GO
  5044. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 18, '[<ORDER BY clause>]')
  5045. GO
  5046. INSERT master..helpsql(command, ordering, helptext) VALUES ('UNION', 19, '[<COMPUTE clause>]')
  5047. GO
  5048. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 1, 'UPDATE Statement')
  5049. GO
  5050. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 2, 'Changes data in existing rows, either by adding new data or by modifying')
  5051. GO
  5052. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 3, 'existing data.')
  5053. GO
  5054. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 4, '')
  5055. GO
  5056. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 5, 'UPDATE {<table_name> | <view_name>}')
  5057. GO
  5058. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 6, 'SET [{<table_name> | <view_name>}]')
  5059. GO
  5060. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 7, '     {<column_name> | <column_list> |')
  5061. GO
  5062. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 8, '     <variable_list> |')
  5063. GO
  5064. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 9, '     <variable_and_column_list>}')
  5065. GO
  5066. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 10, '          [[, {<column_listn>')
  5067. GO
  5068. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 11, '               | <variable_listn>')
  5069. GO
  5070. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 12, '               | <variable_and_column_listn>}...]')
  5071. GO
  5072. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 13, '[WHERE clause]')
  5073. GO
  5074. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 14, '')
  5075. GO
  5076. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 15, 'Transact-SQL extension syntax:')
  5077. GO
  5078. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 16, 'UPDATE {<table_name> | <view_name>}')
  5079. GO
  5080. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 17, 'SET [{<table_name> | <view_name>}]')
  5081. GO
  5082. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 18, '     {<column_list>')
  5083. GO
  5084. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 19, '     | <variable_list>')
  5085. GO
  5086. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 20, '     | <variable_and_column_list>}')
  5087. GO
  5088. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 21, '          [, {<column_list2>')
  5089. GO
  5090. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 22, '               | <variable_list2>')
  5091. GO
  5092. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 23, '               | <variable_and_column_list2>}')
  5093. GO
  5094. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 24, '               ...     [, {<column_listN>')
  5095. GO
  5096. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 25, '                         | <variable_listN>')
  5097. GO
  5098. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 26, '                         | <variable_and_column_listN>}]]')
  5099. GO
  5100. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 27, '[FROM {<table_name> | <view_name>}[(<optimizer_hints>)]')
  5101. GO
  5102. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 28, '     [, {<table_name2> | <view_name2>}[(<optimizer_hints>)]')
  5103. GO
  5104. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 29, '          [..., {<table_name16> | <view_name16>}[(<optimizer_hints>)]]]]')
  5105. GO
  5106. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 30, '[<WHERE clause>]')
  5107. GO
  5108. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 31, '')
  5109. GO
  5110. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 32, 'where')
  5111. GO
  5112. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 33, '')
  5113. GO
  5114. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 34, '<table_name> | <view_name> =')
  5115. GO
  5116. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 35, '     [[<database_name>.]<owner>.]{<table_name> | <view_name>}')
  5117. GO
  5118. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 36, '')
  5119. GO
  5120. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 37, '<column_list> =')
  5121. GO
  5122. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 38, '     <column_name> = {<expression> | DEFAULT | NULL}')
  5123. GO
  5124. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 39, '')
  5125. GO
  5126. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 40, '<variable_list> =')
  5127. GO
  5128. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 41, '     <variable_name> = {<expression> | NULL}')
  5129. GO
  5130. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 42, '')
  5131. GO
  5132. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 43, '<variable_and_column_list> =')
  5133. GO
  5134. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 44, '     <variable_name> = <column_name> = {<expression> | NULL}')
  5135. GO
  5136. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 45, '')
  5137. GO
  5138. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 46, 'WHERE clause =')
  5139. GO
  5140. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE', 47, '     WHERE {<search_conditions> | CURRENT OF <cursor_name>}')
  5141. GO
  5142. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE STATISTICS', 1, 'UPDATE STATISTICS Statement')
  5143. GO
  5144. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE STATISTICS', 2, 'Updates information about the distribution of key values in specified')
  5145. GO
  5146. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE STATISTICS', 3, 'indexes.')
  5147. GO
  5148. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE STATISTICS', 4, '')
  5149. GO
  5150. INSERT master..helpsql(command, ordering, helptext) VALUES ('UPDATE STATISTICS', 5, 'UPDATE STATISTICS [[<database>.]<owner>.]<table_name> [<index_name>]')
  5151. GO
  5152. INSERT master..helpsql(command, ordering, helptext) VALUES ('USE', 1, 'USE Statement')
  5153. GO
  5154. INSERT master..helpsql(command, ordering, helptext) VALUES ('USE', 2, 'Changes the database context.')
  5155. GO
  5156. INSERT master..helpsql(command, ordering, helptext) VALUES ('USE', 3, '')
  5157. GO
  5158. INSERT master..helpsql(command, ordering, helptext) VALUES ('USE', 4, 'USE <database_name>')
  5159. GO
  5160. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 1, 'Variables')
  5161. GO
  5162. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 2, 'Local variables are declared in the body of a batch or procedure with')
  5163. GO
  5164. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 3, 'the DECLARE statement and given values with a SELECT statement. Local')
  5165. GO
  5166. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 4, 'variables are often used in a batch or procedure as counters for WHILE')
  5167. GO
  5168. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 5, 'loops or for IF...ELSE blocks.')
  5169. GO
  5170. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 6, '')
  5171. GO
  5172. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 7, 'Variable declaration:')
  5173. GO
  5174. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 8, '     DECLARE @<variable_name> <datatype>')
  5175. GO
  5176. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 9, '          [, @<variable_name> <datatype>...]')
  5177. GO
  5178. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 10, 'Variable assignment:')
  5179. GO
  5180. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 11, '     SELECT @<variable> = {<expression> | <select_statement>}')
  5181. GO
  5182. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 12, '          [, @<variable> = {<expression> | <select_statement>}...]')
  5183. GO
  5184. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 13, '     [FROM <table_list>]')
  5185. GO
  5186. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 14, '     [WHERE <search_conditions>]')
  5187. GO
  5188. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 15, '     [GROUP BY clause]')
  5189. GO
  5190. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 16, '     [HAVING clause]')
  5191. GO
  5192. INSERT master..helpsql(command, ordering, helptext) VALUES ('VARIABLES', 17, '     [ORDER BY clause]')
  5193. GO
  5194. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 1, 'Wildcard Characters')
  5195. GO
  5196. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 2, 'Wildcard characters are used with the LIKE keyword to represent any')
  5197. GO
  5198. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 3, 'character in a string when searching for a char, varchar, or datetime')
  5199. GO
  5200. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 4, 'value.')
  5201. GO
  5202. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 5, '')
  5203. GO
  5204. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 6, '<expression> [NOT] LIKE ''<string>''')
  5205. GO
  5206. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 7, '')
  5207. GO
  5208. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 8, 'The string can include these wildcard characters:')
  5209. GO
  5210. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 9, '%                Any string of zero or more characters')
  5211. GO
  5212. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 10, '_ (underscore)   Any single character')
  5213. GO
  5214. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 11, '[ ]              Any single character within the specified range')
  5215. GO
  5216. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 12, '                  ([a-f]) or set ([abcdef])')
  5217. GO
  5218. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 13, '[^]              Any single character not within the specified range')
  5219. GO
  5220. INSERT master..helpsql(command, ordering, helptext) VALUES ('WILDCARDS', 14, '                  ([^a-f]) or set ([^abcdef])')
  5221. GO
  5222.