博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
存储过程简单实例
阅读量:5746 次
发布时间:2019-06-18

本文共 1418 字,大约阅读时间需要 4 分钟。

USE [ty_szum_oa_v2]GO/****** Object:  StoredProcedure [dbo].[ty_oa_insert_ty_oa_document_publish]    Script Date: 2018/3/9 9:34:26 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER PROCEDURE [dbo].[ty_oa_insert_ty_oa_document_publish]  (  @id uniqueidentifier, @workflow_instance_id int,  @open_type int,  @file_titile nvarchar(512), @file_content nvarchar(max), @draft_user_name nvarchar(32), @draft_dept_id int, @created_user_name nvarchar(32), @file_publish_date datetime, @file_state int, @remark nvarchar(max), @fid bigint, @db_created_id int, @db_created_date datetime, @db_last_updated_id int, @db_last_updated_date datetime, @db_status int) --WITH ENCRYPTION  AS  BEGIN   SET NOCOUNT ON  INSERT INTO ty_oa_document_publish (   [id]    ,[workflow_instance_id]   ,[open_type]    ,[file_titile]    ,[file_content]    ,[draft_user_name]   ,[draft_dept_id]  ,[created_user_name]    ,[file_publish_date]  ,[file_state]   ,[remark]    ,[db_created_id]    ,[db_created_date]  ,[db_last_updated_id]   ,[db_last_updated_date]    ,[db_status]  )   VALUES   (    @id    ,@workflow_instance_id  ,@open_type    ,@file_titile   ,@file_content    ,@draft_user_name    ,@draft_dept_id   ,@created_user_name   ,@file_publish_date    ,@file_state    ,@remark    ,@db_created_id    ,@db_created_date    ,@db_last_updated_id    ,@db_last_updated_date    ,@db_status   );  END

 

转载于:https://www.cnblogs.com/xiaz/p/8532195.html

你可能感兴趣的文章
wdOS系统下源码编译安装LAMP环境(linux+apache+php+mysql)
查看>>
iOS 绕过相册权限漏洞
查看>>
我的友情链接
查看>>
XP 安装ORACLE
查看>>
八、 vSphere 6.7 U1(八):分布式交换机配置(vMotion迁移网段)
查看>>
[转载] 中华典故故事(孙刚)——19 万岁
查看>>
修改hosts文件里面的主机名,oralce asm无法启动
查看>>
mac下使用Intellij、adt-studio、Appcode,推荐使用Apple Jdk6
查看>>
Maven学习总结(十)——使用Maven编译项目gbk的不可映射问题
查看>>
Spring学习总结(2)——Spring的常用注解
查看>>
php5编译安装常见错误和解决办法集锦
查看>>
Linux远程访问及控制
查看>>
Oracle中如何删除某个用户下的所有数据呢
查看>>
MongoDB实战系列之五:mongodb的分片配置
查看>>
Unable to determine local host from URL REPOSITORY_URL=http://
查看>>
Java Tomcat SSL 服务端/客户端双向认证(二)
查看>>
java基础(1)
查看>>
ORACLE配置,修改tnsnames.ora文件实例
查看>>
用户无法在输入框中键入数字
查看>>
Workstation服务无法启动导致无法访问文件服务器
查看>>