SQLServer存储过程创建和修改的实现代码
打开SQL Server 2005的管理工具,选中需要创建存储过程的数据库,找到“可编程性”,展开后可以看到“存储过程”。右键点击它,选择“新建存储过程”,右侧的编辑窗口打开了,里面装着微软自动生成的SQL Server创建存储过程的语句。将存储过程的名字,参数,操作语句写好后,点击语法分析,没有错误就直接“F5”运行就好了,存储过程创建完毕,以下是一个基本的存储过程的代码: CREATE...
View ArticleSQL查询方法精华集
一、 简单查询 简单的Transact-SQL查询只包括选择列表、FROM子句和WHERE子句。它们分别说明所查询列、查询的表或视图、以及搜索条件等。 例如,下面的语句查询testtable表中姓名为“张三”的nickname字段和email字段。 SELECT nickname,email FROM testtable WHERE name='张三' (一) 选择列表...
View ArticleSql Server临时表和游标的使用小结
1.临时表 临时表与永久表相似,但临时表存储在 tempdb 中,当不再使用时会自动删除。 临时表有局部和全局两种类型2者比较: 局部临时表的名称以符号 (#) 打头 仅对当前的用户连接是可见的 当用户实例断开连接时被自动删除 全局临时表的名称以符号 (##) 打头 任何用户都是可见的 当所有引用该表的用户断开连接时被自动删除 实际上局部临时表在tempdb中是有唯一名称的...
View ArticleSQLServer2008新实例远程数据库链接问题(sp_addlinkedserver)
先说说问题起因:测试同学在自己电脑上测试不同的后台,但数据库使用的是相同的名称。于是创建了新的SQL Server实例,而新实例需要指定不同端口才能启动,改端口后执行sp_addlinkedserver语句后,连接测试不成功。执行的SQL语句如下:EXEC master.dbo.sp_addlinkedserver @server = N'UserDBLink',...
View ArticleSql Server 存储过程调用存储过程接收输出参数返回值
创建存储过程:ALTER PROCEDURE [dbo].[GetCustomers] (@rowcount INT OUTPUT) AS SELECT [CustomerID] ,[CompanyName] ,[ContactName] ,[ContactTitle] ,[Address] ,[City] ,[Region] ,[PostalCode] ,[Country] ,[Phone]...
View Article详解SQL Server如何修改数据库物理文件的存在位置
前言大家应该都知道SQL Server创建新库时,默认会把数据存放在C盘中,一旦数据库中的存储数据多了以后,C盘的空间就会所剩无几。解决方案是将存放数据的物理文件迁移到其他盘。具体流程为:1、将现有的数据库脱机ALTER DATABASE DB1 SET OFFLINE WITH ROLLBACK...
View ArticleSQL Server并发处理存在就更新解决方案探讨
前言本节我们来讲讲并发中最常见的情况存在即更新,在并发中若未存在行记录则插入,此时未处理好极容易出现插入重复键情况,本文我们来介绍对并发中存在就更新行记录的七种方案并且我们来综合分析最合适的解决方案。探讨存在就更新七种方案首先我们来创建测试表IF OBJECT_ID('Test') IS NOT NULL DROP TABLE TestCREATE TABLE Test( Id int, Name...
View ArticleSqlserver事务备份和还原的实例代码(必看)
废话不多说,直接上代码create database mydbuse mydbgocreate table account( id varchar(16), name varchar(16), balance float)goselect * from accountinsert into account(id, name, balance) values('620101', 'liyong',...
View Article详解删除SQL Server 2005 Compact Edition数据库
详解删除SQL Server 2005 Compact Edition数据库本主题将介绍如何删除 Microsoft SQL Server 2005 Compact Edition (SQL Server Compact Edition) 数据库。由于 SQL Server Compact Edition 数据库是文件系统中的文件,因此需要通过删除文件来删除 SQL Server Compact...
View ArticleMySQL 数据库 source 命令详解及实例
mysql 数据库 source 命令详解及实例MySQL 数据库 source 命令,该命令是数据库导入命令。source 命令的用法非常简单,首先你需要进入 MySQL 数据库的命令行管理界面,然后选择需要导入的数据库,执行 source 命令。如下图所示。MySql 数据库 source 命令mysql> use test Database changed mysql> set...
View ArticleSQL Server 磁盘请求超时的833错误原因及解决方法
最近遇到一个SQL Server服务器响应极度缓慢,并且出现客户端请求报错的情况,在数据库中的errorlog中出现磁盘请求超过15s才完成的error消息。对于此类问题,到底是存储系统或者磁盘的故障,还是SQL Server 自己的问题,亦或是应用程序引发的呢?又要如何解决?本文将对引起此问题的某一方面的因素进行简单的分析,但是无法涵盖所有潜在的可能性,因此遇到类似问题还要做具体的分析。SQL...
View ArticleSql Server 2008安b图文教程
Sql Server 2008 MSDN下d地址:http://www.msdn.hk/7/176/ 下d完成后的iso文件目Y如下,c舭惭b程序:c舭惭b全新的sql server:必zy,下一步:@Y自犹畛洚a品密:一直往下,x窆δ芤踩部x瘢下一步:x衲J例:xwindows的~裘和你本C的登密a:使用把windows~艉兔艽a添加到sql server...
View ArticleT-SQL Tuesday #89 : Roll with the Changes
So if you're tired of the same old story Oh, turn some pages I will be here when you are ready To roll with the changes No, this post isn't about REO Speedwagon . Koen Verbeeck ( @Ko_Ver |blog ) is...
View ArticleT-SQL Tuesday #89 There is No Cloud
T-SQL Tuesday is a monthly blog gatheringfor the SQL Server/Data Professional community It is the brainchild of Adam Machanic ( B | T ) and is not limited to just things around the SQL Server database...
View ArticleT-SQL Tuesday #89 Changing Times
This month the invitation is from Koen Verbeeck and it has to do with the cloud changes coming to the data world, especially SQL Server. That’s an interesting topic, not necessarily technical, but it...
View ArticleConfigure SQL Server And Connect DB Engine From Another PC
This article is a continuation of my previous article and I have provided alink for that article. From this article, let’s see how to configure SQL Server for mixed mode for authority...
View Article#SQLServer: How much of that free memory came from checkdb completing and...
Arun Sirpal (@blobeater1 on Twitter) asked a great question today (11 April 2017) about the impact of memory grant release on free memory after checkdb completes. I love questions! It means someone was...
View ArticleAvoiding Cloud Lock In T-SQL Tuesday
T-SQL Tuesday is a monthly event where SQL Server bloggers write a post based on a subject chosen by the month’s host. You can find a list of all past topics at tsqltuesday.com . This month’s host is...
View ArticleT-SQL Tuesday: Finding issues with your query plan
This is my first time blogging with a T-SQL Tuesday topic. If you follow my blog you’ve probably noticed that one of the topics I enjoy the most is performance and query tuning. While at Microsoft, I...
View ArticleOracle IOTs against SQL Server Clustered Indexes
I’m itching to dig more into the SQL Server 2016 optimizer enhancements, but I’m going to complete my comparison of indices between the two platforms before I get myself into further trouble with my...
View Article