当前位置:首页 > 数据库 > Sqlserver

SqlServer创建存储过程

transact-sql中的存储过程,非常类似于java语言中的方法,它可以重复调用。当存储过程执行一次后,可以将语句缓存中,这样下次执行的时候直接使用缓存中的语句。这样就可以提高存储过程的性能。 存储过程的概念 存储过程procedure是一组为了完成特定功能的sq

  transact-sql中的存储过程,非常类似于java语言中的方法,它可以重复调用。当存储过程执行一次后,可以将语句缓存中,这样下次执行的时候直接使用缓存中的语句。这样就可以提高存储过程的性能。

  ø 存储过程的概念

  存储过程procedure是一组为了完成特定功能的sql语句集合,经编译后存储在数据库中,用户通过指定存储过程的名称并给出参数来执行。

  存储过程中可以包含逻辑控制语句和数据操纵语句,它可以接受参数、输出参数、返回单个或多个结果集以及返回值。

  由于存储过程在创建时即在数据库服务器上进行了编译并存储在数据库中,所以存储过程运行要比单个的sql语句块要快。同时由于在调用时只需用提供存储过程名和必要的参数信息,所以在一定程度上也可以减少网络流量、简单网络负担。

  1、 存储过程的优点

  a、 存储过程允许标准组件式编程

  存储过程创建后可以在程序中被多次调用执行,而不必重新编写该存储过程的sql语句。而且数据库专业人员可以随时对存储过程进行修改,但对应用程序源代码却毫无影响,从而极大的提高了程序的可移植性。

  b、 存储过程能够实现较快的执行速度

  如果某一操作包含大量的t-sql语句代码,分别被多次执行,那么存储过程要比批处理的执行速度快得多。因为存储过程是预编译的,在首次运行一个存储过程时,查询优化器对其进行分析、优化,并给出最终被存在系统表中的存储计划。而批处理的t-sql语句每次运行都需要预编译和优化,所以速度就要慢一些。

  c、 存储过程减轻网络流量

  对于同一个针对数据库对象的操作,如果这一操作所涉及到的t-sql语句被组织成一存储过程,那么当在客户机上调用该存储过程时,网络中传递的只是该调用语句,否则将会是多条sql语句。从而减轻了网络流量,降低了网络负载。

  d、 存储过程可被作为一种安全机制来充分利用

  系统管理员可以对执行的某一个存储过程进行权限限制,从而能够实现对某些数据访问的限制,避免非授权用户对数据的访问,保证数据的安全。

  ø 系统存储过程

  系统存储过程是系统创建的存储过程,目的在于能够方便的从系统表中查询信息或完成与更新数据库表相关的管理任务或其他的系统管理任务。系统存储过程主要存储在master数据库中,以“sp”下划线开头的存储过程。尽管这些系统存储过程在master数据库中,但我们在其他数据库还是可以调用系统存储过程。有一些系统存储过程会在创建新的数据库的时候被自动创建在当前数据库中。

  常用系统存储过程有:

  exec sp_databases; --查看数据库exec sp_tables; --查看表exec sp_columns student;--查看列exec sp_helpindex student;--查看索引exec sp_helpconstraint student;--约束exec sp_stored_procedures;exec sp_helptext 'sp_stored_procedures';--查看存储过程创建、定义语句exec sp_rename student, stuinfo;--修改表、索引、列的名称exec sp_renamedb mytempdb, mydb;--更改数据库名称exec sp_defaultdb 'master', 'mydb';--更改登录名的默认数据库exec sp_helpdb;--数据库帮助,查询数据库信息exec sp_helpdb master;

  系统存储过程示例:

  --表重命名exec sp_rename 'stu', 'stud';select * from stud;--列重命名exec sp_rename 'stud.name', 'sname', 'column';exec sp_help 'stud';--重命名索引exec sp_rename n'student.idx_cid', n'idx_cidd', n'index';exec sp_help 'student';--查询所有存储过程select * from sys.objects where type = 'p';select * from sys.objects where type_desc like '%pro%' and name like 'sp%';

  ø 用户自定义存储过程

  1、 创建语法

  create proc | procedure pro_name [{@参数数据类型} [=默认值] [output], {@参数数据类型} [=默认值] [output], .... ]as sql_statements

  2、 创建不带参数存储过程

  --创建存储过程if (exists (select * from sys.objects where name = 'proc_get_student')) drop proc proc_get_studentgocreate proc proc_get_studentas select * from student;--调用、执行存储过程exec proc_get_student;

  3、 修改存储过程

  --修改存储过程alter proc proc_get_studentasselect * from student;

  4、 带参存储过程

  --带参存储过程if (object_id('proc_find_stu', 'p') is not null) drop proc proc_find_stugocreate proc proc_find_stu(@startid int, @endid int)as select * from student where id between @startid and @endidgoexec proc_find_stu 2, 4;

  5、 带通配符参数存储过程

  --带通配符参数存储过程if (object_id('proc_findstudentbyname', 'p') is not null) drop proc proc_findstudentbynamegocreate proc proc_findstudentbyname(@name varchar(20) = '%j%', @nextname varchar(20) = '%')as select * from student where name like @name and name like @nextname;goexec proc_findstudentbyname;exec proc_findstudentbyname '%o%', 't%';

  6、 带输出参数存储过程

  if (object_id('proc_getstudentrecord', 'p') is not null) drop proc proc_getstudentrecordgocreate proc proc_getstudentrecord( @id int, --默认输入参数 @name varchar(20) out, --输出参数 @age varchar(20) output--输入输出参数)as select @name = name, @age = age from student where id = @id and sex = @age;go-- declare @id int, @name varchar(20), @temp varchar(20);set @id = 7; set @temp = 1;exec proc_getstudentrecord @id, @name out, @temp output;select @name, @temp;print @name + '#' + @temp;

  7、 不缓存存储过程

  --with recompile 不缓存if (object_id('proc_temp', 'p') is not null) drop proc proc_tempgocreate proc proc_tempwith recompileas select * from student;goexec proc_temp;

  8、 加密存储过程

  --加密with encryption if (object_id('proc_temp_encryption', 'p') is not null) drop proc proc_temp_encryptiongocreate proc proc_temp_encryptionwith encryptionas select * from student;goexec proc_temp_encryption;exec sp_helptext 'proc_temp';exec sp_helptext 'proc_temp_encryption';

  9、 带游标参数存储过程


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!

相关教程推荐

其他课程推荐