摘要: dbms_output.put_line('Hello world!') 阅读全文
posted @ 2016-02-24 17:57 微点安全 阅读(367) 评论(0) 推荐(0) 编辑
摘要: --查询所有存储过程select * from sys.objects where type = 'P'; --修改存储过程alter proc proc_get_studentasselect * from student; --调用、执行存储过程exec proc_get_student; -- 阅读全文
posted @ 2016-02-24 17:41 微点安全 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 常用系统存储过程有: exec sp_databases; --查看数据库 exec sp_tables; --查看表 exec sp_columns student;--查看列 exec sp_helpIndex student;--查看索引 exec sp_helpConstraint stud 阅读全文
posted @ 2016-02-24 17:34 微点安全 阅读(160) 评论(0) 推荐(0) 编辑