
sqlserver
xiangxueping80
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLServer多结果集
1.存储过程: -- ================================================ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: -- Create date: -- Descript原创 2014-12-26 16:41:07 · 817 阅读 · 0 评论 -
偏移量为 0x0000000009c000 的位置执行 读取 期间,操作系统已经向 SQL Server 返回了错误 21
严重: Servlet.service() for servlet [dispatcher] in context with path [/obd2] threw exception [Request processing failed; nested exception is org.springframework.jdbc.UncategorizedSQLException: Callable原创 2015-02-10 09:28:48 · 21825 阅读 · 3 评论 -
sqlserver 系统表的使用
sqlserver ================================= 获取所有用户表 select * from sysobjects where xtype = 'u' 查看当前数据库中所有存储过程 select name from sysobjects where xtype='p'原创 2015-03-24 15:04:34 · 577 阅读 · 0 评论